Searched refs:UndefinedButUsed (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/Sema/ |
D | Sema.cpp | 476 for (const auto &UndefinedUse : UndefinedButUsed) { in getUndefinedButUsed() 506 if (S.UndefinedButUsed.empty()) return; in checkUndefinedButUsed() 542 S.UndefinedButUsed.clear(); in checkUndefinedButUsed() 740 ExternalSource->ReadUndefinedButUsed(UndefinedButUsed); in ActOnEndOfTranslationUnit()
|
D | SemaDecl.cpp | 2897 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), in MergeFunctionDecl() 2904 UndefinedButUsed.erase(Old->getCanonicalDecl()); in MergeFunctionDecl() 3638 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), in MergeVarDecl() 11494 UndefinedButUsed.erase(FD); in ActOnFinishFunctionBody() 11498 UndefinedButUsed.erase(FD); in ActOnFinishFunctionBody()
|
D | SemaExpr.cpp | 13123 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); in MarkFunctionReferenced() 13127 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 | 979 llvm::MapVector<NamedDecl *, SourceLocation> UndefinedButUsed; variable
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 4276 RecordData UndefinedButUsed; in WriteASTCore() local 4281 AddDeclRef(I.first, UndefinedButUsed); in WriteASTCore() 4282 AddSourceLocation(I.second, UndefinedButUsed); in WriteASTCore() 4572 if (!UndefinedButUsed.empty()) in WriteASTCore() 4573 Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed); in WriteASTCore()
|
D | ASTReader.cpp | 3111 if (UndefinedButUsed.size() % 2 != 0) { in ReadASTBlock() 3121 UndefinedButUsed.push_back(getGlobalDeclID(F, Record[I++])); in ReadASTBlock() 3122 UndefinedButUsed.push_back( in ReadASTBlock() 7235 for (unsigned Idx = 0, N = UndefinedButUsed.size(); Idx != N;) { in ReadUndefinedButUsed() 7236 NamedDecl *D = cast<NamedDecl>(GetDecl(UndefinedButUsed[Idx++])); in ReadUndefinedButUsed() 7238 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]); in ReadUndefinedButUsed()
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 798 SmallVector<uint64_t, 8> UndefinedButUsed; variable
|