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

  /external/clang/tools/libclang/
CXType.h 24 namespace cxtype { namespace in namespace:clang
26 CXType MakeCXType(QualType T, CXTranslationUnit TU);
28 }} // end namespace clang::cxtype
CXType.cpp 18 #include "CXType.h"
96 CXType cxtype::MakeCXType(QualType T, CXTranslationUnit TU) {
98 CXType CT = { TK, { TK == CXType_Invalid ? 0 : T.getAsOpaquePtr(), TU }};
102 using cxtype::MakeCXType;
104 static inline QualType GetQualType(CXType CT) {
108 static inline CXTranslationUnit GetTU(CXType CT) {
114 CXType clang_getCursorType(CXCursor C) {
162 return cxtype::MakeCXType(getCursorCXXBaseSpecifier(C)->getType(), TU);
165 return cxtype::MakeCXType(getCursorMemberRef(C).first->getType(), TU)
    [all...]
CIndex.cpp 19 #include "CXType.h"
    [all...]
  /external/clang/include/clang-c/
Index.h     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 258 CXType T =
639 CXType T = clang_getCursorType(cursor);
652 CXType CT = clang_getCanonicalType(T);
661 CXType RT = clang_getCursorResultType(cursor);
675 CXType T = clang_getCursorType(clang_Cursor_getArgument(cursor, i));
    [all...]

Completed in 31 milliseconds