/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerIOWindows.cpp | 97 std::string FileName = DirPlusFile(Dir, FindInfo.cFileName); in ListFilesInDirRecursive() local 106 ListFilesInDirRecursive(FileName, Epoch, V, false); in ListFilesInDirRecursive() 108 else if (IsFile(FileName, FindInfo.dwFileAttributes)) in ListFilesInDirRecursive() 109 V->push_back(FileName); in ListFilesInDirRecursive() 148 static size_t ParseDrive(const std::string &FileName, const size_t Offset, in ParseDrive() argument 150 if (Offset + 1 >= FileName.size() || FileName[Offset + 1] != ':') in ParseDrive() 152 if (Offset + 2 >= FileName.size() || !IsSeparator(FileName[Offset + 2])) { in ParseDrive() 163 static size_t ParseFileName(const std::string &FileName, cons argument 173 ParseDir(const std::string &FileName, const size_t Offset) ParseDir() argument 188 ParseServerAndShare(const std::string &FileName, const size_t Offset) ParseServerAndShare() argument 214 ParseLocation(const std::string &FileName) ParseLocation() argument 247 DirName(const std::string &FileName) DirName() argument [all...] |
H A D | FuzzerIOPosix.cpp | 78 std::string DirName(const std::string &FileName) { in DirName() argument 79 char *Tmp = new char[FileName.size() + 1]; in DirName() 80 memcpy(Tmp, FileName.c_str(), FileName.size() + 1); in DirName()
|
H A D | 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);
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | SourceContext.cs | 36 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.SourceContext), global::Google.Protobuf.WellKnownTypes.SourceContext.Parser, new[]{ "FileName" }, null, null, null, null) in SourceContextReflection() 93 public string FileName { property in Google.Protobuf.WellKnownTypes.SourceContext 113 if (FileName != other.FileName) return false; in Equals() 120 if (FileName.Length != 0) hash ^= FileName.GetHashCode(); in GetHashCode() 137 if (FileName.Length != 0) { in WriteTo() 139 output.WriteString(FileName); in WriteTo() 150 if (FileName.Length != 0) { in IBufferMessage.InternalWriteTo() 152 output.WriteString(FileName); in IBufferMessage.InternalWriteTo() [all...] |
/third_party/lzma/CPP/7zip/UI/Console/ |
H A D | PercentPrinter.cpp | 22 FileName.Empty();
in ClearCurState() 104 && _printedState.FileName == st.FileName
in Print() 141 if (!FileName.IsEmpty() && _s.Len() < MaxLen)
in Print() 145 _tempU = FileName;
in Print() 150 unsigned len = FileName.Len();
in Print() 157 _tempU = FileName;
in Print()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Process.cpp | 32 StringRef FileName) { in FindInEnvPath() 33 return FindInEnvPath(EnvName, FileName, {}); in FindInEnvPath() 37 StringRef FileName, in FindInEnvPath() 39 assert(!path::is_absolute(FileName)); in FindInEnvPath() 57 path::append(FilePath, FileName); in FindInEnvPath() 31 FindInEnvPath(StringRef EnvName, StringRef FileName) FindInEnvPath() argument 36 FindInEnvPath(StringRef EnvName, StringRef FileName, ArrayRef<std::string> IgnoreList) FindInEnvPath() argument
|
H A D | LockFileManager.cpp | 156 LockFileManager::LockFileManager(StringRef FileName) in LockFileManager() argument 158 this->FileName = FileName; in LockFileManager() 159 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) { in LockFileManager() 161 S.append(this->FileName.str()); in LockFileManager() 165 LockFileName = this->FileName; in LockFileManager() 319 if (!sys::fs::exists(FileName)) in waitForUnlock()
|
H A D | DynamicLibrary.cpp | 148 DynamicLibrary DynamicLibrary::getPermanentLibrary(const char *FileName, in getPermanentLibrary() argument 154 void *Handle = HandleSet::DLOpen(FileName, Err); in getPermanentLibrary() 157 HS.AddLibrary(Handle, /*IsProcess*/ FileName == nullptr); in getPermanentLibrary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/ |
H A D | DIContext.h | 35 std::string FileName; member 45 DILineInfo() : FileName(BadString), FunctionName(BadString) {} in DILineInfo() 49 FileName == RHS.FileName && FunctionName == RHS.FunctionName && in operator ==() 58 return std::tie(FileName, FunctionName, Line, Column, StartLine, in operator <() 60 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column, in operator <() 68 if (FileName != BadString) in dump() 69 OS << "file '" << FileName << "', "; in dump() local
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCDwarf.h | 228 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName, 252 void setRootFile(StringRef Directory, StringRef FileName, in setRootFile() 256 RootFile.Name = FileName; in setRootFile() 282 void maybeSetRootFile(StringRef Directory, StringRef FileName, in maybeSetRootFile() argument 287 Header.setRootFile(Directory, FileName, Checksum, Source); in maybeSetRootFile() 290 unsigned getFile(StringRef Directory, StringRef FileName, in getFile() argument 294 return cantFail(Header.tryGetFile(Directory, FileName, Checksum, Source, in getFile() 314 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName, 319 unsigned getFile(StringRef &Directory, StringRef &FileName, in getFile() argument 322 return cantFail(tryGetFile(Directory, FileName, Checksu in getFile() 326 setRootFile(StringRef Directory, StringRef FileName, Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source) setRootFile() argument [all...] |
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/ |
H A D | ExtractEngine.cpp | 6 #include "../../../Windows/FileName.h"
27 FString FileName;
member 40 if (!fi.Find(FileName))
in Process2() 53 options.filePath = fs2us(FileName);
in Process2() 103 t.FileName = fileName;
in ExtractArchive()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugChecksumsSubsection.cpp | 67 void DebugChecksumsSubsection::addChecksum(StringRef FileName, in addChecksum() argument 77 Entry.FileNameOffset = Strings.insert(FileName); in addChecksum() 110 uint32_t DebugChecksumsSubsection::mapChecksumOffset(StringRef FileName) const { in mapChecksumOffset() 111 uint32_t Offset = Strings.getIdForString(FileName); in mapChecksumOffset()
|
H A D | DebugInlineeLinesSubsection.cpp | 107 void DebugInlineeLinesSubsection::addExtraFile(StringRef FileName) { in addExtraFile() argument 108 uint32_t Offset = Checksums.mapChecksumOffset(FileName); in addExtraFile() 116 StringRef FileName, in addInlineSite() 118 uint32_t Offset = Checksums.mapChecksumOffset(FileName); in addInlineSite() 115 addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine) addInlineSite() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | Process.cpp | 30 const std::string& FileName) in FindInEnvPath() 32 assert(!path::is_absolute(FileName)); in FindInEnvPath() 47 path::append(FilePath, FileName); in FindInEnvPath() 29 FindInEnvPath(const std::string& EnvName, const std::string& FileName) FindInEnvPath() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DiagnosticInfo.h | 284 DiagnosticInfoSampleProfile(StringRef FileName, unsigned LineNum, in DiagnosticInfoSampleProfile() argument 287 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName), in DiagnosticInfoSampleProfile() 289 DiagnosticInfoSampleProfile(StringRef FileName, const Twine &Msg, in DiagnosticInfoSampleProfile() argument 291 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName), in DiagnosticInfoSampleProfile() 304 StringRef getFileName() const { return FileName; } in getFileName() 310 StringRef FileName; member in llvm::DiagnosticInfoSampleProfile 323 DiagnosticInfoPGOProfile(const char *FileName, const Twine &Msg, in DiagnosticInfoPGOProfile() argument 325 : DiagnosticInfo(DK_PGOProfile, Severity), FileName(FileNam in DiagnosticInfoPGOProfile() 339 const char *FileName; global() member in llvm::DiagnosticInfoPGOProfile [all...] |
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | logging.cc | 14 V8_Dcheck(loc.FileName(), static_cast<int>(loc.Line()), message); in DCheckImpl() 19 V8_Fatal(loc.FileName(), static_cast<int>(loc.Line()), "Check failed: %s.", in FatalImpl()
|
H A D | platform.cc | 21 V8_Fatal(loc.FileName(), static_cast<int>(loc.Line()), "%s", reason.c_str()); in Fatal() 34 V8_Fatal(loc.FileName(), static_cast<int>(loc.Line()), in operator ()()
|
/third_party/rust/crates/is-terminal/src/ |
H A D | lib.rs | 151 FileName: [u16; MAX_PATH as usize], in msys_tty_on() 155 FileName: [0; MAX_PATH as usize], in msys_tty_on() 168 let s = &name_info.FileName[..name_info.FileNameLength as usize / 2]; in msys_tty_on()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
H A D | DIPrinter.cpp | 33 // Prints source code around in the FileName the Line. 34 void DIPrinter::printContext(const std::string &FileName, int64_t Line) { in printContext() argument 39 MemoryBuffer::getFile(FileName); in printContext() 73 std::string Filename = Info.FileName; in print()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.h | 75 StringRef FileName; member 85 StringRef FileName; member 100 StringRef FileName; member
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | dbghelp.h | 47 typedef BOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData); 49 typedef BOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData); 59 HANDLE IMAGEAPI FindDebugInfoFile(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath); 60 HANDLE IMAGEAPI FindDebugInfoFileEx(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath,PFIND_DEBUG_FILE_CALLBACK Callback,PVOID CallerData); 61 BOOL IMAGEAPI SymFindFileInPath(HANDLE hprocess,LPSTR SearchPath,LPSTR FileName,PVOID id,DWORD two,DWORD three,DWORD flags,LPSTR FoundFile,PFINDFILEINPATHCALLBACK callback,PVOID context); 62 HANDLE IMAGEAPI FindExecutableImage(PSTR FileName,PSTR SymbolPath,PSTR ImageFilePath); 63 HANDLE IMAGEAPI FindExecutableImageEx(PSTR FileName,PSTR SymbolPath,PSTR ImageFilePath,PFIND_EXE_FILE_CALLBACK Callback,PVOID CallerData); 126 PIMAGE_DEBUG_INFORMATION IMAGEAPI MapDebugInformation(HANDLE FileHandle,PSTR FileName,PSTR SymbolPath,DWORD ImageBase); 469 PCHAR FileName; member 481 PCHAR FileName; member 488 PCHAR FileName; global() member 526 CHAR FileName[MAX_PATH]; global() member 544 CHAR FileName[MAX_PATH]; global() member 682 CHAR FileName[MAX_PATH + 1]; global() member [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | LockFileManager.h | 53 SmallString<128> FileName; member in llvm::LockFileManager 71 LockFileManager(StringRef FileName);
|
H A D | Process.h | 104 StringRef FileName, 108 StringRef FileName);
|
/third_party/rust/crates/syn/tests/common/ |
H A D | parse.rs | 12 use rustc_span::FileName; 22 FileName::Custom("test_precedence".to_string()), in librustc_expr()
|
/third_party/mesa3d/src/util/ |
H A D | u_debug_symbol.c | 217 Line.FileName = NULL; in debug_symbol_name_dbghelp() 220 if (Line.FileName) { in debug_symbol_name_dbghelp() 221 snprintf(buf, size, "%s at %s:%lu", pSymbol->Name, Line.FileName, Line.LineNumber); in debug_symbol_name_dbghelp()
|