HomeSort by relevance Sort by last modified time
    Searched defs:FunctionName (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/DebugInfo/
DIContext.h 33 std::string FunctionName;
38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
  /external/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 29 std::string FunctionName = Info.FunctionName;
30 if (FunctionName == kDILineInfoBadString)
31 FunctionName = kBadString;
35 OS << Prefix << FunctionName << Delimiter;
SymbolizableObjectFile.cpp 210 std::string FunctionName;
213 FunctionName, Start, Size)) {
214 LineInfo.FunctionName = FunctionName;
233 std::string FunctionName;
236 FunctionName, Start, Size)) {
238 ->FunctionName = FunctionName;
  /external/llvm/lib/Support/
Signals.cpp 147 StringRef FunctionName = *CurLine++;
148 if (FunctionName.empty())
151 if (!FunctionName.startswith("??"))
152 OS << FunctionName << ' ';
  /external/llvm/tools/llvm-link/
llvm-link.cpp 165 std::string FunctionName = Import.substr(0, Idx);
181 Function *F = M->getFunction(FunctionName);
184 << FunctionName << " from " << FileName << "\n";
191 errs() << "Ignoring import request for weak-any function " << FunctionName
197 errs() << "Importing " << FunctionName << " from " << FileName << "\n";
  /external/llvm/include/llvm/ProfileData/
CoverageMappingReader.h 35 StringRef FunctionName;
144 StringRef FunctionName;
150 ProfileMappingRecord(CoverageMappingVersion Version, StringRef FunctionName,
153 : Version(Version), FunctionName(FunctionName),
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 211 std::string FunctionName, BlockName;
212 In >> FunctionName;
216 std::make_pair(FunctionName, BlockName));
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 53 StringRef FunctionName;
57 InstantiationView(StringRef FunctionName, unsigned Line,
59 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
61 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)),
64 FunctionName = std::move(RHS.FunctionName);
149 void addInstantiation(StringRef FunctionName, unsigned Line,
151 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View))
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 601 StringRef FunctionName;
607 FunctionName = *FunctionNameOrErr;
619 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
668 StringRef FunctionName;
674 FunctionName = *FunctionNameOrErr;
684 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
  /external/llvm/tools/sancov/
sancov.cc 154 return std::tie(Loc, FunctionName) < std::tie(RHS.Loc, RHS.FunctionName);
158 std::string FunctionName;
170 // Compute [FileLoc -> FunctionName] map for given addresses.
189 Fns[Loc] = FrameInfo.FunctionName;
207 std::string FunctionName = P.second;
213 if (!ProcessedFunctions.insert(FunctionName).second)
386 DefaultBlacklist->inSection("fun", FnLoc.FunctionName))
391 if (UserBlacklist && UserBlacklist->inSection("fun", FnLoc.FunctionName))
397 << FnLoc.FunctionName << "\n"
    [all...]
  /external/v8/src/ast/
scopeinfo.cc 375 String* ScopeInfo::FunctionName() {
581 FunctionName() == name) {
740 FunctionName()->ShortPrint();
  /external/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
CoverageMappingGen.cpp 885 static void dump(llvm::raw_ostream &OS, StringRef FunctionName,
888 OS << FunctionName << ":\n";
    [all...]
CGObjCGNU.cpp 50 const char *FunctionName;
58 : CGM(nullptr), FunctionName(nullptr), Function(nullptr) {}
65 FunctionName = name;
82 if (!FunctionName)
85 cast<llvm::Constant>(CGM->CreateRuntimeFunction(FTy, FunctionName));
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 418 std::string FunctionName = "__msan_maybe_warning_" + itostr(AccessSize);
420 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8),
423 FunctionName = "__msan_maybe_store_origin_" + itostr(AccessSize);
425 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8),
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 488 milliseconds