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 858 static bool isRetain(const FunctionDecl *FD, StringRef FName) {
859 return FName.endswith("Retain");
862 static bool isRelease(const FunctionDecl *FD, StringRef FName) {
863 return FName.endswith("Release");
866 static bool isAutorelease(const FunctionDecl *FD, StringRef FName) {
867 return FName.endswith("Autorelease");
870 static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) {
873 return FName.find("MakeCollectable") != StringRef::npos;
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 266 const char *FName = "(unknown)";
268 Location Loc = getFunctionLocation(Function, &FName);
272 << FName << Data->Type;
273 Diag(Loc, DL_Note, "%0 defined here") << FName;
  /frameworks/compile/slang/
llvm-rs-cc.cpp 287 const char *FName = Arg + 1;
289 llvm::MemoryBuffer::getFile(FName);
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 272 CXString FName = clang_getFileName(File);
273 Out << clang_getCString(FName) << ":" << Line << ":";
274 clang_disposeString(FName);
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 149 // lui $v0, %hi(%neg(%gp_rel(fname)))
151 // daddiu $globalbasereg, $v1, %lo(%neg(%gp_rel(fname)))
152 const GlobalValue *FName = MF.getFunction();
154 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
158 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO);
178 // lui $v0, %hi(%neg(%gp_rel(fname)))
180 // addiu $globalbasereg, $v1, %lo(%neg(%gp_rel(fname)))
181 const GlobalValue *FName = MF.getFunction();
183 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
186 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO)
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 863 StringRef FName =
865 FName = Function::getRealLinkageName(FName);
868 Out.reserve(FName.size() + Prefix.size());
872 for (size_t i = 0, e = FName.size(); i < e; ++i) {
873 char C = FName[i];
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 435 StringRef FName = sys::path::filename(Filename);
437 if (sys::fs::current_path(CurPath)) return FName;
438 sys::path::append(CurPath, FName.str());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SampleProfile.cpp 248 void printFunctionProfile(raw_ostream &OS, StringRef FName);
249 void dumpFunctionProfile(StringRef FName);
366 /// \brief Print the function profile for \p FName on stream \p OS.
369 /// \param FName Name of the function to print.
371 StringRef FName) {
372 OS << "Function: " << FName << ":\n";
373 Profiles[FName].print(OS);
376 /// \brief Dump the function profile for \p FName.
378 /// \param FName Name of the function to print.
379 void SampleModuleProfile::dumpFunctionProfile(StringRef FName) {
    [all...]

Completed in 571 milliseconds