HomeSort by relevance Sort by last modified time
    Searched defs:CompleteType (Results 1 - 7 of 7) sorted by null

  /external/lldb/source/Symbol/
ClangExternalASTSourceCallbacks.cpp 131 ClangExternalASTSourceCallbacks::CompleteType (TagDecl *tag_decl)
138 ClangExternalASTSourceCallbacks::CompleteType (ObjCInterfaceDecl *objc_decl)
  /external/clang/lib/AST/
ExternalASTSource.cpp 31 void ExternalASTSource::CompleteType(TagDecl *Tag) {}
33 void ExternalASTSource::CompleteType(ObjCInterfaceDecl *Class) {}
  /external/clang/lib/Frontend/
ChainedIncludesSource.cpp 53 void CompleteType(TagDecl *Tag) override;
54 void CompleteType(ObjCInterfaceDecl *Class) override;
245 void ChainedIncludesSource::CompleteType(TagDecl *Tag) {
246 return getFinalReader().CompleteType(Tag);
248 void ChainedIncludesSource::CompleteType(ObjCInterfaceDecl *Class) {
249 return getFinalReader().CompleteType(Class);
  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 121 void MultiplexExternalSemaSource::CompleteType(TagDecl *Tag) {
123 Sources[i]->CompleteType(Tag);
126 void MultiplexExternalSemaSource::CompleteType(ObjCInterfaceDecl *Class) {
128 Sources[i]->CompleteType(Class);
  /external/lldb/include/lldb/Expression/
ClangASTSource.h 173 CompleteType (clang::TagDecl *Tag);
182 CompleteType (clang::ObjCInterfaceDecl *Class);
269 CompleteType (clang::TagDecl *Tag)
271 return m_original.CompleteType(Tag);
275 CompleteType (clang::ObjCInterfaceDecl *Class)
277 return m_original.CompleteType(Class);
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTypeVendor.cpp 83 CompleteType (clang::TagDecl *tag_decl)
92 log->Printf("AppleObjCExternalASTSource::CompleteType[%u] on (ASTContext*)%p Completing (TagDecl*)%p named %s",
113 CompleteType (clang::ObjCInterfaceDecl *interface_decl)
122 log->Printf("AppleObjCExternalASTSource::CompleteType[%u] on (ASTContext*)%p Completing (ObjCInterfaceDecl*)%p named %s",
  /external/lldb/source/Expression/
ClangASTSource.cpp 170 ClangASTSource::CompleteType (TagDecl *tag_decl)
307 ClangASTSource::CompleteType (clang::ObjCInterfaceDecl *interface_decl)
437 external_source->CompleteType (original_tag_decl);
    [all...]

Completed in 105 milliseconds