Searched refs:UndefinedButUsed (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp685 for (const auto &UndefinedUse : UndefinedButUsed) {
737 if (S.UndefinedButUsed.empty()) return;
783 S.UndefinedButUsed.clear();
1062 ExternalSource->ReadUndefinedButUsed(UndefinedButUsed);
H A DSemaExpr.cpp15725 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
15729 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
15731 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
15768 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()];
H A DSemaDecl.cpp3397 // UndefinedButUsed.
3403 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3410 UndefinedButUsed.erase(Old->getCanonicalDecl());
4157 // UndefinedButUsed.
4160 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4462 RecordData UndefinedButUsed;
4467 AddDeclRef(I.first, UndefinedButUsed);
4468 AddSourceLocation(I.second, UndefinedButUsed);
4778 if (!UndefinedButUsed.empty())
4779 Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed);
H A DASTReader.cpp3641 if (UndefinedButUsed.size() % 2 != 0) {
3642 Error("Invalid existing UndefinedButUsed");
3651 UndefinedButUsed.push_back(getGlobalDeclID(F, Record[I++]));
3652 UndefinedButUsed.push_back(
8108 for (unsigned Idx = 0, N = UndefinedButUsed.size(); Idx != N;) {
8109 NamedDecl *D = cast<NamedDecl>(GetDecl(UndefinedButUsed[Idx++]));
8111 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h885 SmallVector<uint64_t, 8> UndefinedButUsed; member in class:clang::ASTReader
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1231 llvm::MapVector<NamedDecl *, SourceLocation> UndefinedButUsed; member in class:clang::final

Completed in 298 milliseconds