Searched defs:CompleteType (Results 1 - 7 of 7) sorted by relevance

/external/lldb/source/Symbol/
H A DClangExternalASTSourceCallbacks.cpp131 ClangExternalASTSourceCallbacks::CompleteType (TagDecl *tag_decl) function in class:ClangExternalASTSourceCallbacks
138 ClangExternalASTSourceCallbacks::CompleteType (ObjCInterfaceDecl *objc_decl) function in class:ClangExternalASTSourceCallbacks
/external/clang/lib/AST/
H A DExternalASTSource.cpp31 void ExternalASTSource::CompleteType(TagDecl *Tag) {} function in class:ExternalASTSource
33 void ExternalASTSource::CompleteType(ObjCInterfaceDecl *Class) {} function in class:ExternalASTSource
/external/clang/lib/Frontend/
H A DChainedIncludesSource.cpp53 void CompleteType(TagDecl *Tag) override;
54 void CompleteType(ObjCInterfaceDecl *Class) override;
245 void ChainedIncludesSource::CompleteType(TagDecl *Tag) { function in class:ChainedIncludesSource
246 return getFinalReader().CompleteType(Tag);
248 void ChainedIncludesSource::CompleteType(ObjCInterfaceDecl *Class) { function in class:ChainedIncludesSource
249 return getFinalReader().CompleteType(Class);
/external/lldb/include/lldb/Expression/
H A DClangASTSource.h173 CompleteType (clang::TagDecl *Tag);
182 CompleteType (clang::ObjCInterfaceDecl *Class);
269 CompleteType (clang::TagDecl *Tag) function in class:lldb_private::ClangASTSource::ClangASTSourceProxy
271 return m_original.CompleteType(Tag);
275 CompleteType (clang::ObjCInterfaceDecl *Class) function in class:lldb_private::ClangASTSource::ClangASTSourceProxy
277 return m_original.CompleteType(Class);
/external/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp121 void MultiplexExternalSemaSource::CompleteType(TagDecl *Tag) { function in class:MultiplexExternalSemaSource
123 Sources[i]->CompleteType(Tag);
126 void MultiplexExternalSemaSource::CompleteType(ObjCInterfaceDecl *Class) { function in class:MultiplexExternalSemaSource
128 Sources[i]->CompleteType(Class);
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.cpp83 CompleteType (clang::TagDecl *tag_decl) function in class:lldb_private::AppleObjCExternalASTSource
92 log->Printf("AppleObjCExternalASTSource::CompleteType[%u] on (ASTContext*)%p Completing (TagDecl*)%p named %s",
113 CompleteType (clang::ObjCInterfaceDecl *interface_decl) function in class:lldb_private::AppleObjCExternalASTSource
122 log->Printf("AppleObjCExternalASTSource::CompleteType[%u] on (ASTContext*)%p Completing (ObjCInterfaceDecl*)%p named %s",
/external/lldb/source/Expression/
H A DClangASTSource.cpp170 ClangASTSource::CompleteType (TagDecl *tag_decl) function in class:ClangASTSource
307 ClangASTSource::CompleteType (clang::ObjCInterfaceDecl *interface_decl) function in class:ClangASTSource
437 external_source->CompleteType (original_tag_decl);

Completed in 701 milliseconds