Searched refs:UndefinedButUsed (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/Sema/ |
D | Sema.cpp | 477 I = UndefinedButUsed.begin(), E = UndefinedButUsed.end(); in getUndefinedButUsed() 523 if (S.UndefinedButUsed.empty()) return; in checkUndefinedButUsed() 881 ExternalSource->ReadUndefinedButUsed(UndefinedButUsed); in ActOnEndOfTranslationUnit()
|
D | SemaDecl.cpp | 2823 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), in MergeFunctionDecl() 2830 UndefinedButUsed.erase(Old->getCanonicalDecl()); in MergeFunctionDecl() 11084 UndefinedButUsed.erase(FD); in ActOnFinishFunctionBody() 11088 UndefinedButUsed.erase(FD); in ActOnFinishFunctionBody()
|
D | SemaExpr.cpp | 12564 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); in MarkFunctionReferenced() 12568 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); in MarkFunctionReferenced()
|
/external/clang/include/clang/Sema/ |
D | SemaInternal.h | 78 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()]; in MarkVarDeclODRUsed()
|
D | Sema.h | 942 llvm::DenseMap<NamedDecl *, SourceLocation> UndefinedButUsed; variable
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 4219 RecordData UndefinedButUsed; in WriteASTCore() local 4224 AddDeclRef(I.first, UndefinedButUsed); in WriteASTCore() 4225 AddSourceLocation(I.second, UndefinedButUsed); in WriteASTCore() 4504 if (!UndefinedButUsed.empty()) in WriteASTCore() 4505 Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed); in WriteASTCore()
|
D | ASTReader.cpp | 3124 if (UndefinedButUsed.size() % 2 != 0) { in ReadASTBlock() 3134 UndefinedButUsed.push_back(getGlobalDeclID(F, Record[I++])); in ReadASTBlock() 3135 UndefinedButUsed.push_back( in ReadASTBlock() 7182 for (unsigned Idx = 0, N = UndefinedButUsed.size(); Idx != N;) { in ReadUndefinedButUsed() 7183 NamedDecl *D = cast<NamedDecl>(GetDecl(UndefinedButUsed[Idx++])); in ReadUndefinedButUsed() 7185 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]); in ReadUndefinedButUsed()
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 796 SmallVector<uint64_t, 8> UndefinedButUsed; variable
|