Searched refs:FName (Results 1 - 23 of 23) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSXAPIChecker.cpp40 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"; local
H A DPthreadLockChecker.cpp85 StringRef FName = C.getCalleeName(CE); local
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
[all...]
H A DRetainCountChecker.cpp858 static bool isRetain(const FunctionDecl *FD, StringRef FName) { argument
859 return FName.endswith("Retain");
862 static bool isRelease(const FunctionDecl *FD, StringRef FName) { argument
863 return FName.endswith("Release");
866 static bool isAutorelease(const FunctionDecl *FD, StringRef FName) { argument
867 return FName.endswith("Autorelease");
870 static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) { argument
873 return FName.find("MakeCollectable") != StringRef::npos;
1026 StringRef FName = II->getName(); local
1030 FName
[all...]
H A DUnixAPIChecker.cpp332 StringRef FName = C.getCalleeName(FD);
333 if (FName.empty())
337 llvm::StringSwitch<SubChecker>(FName)
H A DMallocChecker.cpp2123 StringRef FName = II->getName();
2127 if (FName.endswith("NoCopy")) {
2146 if (FName == "funopen")
2153 if (FName == "setbuf" || FName =="setbuffer" ||
2154 FName == "setlinebuf" || FName == "setvbuf") {
2169 if (FName == "CGBitmapContextCreate" ||
2170 FName == "CGBitmapContextCreateWithData" ||
2171 FName
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp77 StringRef FName = II->getName();
78 if (FName.equals(Name))
81 if (FName.startswith("__inline") && (FName.find(Name) != StringRef::npos))
84 if (FName.startswith("__") && FName.endswith("_chk") &&
85 FName.find(Name) != StringRef::npos)
H A DCallEvent.cpp357 StringRef FName = II->getName();
361 if (FName.endswith("NoCopy"))
366 if (FName.startswith("NS") && (FName.find("Insert") != StringRef::npos))
371 if (FName.startswith("CF") || FName.startswith("CG")) {
372 return StrInStrNoCase(FName, "InsertValue") != StringRef::npos ||
373 StrInStrNoCase(FName, "AddValue") != StringRef::npos ||
374 StrInStrNoCase(FName, "SetValue") != StringRef::npos ||
375 StrInStrNoCase(FName, "WithDat
[all...]
/external/chromium_org/third_party/lcov/contrib/galaxy/
H A Dconglomerate_functions.pl147 my $FName = "";
150 foreach $FName (@ARGV)
152 $FName =~ /\+([A-Z]+)\+/;
156 Decorate ("2", $FName); # Light green.
159 Decorate ("3", $FName); # Green.
162 Decorate ("4", $FName); # Red.
165 Decorate ("5", $FName); # Blue.
168 die ("Unknown extension $FName");
/external/elfutils/0.153/libelf/
H A Dgelf_xlate.c112 #define INLINE2(Bytes, FName, TName) \
113 INLINE3 (Bytes, FName, TName)
114 #define INLINE3(Bytes, FName, TName) \
115 static inline void FName##1 (void *dest, const void *ptr) \
127 static void FName (void *dest, const void *ptr, size_t len, \
134 FName##1 (dest, ptr); \
146 FName##1 (dest, ptr); \
/external/llvm/lib/Transforms/Scalar/
H A DSampleProfile.cpp248 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"; local
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) { argument
370 printFunctionProfile(raw_ostream &OS, StringRef FName) argument
380 printFunctionProfile(dbgs(), FName); local
488 StringRef FName = Matches[1]; local
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc266 const char *FName = "(unknown)"; local
268 Location Loc = getFunctionLocation(Function, &FName);
272 << FName << Data->Type;
273 Diag(Loc, DL_Note, "%0 defined here") << FName;
H A Dubsan_diag.cc60 Location __ubsan::getFunctionLocation(uptr Loc, const char **FName) { argument
70 if (FName && Info.function)
71 *FName = Info.function;
H A Dubsan_diag.h85 /// If FName is non-null and the name of the function is known, set *FName to
86 /// the function name, otherwise *FName is unchanged.
87 Location getFunctionLocation(uptr Loc, const char **FName);
/external/clang/tools/scan-build/
H A Dscan-build246 my $FName = shift;
247 DieDiag("Cannot read $FName to compute Digest.\n") if (! -r $FName);
253 open(FILE, $FName) or DieDiag("Cannot open $FName when computing Digest.\n");
353 my $FName = shift;
359 my $digest = ComputeDigest("$Dir/$FName");
363 unlink("$Dir/$FName");
370 chmod(0644, "$Dir/$FName");
373 open(IN, "$Dir/$FName") o
[all...]
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp272 CXString FName = clang_getFileName(File); local
273 Out << clang_getCString(FName) << ":" << Line << ":";
274 clang_disposeString(FName);
/external/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.cpp152 const GlobalValue *FName = MF.getFunction(); local
154 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
158 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO);
181 const GlobalValue *FName = MF.getFunction(); local
183 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
186 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO);
/external/llvm/lib/IR/
H A DDebugInfo.cpp863 StringRef FName = local
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];
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas369 FName: String;
944 if (FEntries[I].FName = Name) then
954 if (FEntries[I].FName = Name) then
969 if (FEntries[I].FName = Name) then
974 FEntries[FCount].FName := Name;
986 if (FEntries[I].FName = Name) then
991 FEntries[FCount].FName := Name;
H A DAntlr.Runtime.pas1646 FName: String;
1662 property SourceName: String read GetSourceName write FName;
3210 Result := FName;
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp39 const char *FName,
44 EnsureFunctionExists(M, FName, Fn->arg_begin(), Fn->arg_end(),
38 EnsureFPIntrinsicsExist(Module &M, Function *Fn, const char *FName, const char *DName, const char *LDName) argument
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp435 StringRef FName = sys::path::filename(Filename); local
437 if (sys::fs::current_path(CurPath)) return FName;
438 sys::path::append(CurPath, FName.str());
H A DDataFlowSanitizer.cpp255 Constant *getOrBuildTrampolineFunction(FunctionType *FT, StringRef FName);
512 StringRef FName) {
514 Constant *C = Mod->getOrInsertFunction(FName, FTT);
511 getOrBuildTrampolineFunction(FunctionType *FT, StringRef FName) argument
/external/llvm/lib/Support/
H A DCommandLine.cpp631 static bool ExpandResponseFile(const char *FName, StringSaver &Saver, argument
635 MemoryBuffer::getFile(FName);

Completed in 7153 milliseconds