| /external/clang/lib/Tooling/ |
| Tooling.cpp | 108 const Twine &FileName) { 110 ToolAction, Code, std::vector<std::string>(), FileName); 115 StringRef FileName) { 120 Args.push_back(FileName.str()); 126 const Twine &FileName) { 128 StringRef FileNameRef = FileName.toNullTerminatedStringRef(FileNameStorage); 400 const Twine &FileName) { 401 return buildASTFromCodeWithArgs(Code, std::vector<std::string>(), FileName); 407 const Twine &FileName) { 409 StringRef FileNameRef = FileName.toNullTerminatedStringRef(FileNameStorage) [all...] |
| JSONCompilationDatabase.cpp | 303 StringRef FileName = File->getValue(FileStorage); 305 if (llvm::sys::path::is_relative(FileName)) { 309 llvm::sys::path::append(AbsolutePath, FileName); 312 llvm::sys::path::native(FileName, NativeFilePath);
|
| /external/clang/utils/analyzer/ |
| SATestBuild.py | 236 def hasNoExtension(FileName): 237 (Root, Ext) = os.path.splitext(FileName) 242 def isValidSingleInputFile(FileName): 243 (Root, Ext) = os.path.splitext(FileName) 268 FileName = os.path.basename(FullFileName) 272 if (hasNoExtension(FileName)): 274 if (isValidSingleInputFile(FileName) == False): 279 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist " 280 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName) 281 LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b" [all...] |
| /external/clang/unittests/Tooling/ |
| CompilationDatabaseTest.cpp | 115 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName, 122 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName); 215 StringRef FileName("//net/path/to/a-file.cpp"); 219 FileName, 222 "\"file\":\"" + FileName + "\"}]").str(), 236 "\"file\":\"" + FileName + "\"}]").str(), 244 StringRef FileName("//net/path/to/a-file.cpp"); 248 FileName, 251 "\"file\":\"" + FileName + "\"}]").str(), 261 StringRef FileName("//net/path/to/a-file.cpp") [all...] |
| /external/chromium_org/sandbox/win/src/ |
| filesystem_policy.cc | 155 (!query.AddStringMatch(IF, FileName::NAME, name, CASE_INSENSITIVE) || 161 (!query_full.AddStringMatch(IF, FileName::NAME, name, CASE_INSENSITIVE) 168 (!rename.AddStringMatch(IF, FileName::NAME, name, CASE_INSENSITIVE) || 184 // rule->AddNumberMatch(IF_NOT, FileName::BROKER, TRUE, AND); 190 bool rv = format.AddNumberMatch(IF_NOT, FileName::BROKER, TRUE, AND); 191 rv &= format.AddStringMatch(IF_NOT, FileName::NAME, L"\\/?/?\\*", 194 rv &= short_name.AddNumberMatch(IF_NOT, FileName::BROKER, TRUE, AND); 195 rv &= short_name.AddStringMatch(IF, FileName::NAME, L"*~*", CASE_SENSITIVE);
|
| /external/clang/lib/Lex/ |
| PreprocessingRecord.cpp | 27 StringRef FileName, 35 = (char*)PPRec.Allocate(FileName.size() + 1, llvm::alignOf<char>()); 36 memcpy(Memory, FileName.data(), FileName.size()); 37 Memory[FileName.size()] = 0; 38 this->FileName = StringRef(Memory, FileName.size()); 269 // include directives that form the filename using macros, e.g: 282 // Usually there are few macro expansions when defining the filename, do a 439 StringRef FileName, [all...] |
| /external/jhead/ |
| jhead.h | 86 char FileName [PATH_MAX+1]; 240 void MyGlob(const char * Pattern , void (*FileFuncParm)(const char * FileName)); 245 int EnsurePathExists(const char * FileName); 252 int ReadJpegFile(const char * FileName, ReadMode_t ReadMode); 258 int WriteJpegFile(const char * FileName);
|
| jpgfile.c | 524 int ReadJpegFile(const char * FileName, ReadMode_t ReadMode) 529 infile = fopen(FileName, "rb"); // Unix ignores 'b', windows needs it. 532 ALOGE("can't open '%s'", FileName); 533 fprintf(stderr, "can't open '%s'\n", FileName); 541 ALOGV("Cannot parse JPEG sections for file: %s", FileName); 542 fprintf(stderr,"Not JPEG: %s\n",FileName); 567 // A filename of '-' indicates thumbnail goes to stdout. 788 int WriteJpegFile(const char * FileName) 798 outfile = fopen(FileName,"wb");
|
| /external/chromium_org/tools/stats_viewer/ |
| OpenDialog.cs | 23 /// Get the user selected filename
25 public string FileName
|
| /external/clang/include/clang/Lex/ |
| PPCallbacks.h | 69 /// \param FileName The name of the file being included, as written in the 78 virtual bool FileNotFound(StringRef FileName, 93 /// \param FileName The name of the file being included, as written in the 115 /// file was found. This is equal to FileName except for framework includes. 122 StringRef FileName, 349 bool FileNotFound(StringRef FileName, 351 return First->FileNotFound(FileName, RecoveryPath) || 352 Second->FileNotFound(FileName, RecoveryPath); 356 StringRef FileName, bool IsAngled, 360 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled [all...] |
| /external/clang/lib/Serialization/ |
| Module.cpp | 76 llvm::errs() << "\nModule: " << FileName << "\n"; 82 llvm::errs() << Imports[I]->FileName;
|
| /external/clang/unittests/AST/ |
| NamedDeclPrinterTest.cpp | 67 StringRef ExpectedPrinted, StringRef FileName) { 74 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
|
| /external/clang/include/clang/Serialization/ |
| GlobalModuleIndex.h | 79 std::string FileName;
|
| Module.h | 120 std::string FileName; 126 return FileName + ".timestamp";
|
| /external/clang/include/clang/Tooling/ |
| Tooling.h | 111 virtual bool handleBeginSource(CompilerInstance &CI, StringRef Filename) { 139 /// \param FileName The file name which 'Code' will be mapped as. 143 const Twine &FileName = "input.cc"); 151 /// \param FileName The file name which 'Code' will be mapped as. 156 const Twine &FileName = "input.cc"); 161 /// \param FileName The file name which 'Code' will be mapped as. 165 const Twine &FileName = "input.cc"); 171 /// \param FileName The file name which 'Code' will be mapped as. 177 const Twine &FileName = "input.cc"); 345 StringRef Filename) override [all...] |
| /external/clang/unittests/Lex/ |
| PPCallbacksTest.cpp | 61 StringRef FileName, 70 this->FileName = FileName.str(); 81 SmallString<16> FileName; 191 // Callbacks have been executed at this point -- return filename range.
|
| /external/llvm/include/llvm/Support/ |
| Process.h | 179 const std::string& FileName);
|
| /external/lzma/CPP/7zip/UI/Client7z/ |
| makefile | 22 $O\FileName.obj \
|
| /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA1/ |
| SDL_main.cpp | 105 exeName.Set(thisProcess.FileName(), NULL, NULL);
|
| /external/srec/srec/include/ |
| ann_util.h | 76 void save_annotations(annotate_info* hAnnotation, char* FileName);
|
| /ndk/sources/host-tools/make-3.81/ |
| vmsfunctions.c | 159 static struct dsc$descriptor_s FileName = 192 Nam.nam$l_esa = EName; /* expanded filename */ 194 Nam.nam$l_rsa = RName; /* resultant filename */ 207 FileName.dsc$a_pointer = Nam.nam$l_name; 208 FileName.dsc$w_length = Nam.nam$b_name + Nam.nam$b_type + Nam.nam$b_ver; 223 &FibDesc, &FileName, 0, 0, &Atr, 0);
|
| /external/clang/lib/Rewrite/Frontend/ |
| InclusionRewriter.cpp | 64 StringRef FileName, bool IsAngled, 68 void WriteLineInfo(const char *Filename, int Line, 99 /// markers depending on what mode we're in, including the \p Filename and 102 void InclusionRewriter::WriteLineInfo(const char *Filename, int Line, 109 OS.write_escaped(Filename); 115 OS.write_escaped(Filename); 171 StringRef /*FileName*/, 288 StringRef Filename; 316 Filename = FilenameBuffer; 322 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid) [all...] |
| /external/clang/lib/Frontend/ |
| DependencyFile.cpp | 52 StringRef Filename = FE->getName(); 55 while (Filename.size() > 2 && Filename[0] == '.' && 56 llvm::sys::path::is_separator(Filename[1])) { 57 Filename = Filename.substr(1); 58 while (llvm::sys::path::is_separator(Filename[0])) 59 Filename = Filename.substr(1); 62 DepCollector.maybeAddDependency(Filename, /*FromModule*/false [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/ |
| _dbg_common.h | 12 typedef WINBOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PCSTR FileName,PVOID CallerData); 13 typedef WINBOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACKW)(HANDLE FileHandle,PCWSTR FileName,PVOID CallerData); 14 typedef WINBOOL (CALLBACK *PFINDFILEINPATHCALLBACK)(PCSTR filename,PVOID context); 15 typedef WINBOOL (CALLBACK *PFINDFILEINPATHCALLBACKW)(PCWSTR filename,PVOID context); 16 typedef WINBOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PCSTR FileName,PVOID CallerData); 17 typedef WINBOOL (CALLBACK *PFIND_EXE_FILE_CALLBACKW)(HANDLE FileHandle,PCWSTR FileName,PVOID CallerData); 27 HANDLE IMAGEAPI FindDebugInfoFile(PCSTR FileName,PCSTR SymbolPath,PSTR DebugFilePath); 28 HANDLE IMAGEAPI FindDebugInfoFileEx(PCSTR FileName,PCSTR SymbolPath,PSTR DebugFilePath,PFIND_DEBUG_FILE_CALLBACK Callback,PVOID CallerData); 29 HANDLE IMAGEAPI FindDebugInfoFileExW(PCWSTR FileName,PCWSTR SymbolPath,PWSTR DebugFilePath,PFIND_DEBUG_FILE_CALLBACKW Callback,PVOID CallerData); 30 WINBOOL IMAGEAPI SymFindFileInPath(HANDLE hprocess,PCSTR SearchPath,PCSTR FileName,PVOID id,DWORD two,DWORD three,DWORD flags,LPSTR FoundFile,PFINDFILEINPATHCALLBACK callback,PVOID (…) [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| mssip.h | 126 extern WINBOOL WINAPI CryptSIPRetrieveSubjectGuid(LPCWSTR FileName,HANDLE hFileIn,GUID *pgSubject); 127 extern WINBOOL WINAPI CryptSIPRetrieveSubjectGuidForCatalogFile(LPCWSTR FileName,HANDLE hFileIn,GUID *pgSubject);
|