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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExternalASTMerger.h 163 void MaybeRecordOrigin(const DeclContext *ToDC, DCOrigin Origin);
166 void ForceRecordOrigin(const DeclContext *ToDC, DCOrigin Origin);
185 void RecordOriginImpl(const DeclContext *ToDC, DCOrigin Origin,
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExternalASTMerger.cpp 201 if (auto *ToDC = dyn_cast<DeclContext>(To)) {
205 << " imported (DeclContext*)" << (void*)ToDC
221 Parent.ForceRecordOrigin(ToDC, FromOrigins.at(FromDC));
228 Parent.MaybeRecordOrigin(ToDC, {FromDC, &getFromContext()});
369 void ExternalASTMerger::MaybeRecordOrigin(const DeclContext *ToDC,
374 LookupSameContext(Origin.AST->getTranslationUnitDecl(), ToDC, Reverse);
377 RecordOriginImpl(ToDC, Origin, Importer);
386 void ExternalASTMerger::ForceRecordOrigin(const DeclContext *ToDC,
388 RecordOriginImpl(ToDC, Origin, ImporterForOrigin(*Origin.AST));
391 void ExternalASTMerger::RecordOriginImpl(const DeclContext *ToDC, DCOrigin Origin
    [all...]
ASTImporter.cpp 296 DeclContext *ToDC = ToD->getDeclContext();
301 ToDC->addDeclInternal(ToD);
304 if (ToDC != ToLexicalDC && FromLexicalDC->containsDeclAndLoad(FromD)) {
318 ToDC->makeDeclVisibleInContext(ToNamed);
393 Decl *From, DeclContext *&ToDC, DeclContext *&ToLexicalDC);
1846 // ToDC if it has an external storage. Calling field_begin() will
1863 DeclContext *ToDC = *ToDCOrErr;
1872 assert(ToDC == ToD->getLexicalDeclContext() && ToDC->containsDecl(ToD));
1874 ToDC->removeDecl(ToD)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAccess.cpp 279 const DeclContext *ToDC = To->getDeclContext()->getPrimaryContext();
280 if (FromDC == ToDC) return true;
281 if (FromDC->isFileContext() || ToDC->isFileContext()) return false;

Completed in 62 milliseconds