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

  /external/clang/lib/Frontend/
ASTConsumers.cpp 304 const DeclContext* LexicalDC = D->getLexicalDeclContext();
305 if (SemaDC != LexicalDC)
333 const DeclContext* LexicalDC = D->getLexicalDeclContext();
334 if (SemaDC != LexicalDC)
349 const DeclContext* LexicalDC = D->getLexicalDeclContext();
350 if (SemaDC != LexicalDC)
365 const DeclContext* LexicalDC = D->getLexicalDeclContext();
366 if (SemaDC != LexicalDC)
  /external/clang/lib/AST/
ASTImporter.cpp 84 DeclContext *&LexicalDC, DeclarationName &Name,
    [all...]
  /external/clang/tools/libclang/
CXIndexDataConsumer.cpp 28 const DeclContext *LexicalDC;
32 const DeclContext *lexicalDC)
33 : DataConsumer(dataConsumer), DeclLoc(Loc), LexicalDC(lexicalDC) { }
95 if (isa<ObjCImplDecl>(LexicalDC) && !D->isThisDeclarationADefinition())
96 DataConsumer.handleSynthesizedObjCMethod(D, DeclLoc, LexicalDC);
208 const DeclContext *LexicalDC = ASTNode.ContainerDC;
209 if (!LexicalDC) {
212 LexicalDC = dyn_cast<DeclContext>(SymRel.RelatedSymbol);
215 IndexingDeclVisitor(*this, Loc, LexicalDC).Visit(ASTNode.OrigD)
    [all...]
CXIndexDataConsumer.h 426 const DeclContext *LexicalDC);
479 const DeclContext *LexicalDC = nullptr,
  /external/clang/include/clang/AST/
DeclBase.h 228 DeclContext *LexicalDC;
237 /// context where it was lexically declared (LexicalDC).
241 /// void f(); // SemanticDC == LexicalDC == 'namespace A'
244 /// // LexicalDC == global namespace
708 /// lexically declared (LexicalDC). May be different from
713 /// void f(); // SemanticDC == LexicalDC == 'namespace A'
716 /// // LexicalDC == global namespace
720 return getMultipleDC()->LexicalDC;
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 296 if (const DeclContext *LexicalDC
298 if (LexicalDC->isRecord())
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaCodeComplete.cpp 731 const DeclContext *LexicalDC = ND->getLexicalDeclContext();
732 if (LexicalDC->isFunctionOrMethod()) {
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 518 DeclContext *LexicalDC = ReadDeclAs<DeclContext>(Record, Idx);
519 if (!LexicalDC)
520 LexicalDC = SemaDC;
524 D->setDeclContextsImpl(MergedSemaDC ? MergedSemaDC : SemaDC, LexicalDC,
    [all...]
ASTReader.cpp     [all...]

Completed in 331 milliseconds