HomeSort by: relevance | last modified time | path
    Searched refs:UndefinedButUsed (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
Sema.cpp 733 for (const auto &UndefinedUse : UndefinedButUsed) {
785 if (S.UndefinedButUsed.empty()) return;
831 S.UndefinedButUsed.clear();
1113 ExternalSource->ReadUndefinedButUsed(UndefinedButUsed);
SemaExpr.cpp 17086 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
17090 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
17092 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
17135 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()];
SemaDecl.cpp 3453 // UndefinedButUsed.
3459 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3466 UndefinedButUsed.erase(Old->getCanonicalDecl());
4206 // UndefinedButUsed.
4209 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 4457 RecordData UndefinedButUsed;
4462 AddDeclRef(I.first, UndefinedButUsed);
4463 AddSourceLocation(I.second, UndefinedButUsed);
4779 if (!UndefinedButUsed.empty())
4780 Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed);
ASTReader.cpp 3649 if (UndefinedButUsed.size() % 2 != 0) {
3650 Error("Invalid existing UndefinedButUsed");
3659 UndefinedButUsed.push_back(getGlobalDeclID(F, Record[I++]));
3660 UndefinedButUsed.push_back(
8258 for (unsigned Idx = 0, N = UndefinedButUsed.size(); Idx != N;) {
8259 NamedDecl *D = cast<NamedDecl>(GetDecl(UndefinedButUsed[Idx++]));
8261 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]);
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTReader.h 903 SmallVector<serialization::DeclID, 8> UndefinedButUsed;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 1399 llvm::MapVector<NamedDecl *, SourceLocation> UndefinedButUsed;

Completed in 92 milliseconds