Searched refs:Directory (Results 1 - 25 of 71) sorted by relevance

123

/external/llvm/utils/
H A Dfindsym.pl12 my $Directory = $ARGV[0];
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
H A DGenLibDeps.pl31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
110 open DEFS, "$nmPath -sg $Directory/$lib|";
151 open UDEFS, "$nmPath -Aup $Directory/$lib|";
167 open DEFS, "$nmPath -g $Directory/$lib|";
181 open DEFS, "$nmPath -g $Directory/$obj |";
206 "$nmPath -u $Directory/
[all...]
/external/clang/include/clang/Tooling/
H A DCompilationDatabase.h45 CompileCommand(Twine Directory, Twine Filename, argument
47 : Directory(Directory.str()),
52 std::string Directory; member in struct:clang::tooling::CompileCommand
152 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) = 0;
185 /// \param Directory The base directory used in the FixedCompilationDatabase.
188 Twine Directory = ".");
192 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/
H A DAssetFilter.java25 Image("i"), Audio("a"), Text("t"), Binary("b"), Directory("d"); enum constant in enum:AssetFilter.AssetType
/external/libexif/libexif/
H A Di18n.h43 # define bindtextdomain(Domain,Directory)
46 # define bindtextdomain(Domain,Directory) (Domain)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DStats.cs37 using Directory = System.IO.Directory;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp113 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage;
117 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage;
132 EXPECT_EQ(Directory2, Commands[0].Directory) << ErrorMessage;
136 EXPECT_EQ(Directory1, Commands[1].Directory) << ErrorMessage;
157 StringRef Directory("//net/dir");
165 ("[{\"directory\":\"" + Directory + "\","
170 EXPECT_EQ(Directory, FoundCommand.Directory) << ErrorMessage;
256 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage;
260 StringRef Directory("//ne
[all...]
/external/clang/lib/Tooling/
H A DCompilationDatabase.cpp57 findCompilationDatabaseFromDirectory(StringRef Directory, argument
61 while (!Directory.empty()) {
65 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage))
69 ErrorStream << "No compilation database found in " << Directory.str()
74 Directory = llvm::sys::path::parent_path(Directory);
84 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath); local
87 findCompilationDatabaseFromDirectory(Directory, ErrorMessage);
284 int &Argc, const char *const *Argv, Twine Directory) {
294 return new FixedCompilationDatabase(Directory, StrippedArg
283 loadFromCommandLine( int &Argc, const char *const *Argv, Twine Directory) argument
298 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) argument
[all...]
H A DJSONCompilationDatabase.cpp122 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override {
123 SmallString<1024> JSONDatabasePath(Directory);
261 llvm::yaml::ScalarNode *Directory = nullptr; local
290 Directory = ValueString;
320 if (!Directory) {
330 Directory->getValue(DirectoryStorage));
336 auto Cmd = CompileCommandRef(Directory, File, *Command);
/external/avahi/avahi-common/
H A Di18n.h46 #define bindtextdomain(Domain,Directory) (Domain)
/external/proguard/bin/
H A Dproguard.bat8 REM "\"C:/My Directory/My File.txt\""
H A Dproguardgui.bat8 REM "\"C:/My Directory/My File.txt\""
H A Dretrace.bat8 REM "\"C:/My Directory/My File.txt\""
/external/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp58 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory, argument
64 if (!Directory.empty())
65 O << Directory << "/"; local
/external/clang/lib/AST/
H A DExternalASTSource.cpp33 if (M.Directory)
34 Path = M.Directory->getName();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DStats.cs117 System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(absoluteFilename));
/external/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp43 std::string Directory; member in class:__anon1754::HTMLDiagnostics
79 : Directory(prefix), createdDir(false), noDir(false), PP(pp), AnalyzerOpts(AnalyzerOpts) {
108 if (std::error_code ec = llvm::sys::fs::create_directories(Directory)) {
110 << Directory << "': " << ec.message() << '\n';
295 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
304 llvm::errs() << "warning: could not create file in '" << Directory
321 llvm::sys::path::append(Model, Directory,
/external/llvm/include/llvm/MC/
H A DMCDwarf.h206 unsigned getFile(StringRef &Directory, StringRef &FileName,
221 unsigned getFile(StringRef Directory, StringRef FileName) { argument
222 return Header.getFile(Directory, FileName);
238 unsigned getFile(StringRef &Directory, StringRef &FileName,
/external/opencv3/samples/android/hello-android/
H A Drun.cmd26 (PUSHD "%ANDROID_SDK%" 2>NUL && POPD) || (ECHO. & ECHO Directory "%ANDROID_SDK%" specified by ANDROID_SDK variable does not exist & GOTO end)
/external/llvm/lib/MC/
H A DMCDwarf.cpp304 // the Directory num
331 unsigned MCDwarfLineTable::getFile(StringRef &Directory, StringRef &FileName, argument
333 return Header.getFile(Directory, FileName, FileNumber);
336 unsigned MCDwarfLineTableHeader::getFile(StringRef &Directory, argument
339 if (Directory == CompilationDir)
340 Directory = "";
343 Directory = "";
352 std::make_pair((Directory + Twine('\0') + FileName).toStringRef(Buffer),
367 if (Directory.empty()) {
371 Directory
[all...]
H A DMCAsmStreamer.cpp193 unsigned EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
879 StringRef Directory,
886 FileNo = Table.getFile(Directory, Filename, FileNo);
894 if (!UseDwarfDirectory && !Directory.empty()) {
896 Directory = "";
898 FullPathName = Directory;
900 Directory = "";
906 if (!Directory.empty()) {
907 PrintQuotedString(Directory, OS);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h237 StringRef Directory);
336 virtual unsigned getOrCreateSourceID(StringRef File, StringRef Directory) = 0;
382 unsigned getOrCreateSourceID(StringRef File, StringRef Directory) override;
/external/clang/lib/Lex/
H A DModuleMap.cpp704 Result->Directory = FrameworkDir;
1023 const DirectoryEntry *Directory; member in class:clang::ModuleMapParser
1085 const DirectoryEntry *Directory,
1089 ModuleMapFile(ModuleMapFile), Directory(Directory),
1459 ActiveModule->Directory = Directory;
1544 inferFrameworkLink(ActiveModule, Directory, SourceMgr.getFileManager());
1596 ModuleMapFileName += Directory->getName();
1604 ? Directory
1080 ModuleMapParser(Lexer &L, SourceManager &SourceMgr, const TargetInfo *Target, DiagnosticsEngine &Diags, ModuleMap &Map, const FileEntry *ModuleMapFile, const DirectoryEntry *Directory, const DirectoryEntry *BuiltinIncludeDir, bool IsSystem) argument
[all...]
/external/clang/tools/libclang/
H A DCXCompilationDatabase.cpp111 return cxstring::createRef(cmd->Directory.c_str());
/external/elfutils/tests/
H A Drun-readelf-line.sh55 Directory table:
110 Directory table:
160 Directory table:

Completed in 693 milliseconds

123