HomeSort by: relevance | last modified time | path
    Searched refs:Directory (Results 1 - 25 of 77) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/utils/
findsym.pl 14 my $Directory = $ARGV[0];
17 # Open the directory and read its contents, sorting by name and differentiating
19 opendir DIR,$Directory;
28 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
GenLibDeps.pl 31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
33 die "First argument must specify the directory containing LLVM libs\n";
67 # Open the directory and read its contents, sorting by name and differentiating
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
111 open DEFS, "$nmPath -sg $Directory/$lib|";
153 open UDEFS, "$nmPath -Aup $Directory/$lib|";
169 open DEFS, "$nmPath -g $Directory/$lib|"
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
CompilationDatabasePluginRegistry.h 32 /// Loads a compilation database from a build directory.
36 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) = 0;
CompilationDatabase.h 18 // To create a CompilationDatabase from a build directory one can call
43 /// Specifies the working directory and command of a compilation.
46 CompileCommand(const Twine &Directory, const Twine &Filename,
48 : Directory(Directory.str()), Filename(Filename.str()),
51 /// The working directory the command was executed from.
52 std::string Directory;
69 return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
91 /// Loads a compilation database from a build directory
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
CompilationDatabase.cpp 80 findCompilationDatabaseFromDirectory(StringRef Directory,
84 while (!Directory.empty()) {
88 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage))
92 ErrorStream << "No compilation database found in " << Directory.str()
93 << " or any parent directory\n" << LoadErrorMessage;
97 Directory = llvm::sys::path::parent_path(Directory);
107 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath);
110 findCompilationDatabaseFromDirectory(Directory, ErrorMessage);
127 ErrorMessage = ("Could not auto-detect compilation database from directory \""
    [all...]
JSONCompilationDatabase.cpp 166 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override {
167 SmallString<1024> JSONDatabasePath(Directory);
354 llvm::yaml::ScalarNode *Directory = nullptr;
392 if (KeyValue == "directory") {
393 Directory = ValueString;
416 if (!Directory) {
417 ErrorMessage = "Missing key: \"directory\".";
426 Directory->getValue(DirectoryStorage));
433 auto Cmd = CompileCommandRef(Directory, File, *Command, Output);
ExpandResponseFilesCompilationDatabase.cpp 64 llvm::StringRef(Cmd.Directory), *FS);
Tooling.cpp 345 // The driver is only aware of the VFS working directory, but some clients
469 // the working directory.
483 // Remember the working directory in case we need to restore it.
489 llvm::errs() << "Could not get working directory: "
518 CompileCommand.Directory))
520 Twine(CompileCommand.Directory) + "\"!");
525 if (SeenWorkingDirectories.insert(CompileCommand.Directory).second)
  /src/crypto/external/cpl/trousers/dist/src/tspi/gtk/
support.h 41 # define bindtextdomain(Domain,Directory) (Domain)
61 /* Use this function to set the directory containing installed pixmaps. */
62 void __tspi_add_pixmap_directory (const gchar *directory);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCDwarf.h 59 // The base name of the file without its directory path.
62 // The index into the list of directory names for this file name.
234 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName,
258 void setRootFile(StringRef Directory, StringRef FileName,
261 CompilationDir = std::string(Directory);
288 void maybeSetRootFile(StringRef Directory, StringRef FileName,
293 Header.setRootFile(Directory, FileName, Checksum, Source);
296 unsigned getFile(StringRef Directory, StringRef FileName,
300 return cantFail(Header.tryGetFile(Directory, FileName, Checksum, Source,
320 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 61 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory,
67 if (!Directory.empty())
68 O << Directory << "/";
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Minidump.h 27 /// contents are badly corrupted (i.e. we cannot read the stream directory).
35 /// Returns the list of streams (stream directory entries) in this file.
36 ArrayRef<minidump::Directory> streams() const { return Streams; }
38 /// Returns the raw contents of the stream given by the directory entry.
39 ArrayRef<uint8_t> getRawStream(const minidump::Directory &Stream) const {
165 ArrayRef<minidump::Directory> Streams,
185 ArrayRef<minidump::Directory> Streams;
  /src/usr.bin/make/unit-tests/
posix1.exp 16 Directory and filename parts of local variables
56 Directory and filename parts of local variables
102 Directory and filename parts of local variables
149 Directory and filename parts of local variables
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FileCollector.cpp 60 StringRef Directory = sys::path::parent_path(SrcPath);
62 // Use real_path to fix any symbolic link component present in the directory
66 auto DirWithSymlink = CachedDirs.find(Directory);
70 if (sys::fs::real_path(Directory, RealPath))
72 CachedDirs[Directory] = std::string(RealPath.str());
185 // Get the status of the original file/directory.
197 // Create directory tree.
206 // Construct a directory when it's just a directory entry.
  /src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp 177 // Search for the header file within the module's home directory.
178 auto *Directory = M->Directory;
179 SmallString<128> FullPathName(Directory->getName());
232 if (!NormalHdrFile && Directory->getName().endswith(".framework")) {
236 FullPathName.assign(Directory->getName());
295 !BuiltinIncludeDir || BuiltinIncludeDir == Mod->Directory ||
415 assert(Dir && "file in no directory");
423 // Keep walking up the directory hierarchy, looking for a directory wit
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MinidumpEmitter.cpp 172 static Directory layout(BlobAllocator &File, Stream &S) {
173 Directory Result;
234 std::vector<Directory> StreamDirectory(Obj.Streams.size());
  /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
Vsix.cs 86 return Directory.GetParent(document.FilePath).ToString();
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXCompilationDatabase.cpp 109 return cxstring::createRef(cmd->Directory.c_str());
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCDwarf.cpp 337 // First the directory table.
342 MCOS->emitInt8(0); // Terminate the directory list.
349 MCOS->emitULEB128IntValue(MCDwarfFiles[i].DirIndex); // Directory number.
366 MCOS->emitULEB128IntValue(DwarfFile.DirIndex); // Directory number.
386 // The directory format, which is just a list of the directory paths. In a
394 // Try not to emit an empty compilation directory.
404 // The list of directory paths. Compilation directory comes first.
414 // directory index. We don't track file size/timestamp so don't emit the
    [all...]
  /src/share/mk/
bsd.kinc.mk 5 # INCSDIR Directory to install includes into (and/or make, and/or
30 # make sure the directory is OK, and install includes.
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Minidump.h 31 /// file as a minidump file, and gives the location of the stream directory.
118 /// minidump stream directory is an array of entries of this type, with its size
120 struct Directory {
124 static_assert(sizeof(Directory) == 12, "");
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 62 std::string Directory;
72 : DiagOpts(std::move(DiagOpts)), Directory(OutputDir), PP(pp),
143 // directory isn't specified, it acts like if it was in the minimal text
213 // Create the HTML directory if it is missing.
216 if (std::error_code ec = llvm::sys::fs::create_directories(Directory)) {
217 llvm::errs() << "warning: could not create directory '"
218 << Directory << "': " << ec.message() << '\n';
271 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
280 llvm::errs() << "warning: could not create file in '" << Directory
297 llvm::sys::path::append(Model, Directory,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Minidump.cpp 123 auto ExpectedStreams = getDataSliceAs<Directory>(Data, Hdr.StreamDirectoryRVA,
148 // Update the directory map, checking for duplicate stream types.
  /src/external/gpl2/texinfo/dist/util/
gen-dir-node 3 # Generate the top-level Info node, given a directory of Info files
13 # skeleton file, it goes through the remaining files in the directory
34 echo usage: $0 info-directory [ skeleton-file ] 1>&2
43 echo "$0: first argument must specify a directory"
61 This (the Directory node) gives a menu of major topics.
149 # remove the name from the directory listing
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c 244 value Directory) {
247 String_val(Directory),
248 caml_string_length(Directory));
349 const char *Directory = LLVMDIFileGetDirectory(File, &Len);
350 return cstr_to_string(Directory, Len);

Completed in 31 milliseconds

1 2 3 4