com.intellij.psi.stubs.StubIndexKey Java Examples

The following examples show how to use com.intellij.psi.stubs.StubIndexKey. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DelegateMethodIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, CSharpMethodDeclaration> getKey()
{
	return CSharpIndexKeys.DELEGATE_METHOD_BY_NAME_INDEX;
}
 
Example #2
Source File: BashVarDefIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashVarDef> getKey() {
    return KEY;
}
 
Example #3
Source File: BashIncludedFilenamesIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashIncludeCommand> getKey() {
    return KEY;
}
 
Example #4
Source File: BashScriptNameIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashFile> getKey() {
    return KEY;
}
 
Example #5
Source File: BashVarIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashVar> getKey() {
    return KEY;
}
 
Example #6
Source File: BashIncludeCommandIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashIncludeCommand> getKey() {
    return KEY;
}
 
Example #7
Source File: BashFunctionNameIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashFunctionDef> getKey() {
    return KEY;
}
 
Example #8
Source File: BashCommandNameIndex.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, BashCommand> getKey() {
    return KEY;
}
 
Example #9
Source File: ShaderDefIndex.java    From consulo-unity3d with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, ShaderDef> getKey()
{
	return KEY;
}
 
Example #10
Source File: UnityScriptFileByNameIndex.java    From consulo-unity3d with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, JSFile> getKey()
{
	return UnityScriptIndexKeys.FILE_BY_NAME_INDEX;
}
 
Example #11
Source File: HaskellAllNameIndex.java    From intellij-haskforce with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, HaskellNamedElement> getKey() {
    return KEY;
}
 
Example #12
Source File: CSharpPsiSearcher.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetQualifiedElement> getElementByQNameIndexKey()
{
	return CSharpIndexKeys.MEMBER_BY_NAMESPACE_QNAME_INDEX;
}
 
Example #13
Source File: CSharpPsiSearcher.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetQualifiedElement> getNamespaceIndexKey()
{
	return CSharpIndexKeys.MEMBER_BY_ALL_NAMESPACE_QNAME_INDEX;
}
 
Example #14
Source File: DataTypeFullNameIndex.java    From protobuf-jetbrains-plugin with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, DataType> getKey() {
    return KEY;
}
 
Example #15
Source File: ExtensionMethodIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetLikeMethodDeclaration> getKey()
{
	return CSharpIndexKeys.EXTENSION_METHOD_BY_NAME_INDEX;
}
 
Example #16
Source File: TypeWithExtensionMethodsIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetTypeDeclaration> getKey()
{
	return CSharpIndexKeys.TYPE_WITH_EXTENSION_METHODS_INDEX;
}
 
Example #17
Source File: TypeIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, CSharpTypeDeclaration> getKey()
{
	return CSharpIndexKeys.TYPE_INDEX;
}
 
Example #18
Source File: MethodIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetLikeMethodDeclaration> getKey()
{
	return CSharpIndexKeys.METHOD_INDEX;
}
 
Example #19
Source File: AttributeListIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<DotNetAttributeTargetType, CSharpAttributeList> getKey()
{
	return CSharpIndexKeys.ATTRIBUTE_LIST_INDEX;
}
 
Example #20
Source File: EventIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetEventDeclaration> getKey()
{
	return CSharpIndexKeys.EVENT_INDEX;
}
 
Example #21
Source File: ExtendsListIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetTypeList> getKey()
{
	return CSharpIndexKeys.EXTENDS_LIST_INDEX;
}
 
Example #22
Source File: MemberByAllNamespaceQNameIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetQualifiedElement> getKey()
{
	return CSharpIndexKeys.MEMBER_BY_ALL_NAMESPACE_QNAME_INDEX;
}
 
Example #23
Source File: PropertyIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetPropertyDeclaration> getKey()
{
	return CSharpIndexKeys.PROPERTY_INDEX;
}
 
Example #24
Source File: MemberByNamespaceQNameIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetQualifiedElement> getKey()
{
	return CSharpIndexKeys.MEMBER_BY_NAMESPACE_QNAME_INDEX;
}
 
Example #25
Source File: TypeByVmQNameIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<Integer, DotNetTypeDeclaration> getKey()
{
	return CSharpIndexKeys.TYPE_BY_VMQNAME_INDEX;
}
 
Example #26
Source File: FieldIndex.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public StubIndexKey<String, DotNetFieldDeclaration> getKey()
{
	return CSharpIndexKeys.FIELD_INDEX;
}
 
Example #27
Source File: VariantIndex.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, PsiVariantDeclaration> getKey() {
    return IndexKeys.VARIANTS;
}
 
Example #28
Source File: ValIndex.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, PsiVal> getKey() {
    return IndexKeys.VALS;
}
 
Example #29
Source File: LetIndex.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, PsiLet> getKey() {
    return IndexKeys.LETS;
}
 
Example #30
Source File: ExternalIndex.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public StubIndexKey<String, PsiExternal> getKey() {
    return IndexKeys.EXTERNALS;
}