HomeSort by relevance Sort by last modified time
    Searched refs:Dir (Results 26 - 50 of 60) sorted by null

12 3

  /external/robolectric/
update-downloads.rb 15 Dir.glob('pages/downloads/*.jar').sort.reverse.each do |f|
  /external/clang/include/clang/Basic/
FileManager.h 64 const DirectoryEntry *Dir; // Directory file lives in.
102 const DirectoryEntry *getDir() const { return Dir; }
272 StringRef getCanonicalName(const DirectoryEntry *Dir);
  /external/clang/include/clang/Lex/
ModuleMap.h 164 void setBuiltinIncludeDir(const DirectoryEntry *Dir) {
165 BuiltinIncludeDir = Dir;
HeaderSearch.h 146 /// consecutively. Requests for <x> search the current dir first, then each
249 void AddSearchPath(const DirectoryLookup &dir, bool isAngled) {
251 SearchDirs.insert(SearchDirs.begin() + idx, dir);
300 void setDirectoryHasModuleMap(const DirectoryEntry* Dir) {
301 DirectoryHasModuleMap[Dir] = true;
499 /// \param Dir The framework directory (e.g., ModuleName.framework).
506 const DirectoryEntry *Dir,
583 /// \param Dir The directory where we will look for a module map file.
587 LoadModuleMapResult loadModuleMapFile(const DirectoryEntry *Dir);
  /development/tools/findunused/
find_unused_resources.rb 92 Dir.glob(glob).each { |filename|
105 def findUnusedResources(dir)
111 Dir.glob("#{dir}/res/**/*.xml").each { |filename|
131 Dir.glob("#{dir}/AndroidManifest.xml").each { |filename|
143 recordJavaUses("#{dir}/src/**/*.java")
161 result.appDir = dir
168 def findApps(dir)
170 Dir.glob("#{dir}/**/res").each { |filename
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 180 # (Dir.pwd by default), this method returns a string containing
187 def self.relative_path( target, reference = Dir.pwd )
210 class Dir
213 entries = Dir.entries( directory ) - DOTS
220 $VERBOSE and $stderr.puts( "INFO: Dir.mkpath(%p)" % path )
224 Dir.mkdir( path )
  /external/webkit/Tools/Scripts/
check-for-webkit-framework-include-consistency 34 Dir.chdir base_directory
  /external/clang/lib/Lex/
ModuleMap.cpp 155 const DirectoryEntry *Dir = File->getDir();
162 StringRef DirName = SourceMgr->getFileManager().getCanonicalName(Dir);
168 = UmbrellaDirs.find(Dir);
231 SkippedDirs.push_back(Dir);
239 Dir = SourceMgr->getFileManager().getDirectory(DirName);
240 } while (Dir);
250 const DirectoryEntry *Dir = Header->getDir();
252 StringRef DirName = Dir->getName();
258 = UmbrellaDirs.find(Dir);
297 SkippedDirs.push_back(Dir);
    [all...]
PPLexerChange.cpp 211 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir,
220 if (CurDir == Dir) {
378 const DirectoryEntry *Dir = Mod->getUmbrellaDir();
380 for (recursive_directory_iterator Entry(Dir->getName(), EC), End;
396 computeRelativePath(FileMgr, Dir, Header, RelativePath);
  /external/clang/lib/Frontend/
FrontendActions.cpp 191 for (llvm::sys::fs::recursive_directory_iterator Dir(DirNative.str(), EC),
193 Dir != DirEnd && !EC; Dir.increment(EC)) {
196 if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path()))
203 if (const FileEntry *Header = FileMgr.getFile(Dir->path())) {
210 addHeaderInclude(Dir->path(), Includes, LangOpts);
FrontendAction.cpp 247 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
248 Dir != DirEnd && !EC; Dir.increment(EC)) {
250 if (ASTReader::isAcceptableASTFile(Dir->path(), FileMgr,
254 PPOpts.ImplicitPCHInclude = Dir->path();
InitHeaderSearch.cpp 184 // Add the base dir
195 // Add the backward dir
519 // If this isn't the first time we've seen this dir, remove it.
523 // If this isn't the first time we've seen this framework dir, remove it.
527 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
533 // If we have a normal #include dir/framework/headermap that is shadowed
535 // ignore the user's request and drop the user dir... keeping the system
536 // dir. This is weird, but required to emulate GCC's search path correctly.
541 // Find the dir that this is the same of.
558 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?")
    [all...]
  /external/clang/include/clang/Driver/
Driver.h 61 std::string Dir;
207 return Dir.c_str();
  /external/clang/lib/Basic/
FileManager.cpp 52 /// represent a dir name that doesn't exist on the disk.
325 // same inode (this occurs on Unix-like systems when one dir is
397 // This occurs when one dir is symlinked to another, for example.
415 UFE.Dir = DirInfo;
482 UFE->Dir = DirInfo;
626 StringRef FileManager::getCanonicalName(const DirectoryEntry *Dir) {
630 = CanonicalDirNames.find(Dir);
634 StringRef CanonicalName(Dir->getName());
636 if (realpath(Dir->getName(), CanonicalNameBuf)) {
643 CanonicalDirNames.insert(std::make_pair(Dir, CanonicalName))
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 686 llvm::sys::Path Dir, Filename;
693 UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
706 llvm::sys::Path Dir = llvm::sys::Path::GetTemporaryDirectory(&ErrMsg);
710 llvm::sys::Path Filename = Dir;
725 return new UbigraphViz(Stream.take(), Dir, Filename);
762 UbigraphViz::UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
764 : Out(out), Dir(dir), Filename(filename), Cntr(0) {
786 Dir.eraseFromDisk(true);
  /external/chromium/build/
install-build-deps.sh 373 Dir::Cache "${tmp}/cache";
374 Dir::Cache::Archives "${tmp}/";
375 Dir::State::Lists "${tmp}/apt/lists/";
376 Dir::State::status "${tmp}/status";
  /external/clang/lib/Driver/
Driver.cpp 61 Dir = llvm::sys::path::parent_path(ClangExecutable);
273 Dir = InstalledDir = A->getValue();
287 // ccc-install-dir) can change 'Dir'.
289 SmallString<128> P(Dir);
    [all...]
ToolChains.cpp 210 if (getDriver().getInstalledDir() != getDriver().Dir)
211 getProgramPaths().push_back(getDriver().Dir);
213 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
215 if (getDriver().getInstalledDir() != getDriver().Dir)
216 getProgramPaths().push_back(getDriver().Dir);
537 // it was previously found in the gcc lib dir. However, for all the Darwin
580 // only present in the gcc lib dir, which makes it hard to find).
    [all...]
  /external/clang/tools/scan-build/
c++-analyzer 96 my $Dir = "$HtmlDir/failures";
97 mkpath $Dir;
113 DIR => $Dir);
215 my $dir;
218 $dir = getcwd();
219 print STDERR "\n[LOCATION]: $dir\n";
232 print STDERR "#SHELL (cd '$dir' && @PrintArgs)\n";
249 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir);
294 my $dir = "$HtmlDir/failures"
    [all...]
ccc-analyzer 96 my $Dir = "$HtmlDir/failures";
97 mkpath $Dir;
113 DIR => $Dir);
215 my $dir;
218 $dir = getcwd();
219 print STDERR "\n[LOCATION]: $dir\n";
232 print STDERR "#SHELL (cd '$dir' && @PrintArgs)\n";
249 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir);
294 my $dir = "$HtmlDir/failures"
    [all...]
  /external/chromium/third_party/libjingle/source/talk/site_scons/
talk.py 149 env.Dir(at).addRepository(env.Dir(path))
  /external/compiler-rt/make/
lib_platforms.mk 43 $$(error $(Dir): variable '$$(var)' was not undefined)))
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
browser_harness.rb 241 check_files = Dir.glob("*core*")
243 check_files = check_files + Dir.glob("#{MAC_CRASH_PATH}/*.*")
  /external/compiler-rt/
Makefile 68 "$(foreach key,$(AvailableIn.$(fn)),$($(key).Dir))";)
92 %/.dir:
104 Dir := .
155 $(Tmp.ObjPath)/libcompiler_rt.$(Tmp.LibrarySuffix): $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
161 .PRECIOUS: $(Tmp.ObjPath)/.dir
206 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
211 $(Tmp.ObjPath)/libcompiler_rt.dylib: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
215 $(Tmp.ObjPath)/libcompiler_rt.so: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
219 .PRECIOUS: $(Tmp.ObjPath)/.dir
232 $(call Set,Tmp.SubDir,$($(Tmp.SubDirKey).Dir))
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
ruby.php 77 'Date', 'DateTime', 'Delegator', 'Dir', 'EOFError', 'ERB',

Completed in 673 milliseconds

12 3