Home
last modified time | relevance | path

Searched refs:isContainer (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/test/Index/skip-parsed-bodies/
H A Dcompile_commands.json23 …]: kind: c++-instance-method | name: method_decl | {{.*}} | isRedecl: 0 | isDef: 0 | isContainer: 0
24 …]: kind: c++-instance-method | name: method_def1 | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: 1
31 … [indexDeclaration]: kind: function | name: foo1 | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: 1
42 …: [indexDeclaration]: kind: c++-instance-method | name: method_def2 | {{.*}} | isContainer: skipped
45 …xDeclaration]: kind: function | name: foo1 | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: skipped
47 … [indexDeclaration]: kind: function | name: foo2 | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: 1
49 …ation]: kind: c++-instance-method | name: tsmeth | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: 1
51 …ndexDeclaration]: kind: function | name: imp_foo | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: 1
65 …xDeclaration]: kind: function | name: foo1 | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: skipped
67 …xDeclaration]: kind: function | name: foo2 | {{.*}} | isRedecl: 0 | isDef: 1 | isContainer: skipped
[all …]
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXIndexDataConsumer.h86 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer) in DeclInfo()
90 this->isContainer = isContainer; in DeclInfo()
97 bool isRedeclaration, bool isDefinition, bool isContainer) in DeclInfo()
101 this->isContainer = isContainer; in DeclInfo()
H A DCXIndexDataConsumer.cpp598 if (DInfo.isContainer) { in handleDecl()
616 bool isContainer = isDef; in handleFunction() local
621 isContainer = false; in handleFunction()
624 DeclInfo DInfo(!D->isFirstDecl(), isDef, isContainer); in handleFunction()
812 bool isContainer = isDef; in handleObjCMethod() local
817 isContainer = false; in handleObjCMethod()
820 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer); in handleObjCMethod()
/llvm-project-15.0.7/clang/include/clang-c/
H A DIndex.h6436 int isContainer; member
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dc-index-test.c3744 assert(!info->isContainer); in index_indexDeclaration()
3747 printf(" | isContainer: %d", info->isContainer); in index_indexDeclaration()