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

  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSXAPIChecker.cpp 40 StringRef FName) const;
44 StringRef FName) const;
53 StringRef FName) const {
78 StringRef TrimmedFName = FName.ltrim("_");
79 if (TrimmedFName != FName)
80 FName = TrimmedFName;
85 os << "Call to '" << FName << "' uses";
PthreadLockChecker.cpp 85 StringRef FName = C.getCalleeName(CE);
86 if (FName.empty())
92 if (FName == "pthread_mutex_lock" ||
93 FName == "pthread_rwlock_rdlock" ||
94 FName == "pthread_rwlock_wrlock")
97 else if (FName == "lck_mtx_lock" ||
98 FName == "lck_rw_lock_exclusive" ||
99 FName == "lck_rw_lock_shared")
102 else if (FName == "pthread_mutex_trylock" ||
103 FName == "pthread_rwlock_tryrdlock" |
    [all...]
RetainCountChecker.cpp 884 static bool isRetain(const FunctionDecl *FD, StringRef FName) {
885 return FName.endswith("Retain");
888 static bool isRelease(const FunctionDecl *FD, StringRef FName) {
889 return FName.endswith("Release");
892 static bool isAutorelease(const FunctionDecl *FD, StringRef FName) {
893 return FName.endswith("Autorelease");
896 static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) {
899 return FName.find("MakeCollectable") != StringRef::npos;
    [all...]
  /external/llvm/include/llvm/ProfileData/
SampleProfWriter.h 34 /// Write sample profiles in \p S for function \p FName.
37 virtual std::error_code write(StringRef FName, const FunctionSamples &S) = 0;
47 StringRef FName = I.first();
49 if (std::error_code EC = write(FName, Profile))
83 std::error_code write(StringRef FName, const FunctionSamples &S) override;
116 std::error_code writeNameIdx(StringRef FName);
117 std::error_code writeBody(StringRef FName, const FunctionSamples &S);
120 void addName(StringRef FName);
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 271 CXString FName = clang_getFileName(File);
272 Out << clang_getCString(FName) << ":" << Line << ":";
273 clang_disposeString(FName);
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 450 const char *FName = FLoc.get()->info.function;
451 if (!FName)
452 FName = "(unknown)";
456 << FName << Data->Type;
457 Diag(FLoc, DL_Note, "%0 defined here") << FName;
541 const char *FName = FLoc.get()->info.function;
542 if (!FName)
543 FName = "(unknown)";
544 Diag(FLoc, DL_Note, "%0 defined here") << FName;
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 35 /// \brief Dump the function profile for \p FName.
37 /// \param FName Name of the function to print.
39 void SampleProfileReader::dumpFunctionProfile(StringRef FName,
41 OS << "Function: " << FName << ": " << Profiles[FName];
52 /// Parse one line of \p Input, and update function name in \p FName,
57 static bool ParseHead(const StringRef &Input, StringRef &FName,
63 FName = Input.substr(0, n1);
175 StringRef FName;
176 if (!ParseHead(*LineIt, FName, NumSamples, NumHeadSamples))
    [all...]
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 181 StringRef FName = I->first();
183 sampleprof_error Result = ProfileMap[FName].merge(Samples, Input.Weight);
186 handleMergeWriterError(EC, Input.Filename, FName);
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 152 // lui $v0, %hi(%neg(%gp_rel(fname)))
154 // daddiu $globalbasereg, $v1, %lo(%neg(%gp_rel(fname)))
155 const GlobalValue *FName = MF.getFunction();
157 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
161 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO);
181 // lui $v0, %hi(%neg(%gp_rel(fname)))
183 // addiu $globalbasereg, $v1, %lo(%neg(%gp_rel(fname)))
184 const GlobalValue *FName = MF.getFunction();
186 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
189 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 442 StringRef FName = sys::path::filename(Filename);
444 if (sys::fs::current_path(CurPath)) return FName;
445 sys::path::append(CurPath, FName);
    [all...]

Completed in 729 milliseconds