HomeSort by: relevance | last modified time | path
    Searched refs:CXType (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.h 23 namespace cxtype { namespace in namespace:clang
25 CXType MakeCXType(QualType T, CXTranslationUnit TU);
27 }} // end namespace clang::cxtype
CXType.cpp 1 //===- CXType.cpp - Implements 'CXTypes' aspect of libclang ---------------===//
17 #include "CXType.h"
126 CXType cxtype::MakeCXType(QualType T, CXTranslationUnit TU) {
162 CXType CT = { TK, { TK == CXType_Invalid ? nullptr
167 using cxtype::MakeCXType;
169 static inline QualType GetQualType(CXType CT) {
173 static inline CXTranslationUnit GetTU(CXType CT) {
216 CXType clang_getCursorType(CXCursor C) {
269 return cxtype::MakeCXType(getCursorCXXBaseSpecifier(C)->getType(), TU)
    [all...]
CXCursor.cpp 18 #include "CXType.h"
1406 CXType clang_Cursor_getTemplateArgumentType(CXCursor C, unsigned I) {
1410 return cxtype::MakeCXType(QualType(), getCursorTU(C));
1414 return cxtype::MakeCXType(QualType(), getCursorTU(C));
1417 return cxtype::MakeCXType(TA.getAsType(), getCursorTU(C));
1683 CXType clang_Cursor_getReceiverType(CXCursor C) {
1690 return cxtype::MakeCXType(MsgE->getReceiverType(), TU);
1693 return cxtype::MakeCXType(
1706 return cxtype::MakeCXType(receiverTy, TU);
1710 return cxtype::MakeCXType(QualType(), TU)
    [all...]
CIndex.cpp 21 #include "CXType.h"
3789 CXString clang_Type_getObjCEncoding(CXType CT) {
6376 return clang_getTypeDeclaration(cxtype::MakeCXType(B->getType(), tu));
8649 CXType clang_getIBOutletCollectionType(CXCursor C) {
8651 return cxtype::MakeCXType(QualType(), cxcursor::getCursorTU(C));
8656 return cxtype::MakeCXType(A->getInterface(), cxcursor::getCursorTU(C));
  /src/external/apache2/llvm/dist/clang/include/clang-c/
Index.h 1323 * Used to indicate that attributed types should be included in CXType.
3429 } CXType;
3434 CINDEX_LINKAGE CXType clang_getCursorType(CXCursor C);
3442 CINDEX_LINKAGE CXString clang_getTypeSpelling(CXType CT);
3450 CINDEX_LINKAGE CXType clang_getTypedefDeclUnderlyingType(CXCursor C);
3458 CINDEX_LINKAGE CXType clang_getEnumDeclIntegerType(CXCursor C);
3564 * Retrieve a CXType representing the type of a TemplateArgument of a
3581 CINDEX_LINKAGE CXType clang_Cursor_getTemplateArgumentType(CXCursor C,
3630 CINDEX_LINKAGE unsigned clang_equalTypes(CXType A, CXType B)
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 819 CXType T = clang_getCursorType(Referenced);
821 CXType Underlying = clang_getTypedefDeclUnderlyingType(Referenced);
967 CXType T =
1016 CXType T = clang_Cursor_getTemplateArgumentType(Cursor, I);
1501 static void PrintTypeAndTypeKind(CXType T, const char *Format) {
1519 static void PrintTypeTemplateArgs(CXType T, const char *Format) {
1523 CXType TArg;
1538 static void PrintNullabilityKind(CXType T, const char *Format) {
1567 CXType T = clang_getCursorType(cursor);
1568 CXType PT = clang_getPointeeType(T)
    [all...]

Completed in 25 milliseconds