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

/external/clang/include/clang/Sema/
H A DSemaInternal.h65 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()];
H A DSema.h867 llvm::DenseMap<NamedDecl *, SourceLocation> UndefinedButUsed; member in class:clang::Sema
/external/clang/lib/Sema/
H A DSema.cpp426 I = UndefinedButUsed.begin(), E = UndefinedButUsed.end();
472 if (S.UndefinedButUsed.empty()) return;
821 ExternalSource->ReadUndefinedButUsed(UndefinedButUsed);
H A DSemaDecl.cpp2553 // UndefinedButUsed.
2559 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
2566 UndefinedButUsed.erase(Old->getCanonicalDecl());
10104 // The only way to be included in UndefinedButUsed is if there is an
10109 UndefinedButUsed.erase(FD);
10113 UndefinedButUsed.erase(FD);
H A DSemaExpr.cpp11543 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
11547 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
/external/clang/include/clang/Serialization/
H A DASTReader.h781 SmallVector<uint64_t, 8> UndefinedButUsed; member in class:clang::ASTReader
/external/clang/lib/Serialization/
H A DASTWriter.cpp4173 RecordData UndefinedButUsed; local
4179 AddDeclRef(I->first, UndefinedButUsed);
4180 AddSourceLocation(I->second, UndefinedButUsed);
4429 if (!UndefinedButUsed.empty())
4430 Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed);
H A DASTReader.cpp3192 if (UndefinedButUsed.size() % 2 != 0) {
3193 Error("Invalid existing UndefinedButUsed");
3202 UndefinedButUsed.push_back(getGlobalDeclID(F, Record[I++]));
3203 UndefinedButUsed.push_back(
7032 for (unsigned Idx = 0, N = UndefinedButUsed.size(); Idx != N;) {
7033 NamedDecl *D = cast<NamedDecl>(GetDecl(UndefinedButUsed[Idx++]));
7035 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]);

Completed in 1855 milliseconds