| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| file_manager.d | 15 import dmd.root.filename : FileName; 35 * Look for the source file if it's different from filename. 39 * filename = as supplied by the user 40 * path = path to look for filename 43 * `null` if it is not different from filename. 45 static const(char)[] lookForSourceFile(const char[] filename, const char*[] path) 47 //printf("lookForSourceFile(`%.*s`)\n", cast(int)filename.length, filename.ptr); 50 const sdi = FileName.forceExt(filename, hdr_ext) [all...] |
| /src/sys/external/bsd/gnu-efi/dist/lib/ |
| debug.c | 35 IN CONST CHAR8 *FileName, 40 DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| PPCallbacks.cpp | 17 void PPCallbacks::HasInclude(SourceLocation Loc, StringRef FileName, 24 void PPChainedCallbacks::HasInclude(SourceLocation Loc, StringRef FileName, 27 First->HasInclude(Loc, FileName, IsAngled, File, FileType); 28 Second->HasInclude(Loc, FileName, IsAngled, File, FileType);
|
| /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-cxx/ |
| handle_cxx.h | 21 const char *FileName,
|
| handle_cxx.cpp | 24 const char *FileName, 30 CC1Args.push_back(FileName); 43 Invocation->getPreprocessorOpts().addRemappedFile(FileName,
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerIOWindows.cpp | 119 std::string FileName = DirPlusFile(Dir, FindInfo.cFileName); 128 ListFilesInDirRecursive(FileName, Epoch, V, false); 130 else if (IsFile(FileName, FindInfo.dwFileAttributes)) 131 V->push_back(FileName); 182 static size_t ParseDrive(const std::string &FileName, const size_t Offset, 184 if (Offset + 1 >= FileName.size() || FileName[Offset + 1] != ':') 186 if (Offset + 2 >= FileName.size() || !IsSeparator(FileName[Offset + 2])) { 197 static size_t ParseFileName(const std::string &FileName, const size_t Offset) [all...] |
| FuzzerIOPosix.cpp | 114 std::string DirName(const std::string &FileName) { 115 char *Tmp = new char[FileName.size() + 1]; 116 memcpy(Tmp, FileName.c_str(), FileName.size() + 1); 128 bool IsInterestingCoverageFile(const std::string &FileName) { 129 if (FileName.find("compiler-rt/lib/") != std::string::npos) 131 if (FileName.find("/usr/lib/") != std::string::npos) 133 if (FileName.find("/usr/include/") != std::string::npos) 135 if (FileName == "<null>")
|
| FuzzerIO.h | 33 // Returns "Dir/FileName" or equivalent for the current OS. 35 const std::string &FileName); 38 std::string DirName(const std::string &FileName); 43 bool IsInterestingCoverageFile(const std::string &FileName);
|
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| SortJavaScriptImports.h | 30 StringRef FileName);
|
| FormatInternal.h | 74 unsigned NextStartColumn, unsigned LastStartColumn, StringRef FileName,
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| NativeSourceFile.cpp | 25 auto FileName = ST->getStringTable().getString(Checksum.FileNameOffset); 26 if (!FileName) { 27 consumeError(FileName.takeError()); 31 return std::string(FileName.get());
|
| /src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| CommandLineSourceLoc.h | 25 std::string FileName; 30 /// Construct a parsed source location from a string; the Filename is empty on 41 PSL.FileName = std::string(LineSplit.first); 45 if (PSL.FileName == "-") 46 PSL.FileName = "<stdin>"; 54 return (llvm::Twine(FileName == "<stdin>" ? "-" : FileName) + ":" + 62 std::string FileName; 88 // probably belongs to the filename which menas the whole 95 if (Begin.FileName.empty() [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| WasmObjcopy.cpp | 23 static Error dumpSectionToFile(StringRef SecName, StringRef Filename, 29 FileOutputBuffer::create(Filename, Contents.size()); 46 StringRef FileName; 47 std::tie(SecName, FileName) = Flag.split("="); 48 if (Error E = dumpSectionToFile(SecName, FileName, Obj)) 49 return createFileError(FileName, std::move(E)); 59 StringRef SecName, FileName; 60 std::tie(SecName, FileName) = Flag.split("="); 62 MemoryBuffer::getFile(FileName); 64 return createFileError(FileName, errorCodeToError(BufOrErr.getError())) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Inclusions/ |
| HeaderIncludes.h | 28 IncludeCategoryManager(const IncludeStyle &Style, StringRef FileName); 42 std::string FileName; 50 HeaderIncludes(llvm::StringRef FileName, llvm::StringRef Code, 94 std::string FileName;
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Process.cpp | 34 Process::FindInEnvPath(StringRef EnvName, StringRef FileName, char Separator) { 35 return FindInEnvPath(EnvName, FileName, {}, Separator); 39 StringRef FileName, 42 assert(!path::is_absolute(FileName)); 60 path::append(FilePath, FileName);
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/ |
| HeaderIncludes.cpp | 41 StringRef FileName, StringRef Code, const IncludeStyle &Style, 44 SourceManagerForFile VirtualSM(FileName, Code); 81 unsigned getOffsetAfterHeaderGuardsAndComments(StringRef FileName, 91 FileName, Code, Style, 158 unsigned getMaxHeaderInsertionOffset(StringRef FileName, StringRef Code, 161 FileName, Code, Style, 178 // The filename of Path excluding extension. 184 StringRef Name = llvm::sys::path::filename(Path); 191 StringRef FileName) 192 : Style(Style), FileName(FileName) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| FileMatchTrie.cpp | 74 StringRef Element(llvm::sys::path::filename( 78 StringRef Element(llvm::sys::path::filename( 84 /// matches 'FileName'. 86 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to 87 /// \c true and an empty string is returned. If no path fits 'FileName', an 89 /// \c Filename's trailing characters already consumed during recursion. 105 StringRef FileName, 112 if (llvm::sys::path::filename(Path) == 113 llvm::sys::path::filename(FileName) & [all...] |
| /src/external/bsd/iscsi/dist/src/osd/ |
| osd.c | 118 char FileName[1024]; 134 sprintf(FileName, "%s/lun_%d", base_dir, i); 135 if (mkdir(FileName, 0755) != 0) { 137 iscsi_err(__FILE__, __LINE__, "error creating \"%s\" for LU %d: errno %d\n", FileName, i, errno); 166 char FileName[1024]; 298 sprintf(FileName, "%s/lun_%llu/0x%x/0x%llx.0x%x.%u", 300 if ((rc = open(FileName, O_WRONLY | O_CREAT, 0644)) == -1) { 301 iscsi_err(__FILE__, __LINE__, "error opening \"%s\": errno %d\n", FileName, errno); 321 sprintf(FileName, "%s/lun_%llu/0x%x", base_dir, args->lun, GroupID); 322 rc = mkdir(FileName, 0755) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/sancov/ |
| sancov.cpp | 140 read(const std::string &FileName); 229 RawCoverage::read(const std::string &FileName) { 231 MemoryBuffer::getFile(FileName); 304 PointsByFile[Loc.FileName].push_back(&Point); 309 std::string FileName = P.first; 326 if (Loc.FileName != FileName || Loc.FunctionName != FunctionName) 400 auto Filename = parseScalarString(FileKVNode.getKey()); 427 LineInfo.FileName = Filename; [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| DependencyGraph.cpp | 49 StringRef FileName, bool IsAngled, 71 StringRef FileName, 118 StringRef FileName = AllFiles[I]->getName(); 119 if (FileName.startswith(SysRoot)) 120 FileName = FileName.substr(SysRoot.size()); 122 OS << DOT::EscapeString(std::string(FileName)) << "\"];\n";
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/ |
| llvm-libtool-darwin.cpp | 39 static cl::opt<std::string> OutputFile("o", cl::desc("Specify output filename"), 40 cl::value_desc("filename"), 110 static Expected<std::string> searchForFile(const Twine &FileName) { 113 [FileName](ArrayRef<std::string> SearchDirs) -> Optional<std::string> { 116 sys::path::append(Path, Dir, FileName); 131 "cannot locate file '%s'", FileName.str().c_str()); 147 StringRef FileName, DirName; 148 std::tie(FileName, DirName) = StringRef(FileList).rsplit(","); 151 MemoryBuffer::getFileOrSTDIN(FileName, /*IsText=*/false, 154 return createFileError(FileName, errorCodeToError(EC)) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ModuleManager.cpp | 103 ModuleManager::addModule(StringRef FileName, ModuleKind Type, 125 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) { 130 if (!Entry && FileName != "-") { 153 return Entry->getName() == MF->FileName; 172 NewModule->FileName = FileName.str(); 187 if (std::unique_ptr<llvm::MemoryBuffer> Buffer = lookupBuffer(FileName)) { 189 NewModule->Buffer = &ModuleCache->addBuiltPCM(FileName, std::move(Buffer)); 195 getModuleCache().lookupPCM(FileName)) { 199 } else if (getModuleCache().shouldBuildPCM(FileName)) { [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/ |
| llvm-jitlink-elf.cpp | 70 auto FileName = sys::path::filename(G.getName()); 71 if (S.FileInfos.count(FileName)) { 74 FileName + "\")", 78 auto &FileInfo = S.FileInfos[FileName]; 80 dbgs() << "Registering ELF file info for \"" << FileName << "\"\n"; 96 Sec.getName() + "\" in \"" + FileName +
|
| llvm-jitlink-macho.cpp | 72 auto FileName = sys::path::filename(G.getName()); 73 if (S.FileInfos.count(FileName)) { 76 FileName + "\")", 80 auto &FileInfo = S.FileInfos[FileName]; 82 dbgs() << "Registering MachO file info for \"" << FileName << "\"\n"; 98 Sec.getName() + "\" in \"" + FileName +
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
| CodeViewYAMLDebugSections.h | 75 StringRef FileName; 85 StringRef FileName; 100 StringRef FileName;
|