HomeSort by relevance Sort by last modified time
    Searched refs:CursorKind (Results 1 - 15 of 15) sorted by null

  /external/clang/bindings/python/tests/cindex/
test_cursor_kind.py 1 from clang.cindex import CursorKind
4 assert CursorKind.UNEXPOSED_DECL.name is 'UNEXPOSED_DECL'
7 kinds = CursorKind.get_all_kinds()
8 assert CursorKind.UNEXPOSED_DECL in kinds
9 assert CursorKind.TRANSLATION_UNIT in kinds
10 assert CursorKind.VARIABLE_REF in kinds
11 assert CursorKind.LAMBDA_EXPR in kinds
12 assert CursorKind.OBJ_BOOL_LITERAL_EXPR in kinds
13 assert CursorKind.OBJ_SELF_EXPR in kinds
14 assert CursorKind.MS_ASM_STMT in kind
    [all...]
test_cursor.py 4 from clang.cindex import CursorKind
43 assert tu_nodes[0].kind == CursorKind.STRUCT_DECL
54 assert s0_nodes[0].kind == CursorKind.FIELD_DECL
57 assert s0_nodes[1].kind == CursorKind.FIELD_DECL
61 assert tu_nodes[1].kind == CursorKind.STRUCT_DECL
66 assert tu_nodes[2].kind == CursorKind.FUNCTION_DECL
123 assert xs[0].kind == CursorKind.CLASS_DECL
125 assert cs[0].kind == CursorKind.CONSTRUCTOR
126 assert cs[1].kind == CursorKind.CONSTRUCTOR
127 assert cs[2].kind == CursorKind.CONSTRUCTO
    [all...]
test_tokens.py 1 from clang.cindex import CursorKind
22 assert cursor.kind == CursorKind.VAR_DECL
test_type.py 3 from clang.cindex import CursorKind
33 assert all(x.kind == CursorKind.FIELD_DECL for x in fields)
385 assert children[0].kind == CursorKind.STRUCT_DECL
388 assert fields[0].kind == CursorKind.FIELD_DECL
389 assert fields[1].kind == CursorKind.FIELD_DECL
test_translation_unit.py 5 from clang.cindex import CursorKind
29 assert c.kind is CursorKind.TRANSLATION_UNIT
  /external/clang/bindings/python/clang/
cindex.py 562 class CursorKind(BaseEnumeration):
564 A CursorKind describes the kind of entity that a cursor points to.
573 """Return all CursorKind enumeration instances."""
574 return filter(None, CursorKind._kinds)
613 return 'CursorKind.%s' % (self.name,)
624 CursorKind.UNEXPOSED_DECL = CursorKind(1)
627 CursorKind.STRUCT_DECL = CursorKind(2)
630 CursorKind.UNION_DECL = CursorKind(3
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 662 CXCursorKind CursorKind;
708 StartParameter(0), Kind(RK_Keyword), CursorKind(CXCursor_NotImplemented),
718 Kind(RK_Macro), CursorKind(CXCursor_MacroDefinition),
727 CXCursorKind CursorKind = CXCursor_NotImplemented,
731 Kind(RK_Pattern), CursorKind(CursorKind), Availability(Availability),
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 563 CursorKind = getCursorKindForDecl(Declaration);
564 if (CursorKind == CXCursor_UnexposedDecl) {
569 CursorKind = CXCursor_ObjCInterfaceDecl;
571 CursorKind = CXCursor_ObjCProtocolDecl;
573 CursorKind = CXCursor_NotImplemented;
SemaCodeComplete.cpp 824 R.CursorKind = getCursorKindForDecl(R.Declaration);
    [all...]
  /external/icu/tools/icu4c_srcgen/
genutil.py 300 if decl.kind != clang.cindex.CursorKind.FUNCTION_DECL:
320 decl, clang.cindex.CursorKind.VISIBILITY_ATTR)
  /bionic/libc/kernel/tools/
cpp.py 22 from clang.cindex import CursorKind
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 550 R.CursorKind = Results[I].CursorKind;
626 R.CursorKind = CXCursor_OverloadCandidate;
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 370 CachedResult.Kind = R.CursorKind;
466 CachedResult.Kind = R.CursorKind;
    [all...]
  /external/clang/include/clang-c/
Index.h     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 336 milliseconds