| /src/external/gpl3/gdb/dist/gnulib/import/ |
| filename.h | 1 /* Basic filename support macros. 31 /* Filename support. 34 HAS_DEVICE(Filename) tests whether Filename contains a device 36 FILE_SYSTEM_PREFIX_LEN(Filename) length of the device specification 37 at the beginning of Filename, 47 IS_ABSOLUTE_FILE_NAME(Filename) 48 tests whether Filename is independent of 50 IS_RELATIVE_FILE_NAME(Filename) 51 tests whether Filename may be concatenate [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| filename.h | 1 /* Basic filename support macros. 31 /* Filename support. 34 HAS_DEVICE(Filename) tests whether Filename contains a device 36 FILE_SYSTEM_PREFIX_LEN(Filename) length of the device specification 37 at the beginning of Filename, 47 IS_ABSOLUTE_FILE_NAME(Filename) 48 tests whether Filename is independent of 50 IS_RELATIVE_FILE_NAME(Filename) 51 tests whether Filename may be concatenate [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| ToolOutputFile.cpp | 19 static bool isStdout(StringRef Filename) { return Filename == "-"; } 21 ToolOutputFile::CleanupInstaller::CleanupInstaller(StringRef Filename) 22 : Filename(std::string(Filename)), Keep(false) { 24 if (!isStdout(Filename)) 25 sys::RemoveFileOnSignal(Filename); 29 if (isStdout(Filename)) 34 sys::fs::remove(Filename); 38 sys::DontRemoveFileOnSignal(Filename); [all...] |
| GraphWriter.cpp | 79 static std::string replaceIllegalFilenameChars(std::string Filename, 88 std::replace(Filename.begin(), Filename.end(), IllegalChar, 92 return Filename; 97 SmallString<128> Filename; 103 // Replace illegal characters in graph Filename with '_' if needed 107 sys::fs::createTemporaryFile(CleansedName, "dot", FD, Filename); 113 errs() << "Writing '" << Filename << "'... "; 114 return std::string(Filename.str()); 119 StringRef Filename, bool wait [all...] |
| PluginLoader.cpp | 25 void PluginLoader::operator=(const std::string &Filename) { 28 if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &Error)) { 29 errs() << "Error opening '" << Filename << "': " << Error 32 Plugins->push_back(Filename);
|
| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| SupportBindings.h | 23 void LLVMLoadLibraryPermanently2(const char *Filename, char **ErrMsg);
|
| SupportBindings.cpp | 18 void LLVMLoadLibraryPermanently2(const char *Filename, char **ErrMsg) { 20 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Filename, &ErrMsgStr)) {
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| InMemoryModuleCache.cpp | 15 InMemoryModuleCache::getPCMState(llvm::StringRef Filename) const { 16 auto I = PCMs.find(Filename); 25 InMemoryModuleCache::addPCM(llvm::StringRef Filename, 27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer))); 33 InMemoryModuleCache::addBuiltPCM(llvm::StringRef Filename, 35 auto &PCM = PCMs[Filename]; 44 InMemoryModuleCache::lookupPCM(llvm::StringRef Filename) const { 45 auto I = PCMs.find(Filename); 51 bool InMemoryModuleCache::isPCMFinal(llvm::StringRef Filename) const { 52 return getPCMState(Filename) == Final [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslfiles.c | 56 char *Filename); 111 AslGbl_Files[i].Filename = NULL; 115 AslGbl_Files[ASL_FILE_STDOUT].Filename = "STDOUT"; 126 AslGbl_Files[ASL_FILE_STDERR].Filename = "STDERR"; 135 * PARAMETERS: Filename - File name to be searched 145 char *Filename) 152 if (!strcmp (Filename, Current->Files[ASL_FILE_INPUT].Filename)) 181 char *PrevFilename = Current->Files[ASL_FILE_INPUT].Filename; 186 if (!strcmp(Current->Files[ASL_FILE_INPUT].Filename, InputFilename) [all...] |
| aslstartup.c | 153 Status = FlIsFileAsciiSource (Info->Filename, FALSE); 193 Info->Handle = fopen (Info->Filename, "rb"); 197 Info->Filename); 261 AslGbl_Files[ASL_FILE_INPUT].Filename, AslGbl_OutputFilenamePrefix, 262 &AslGbl_Files[ASL_FILE_INPUT].Filename); 277 * AslGbl_Files[ASL_FILE_INPUT].Filename was replaced with the 283 AslGbl_Files[ASL_FILE_INPUT].Filename); 295 * PARAMETERS: Filename - Name of the file 305 char *Filename) 319 * files and the optional AML filename embedded in the input fil [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/profile/ |
| InstrProfilingFile.c | 74 const char *Filename; 77 Filename = __llvm_profile_CurrentFilename; 78 if (!Filename || !Filename[0]) 82 if (strchr(Filename, '/')) { 83 char *Copy = malloc(strlen(Filename) + 1); 84 strcpy(Copy, Filename); 90 File = fopen(Filename, "w"); 96 static void setFilename(const char *Filename, int OwnsFilename) { 97 /* Check if this is a new filename and therefore needs truncation. * [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| ToolOutputFile.h | 33 std::string Filename; 38 StringRef getFilename() { return Filename; } 39 explicit CleanupInstaller(StringRef Filename); 53 ToolOutputFile(StringRef Filename, std::error_code &EC, 56 ToolOutputFile(StringRef Filename, int FD); 61 /// Return the filename initialized with.
|
| FileUtilities.h | 39 /// If an exception is thrown from a region, the object removes the filename 43 SmallString<128> Filename; 48 explicit FileRemover(const Twine& filename, bool deleteIt = true) 50 filename.toVector(Filename); 56 sys::fs::remove(Filename); 63 void setFile(const Twine& filename, bool deleteIt = true) { 66 sys::fs::remove(Filename); 69 Filename.clear(); 70 filename.toVector(Filename) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Passes/ |
| PassPlugin.cpp | 16 Expected<PassPlugin> PassPlugin::Load(const std::string &Filename) { 19 sys::DynamicLibrary::getPermanentLibrary(Filename.c_str(), &Error); 22 Filename + "': " + Error, 25 PassPlugin P{Filename, Library}; 33 Filename + "'. Is this a legacy plugin?", 40 Twine("Wrong API version on plugin '") + Filename + "'. Got version " + 47 Filename + "'.'",
|
| /src/sys/external/bsd/acpica/dist/tools/acpidump/ |
| apfiles.c | 58 * PARAMETERS: Pathname - Output filename 100 * PARAMETERS: Pathname - Output filename 150 * filename from the table signature. 159 char Filename[ACPI_NAMESEG_SIZE + 16]; 170 /* Construct lower-case filename from the table local signature */ 174 ACPI_COPY_NAMESEG (Filename, ACPI_RSDP_NAME); 178 ACPI_COPY_NAMESEG (Filename, Table->Signature); 181 Filename[0] = (char) tolower ((int) Filename[0]); 182 Filename[1] = (char) tolower ((int) Filename[1]) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/ |
| PassPlugin.h | 67 static Expected<PassPlugin> Load(const std::string &Filename); 69 /// Get the filename of the loaded plugin. 70 StringRef getFilename() const { return Filename; } 87 PassPlugin(const std::string &Filename, const sys::DynamicLibrary &Library) 88 : Filename(Filename), Library(Library), Info() {} 90 std::string Filename;
|
| /src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
| axmain.c | 96 char *Filename; 173 /* Input filename is always required */ 175 Filename = argv[AcpiGbl_Optind]; 176 if (!Filename) 178 printf ("Missing required input filename\n"); 188 Status = AxExtractTables (Filename, NULL, AX_OPTIONAL_TABLES); 193 Status = AxExtractToMultiAmlFile (Filename); 198 Status = AxListAllTables (Filename); 203 Status = AxExtractTables (Filename, AcpiGbl_Optarg, AX_REQUIRED_TABLE); 211 Status = AxExtractTables (Filename, "DSDT", AX_REQUIRED_TABLE) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| InMemoryModuleCache.h | 60 State getPCMState(llvm::StringRef Filename) const; 62 /// Store the PCM under the Filename. 67 llvm::MemoryBuffer &addPCM(llvm::StringRef Filename, 70 /// Store a just-built PCM under the Filename. 75 llvm::MemoryBuffer &addBuiltPCM(llvm::StringRef Filename, 83 bool tryToDropPCM(llvm::StringRef Filename); 89 void finalizePCM(llvm::StringRef Filename); 92 llvm::MemoryBuffer *lookupPCM(llvm::StringRef Filename) const; 97 bool isPCMFinal(llvm::StringRef Filename) const; 102 bool shouldBuildPCM(llvm::StringRef Filename) const [all...] |
| /src/sys/external/bsd/acpica/dist/common/ |
| adfile.c | 59 char *Filename, 75 * DESCRIPTION: Build an output filename from an ACPI table ID string 111 * PARAMETERS: Filename - name of file 123 char *Filename, 131 File = fopen (Filename, "wb"); 134 printf ("Could not open file %s\n", Filename); 141 printf ("Could not write to file %s\n", Filename); 171 char *Filename; 174 Filename = AdGenerateFilename (TableName, OemTableId); 175 AdWriteBuffer (Filename, (char *) Table, Length) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/ |
| llvm-dwarfdump.h | 35 const Twine &Filename); 38 const Twine &Filename, raw_ostream &OS); 40 const Twine &Filename, raw_ostream &OS);
|
| /src/external/apache2/llvm/dist/clang/include/clang/DirectoryWatcher/ |
| DirectoryWatcher.h | 94 /// Filename that this event is related to or an empty string in 96 std::string Filename; 98 Event(EventKind Kind, llvm::StringRef Filename) 99 : Kind(Kind), Filename(Filename) {}
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/ |
| RemarkStreamer.h | 47 /// The filename that the remark diagnostics are emitted to. 48 const Optional<std::string> Filename; 52 Optional<StringRef> Filename = None); 54 /// Return the filename that the remark diagnostics are emitted to. 56 return Filename ? Optional<StringRef>(*Filename) : None;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| Support.h | 29 LLVMBool LLVMLoadLibraryPermanently(const char* Filename);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| SnippetFile.h | 28 // Reads code snippets from file `Filename`. 30 StringRef Filename);
|
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| BinaryHolder.cpp | 23 getArchiveAndObjectName(StringRef Filename) { 24 StringRef Archive = Filename.substr(0, Filename.rfind('(')); 25 StringRef Object = Filename.substr(Archive.size() + 1).drop_back(); 29 static bool isArchive(StringRef Filename) { return Filename.endswith(")"); } 32 getMachOFatMemoryBuffers(StringRef Filename, MemoryBuffer &Mem, 39 Buffers.emplace_back(ObjData, Filename); 45 StringRef Filename, 47 StringRef ArchiveFilename = getArchiveAndObjectName(Filename).first [all...] |