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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp53 StringRef FName = C.getCalleeName(CE); local
54 if (FName.empty())
60 if (FName == "pthread_mutex_lock" ||
61 FName == "pthread_rwlock_rdlock" ||
62 FName == "pthread_rwlock_wrlock")
65 else if (FName == "lck_mtx_lock" ||
66 FName == "lck_rw_lock_exclusive" ||
67 FName == "lck_rw_lock_shared")
70 else if (FName == "pthread_mutex_trylock" ||
71 FName
[all...]
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 DRetainCountChecker.cpp880 static bool isRetain(const FunctionDecl *FD, StringRef FName) { argument
881 return FName.endswith("Retain");
884 static bool isRelease(const FunctionDecl *FD, StringRef FName) { argument
885 return FName.endswith("Release");
888 static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) { argument
891 return FName.find("MakeCollectable") != StringRef::npos;
1044 StringRef FName = II->getName(); local
1048 FName = FName.substr(FName
[all...]
H A DUnixAPIChecker.cpp337 StringRef FName = C.getCalleeName(FD);
338 if (FName.empty())
342 llvm::StringSwitch<SubChecker>(FName)
H A DMallocChecker.cpp1935 StringRef FName = II->getName();
1939 if (FName.endswith("NoCopy")) {
1958 if (FName == "funopen")
1965 if (FName == "setbuf" || FName =="setbuffer" ||
1966 FName == "setlinebuf" || FName == "setvbuf") {
1981 if (FName == "CGBitmapContextCreate" ||
1982 FName == "CGBitmapContextCreateWithData" ||
1983 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.cpp349 StringRef FName = II->getName();
353 if (FName.endswith("NoCopy"))
358 if (FName.startswith("NS") && (FName.find("Insert") != StringRef::npos))
363 if (FName.startswith("CF") || FName.startswith("CG")) {
364 return StrInStrNoCase(FName, "InsertValue") != StringRef::npos ||
365 StrInStrNoCase(FName, "AddValue") != StringRef::npos ||
366 StrInStrNoCase(FName, "SetValue") != StringRef::npos ||
367 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/chromium_org/third_party/lcov-1.9/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/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/clang/tools/scan-build/
H A Dscan-build229 my $FName = shift;
230 DieDiag("Cannot read $FName to compute Digest.\n") if (! -r $FName);
236 open(FILE, $FName) or DieDiag("Cannot open $FName when computing Digest.\n");
336 my $FName = shift;
342 my $digest = ComputeDigest("$Dir/$FName");
346 system ("rm", "-f", "$Dir/$FName");
353 system ("chmod", "644", "$Dir/$FName");
356 open(IN, "$Dir/$FName") o
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.cpp136 const GlobalValue *FName = MF.getFunction(); local
138 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
142 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO);
165 const GlobalValue *FName = MF.getFunction(); local
167 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_HI);
170 .addGlobalAddress(FName, 0, MipsII::MO_GPOFF_LO);
/external/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp397 StringRef FName = DISubprogram(*I).getLinkageName(); local
398 if (FName.empty())
399 FName = DISubprogram(*I).getName();
401 "llvm.dbg.lv." + Function::getRealLinkageName(FName)))
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp256 CXString FName = clang_getFileName(File); local
257 Out << clang_getCString(FName) << ":" << Line << ":";
258 clang_disposeString(FName);
/external/llvm/lib/IR/
H A DDebugInfo.cpp769 StringRef FName = local
771 FName = Function::getRealLinkageName(FName);
774 Out.reserve(FName.size() + Prefix.size());
778 for (size_t i = 0, e = FName.size(); i < e; ++i) {
779 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.cpp401 StringRef FName = sys::path::filename(Filename); local
403 if (sys::fs::current_path(CurPath)) return FName;
404 sys::path::append(CurPath, FName.str());
/external/llvm/lib/Support/
H A DCommandLine.cpp606 static bool ExpandResponseFile(const char *FName, StringSaver &Saver, argument
610 if (MemoryBuffer::getFile(FName, MemBuf))

Completed in 249 milliseconds