HomeSort by relevance Sort by last modified time
    Searched defs:Dir (Results 1 - 13 of 13) sorted by null

  /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/clang/include/clang/Lex/
DirectoryLookup.h 40 /// Dir - This is the actual directory that we're referring to for a normal
42 const DirectoryEntry *Dir;
62 /// 'dir'.
63 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
68 u.Dir = dir;
90 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
95 return isFramework() ? u.Dir : 0;
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 8 enum Dir { L, R };
11 Dir dir; member in struct:Action
21 constexpr Tape(const Tape &old, Dir dir) :
22 l(dir == L ? old.l ? old.l->l : 0 : &old),
23 val(dir == L ? old.l ? old.l->val : false
25 r(dir == R ? old.r ? old.r->r : 0 : &old) {}
31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir);
    [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/clang/lib/Lex/
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);
HeaderSearch.cpp 304 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
305 if (!Dir)
312 TopFrameworkDir = Dir;
344 // Otherwise, construct the path to this framework dir.
363 // If the framework dir doesn't exist, we fail.
364 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
365 if (Dir == 0) return 0;
428 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkPath);
429 if (!Dir)
590 // This file is a system header or C++ unfriendly if the dir is
    [all...]
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...]