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

  /external/compiler-rt/
Makefile 68 "$(foreach key,$(AvailableIn.$(fn)),$($(key).Dir))";)
92 %/.dir:
104 Dir := .
146 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
152 .PRECIOUS: $(Tmp.ObjPath)/.dir
186 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
191 .PRECIOUS: $(Tmp.ObjPath)/.dir
204 $(call Set,Tmp.SubDir,$($(Tmp.SubDirKey).Dir))
222 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.s $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
225 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.S $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
    [all...]
  /frameworks/compile/libbcc/runtime/
Makefile 68 "$(foreach key,$(AvailableIn.$(fn)),$($(key).Dir))";)
92 %/.dir:
104 Dir := .
146 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
152 .PRECIOUS: $(Tmp.ObjPath)/.dir
185 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
190 .PRECIOUS: $(Tmp.ObjPath)/.dir
203 $(call Set,Tmp.SubDir,$($(Tmp.SubDirKey).Dir))
215 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.s $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
218 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.S $(Tmp.Dependencies) $(Tmp.ObjPath)/.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;
66 /// 'dir'.
67 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
72 u.Dir = dir;
94 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
99 return isFramework() ? u.Dir : 0;
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 7 enum Dir { L, R };
10 Dir dir; member in struct:Action
20 constexpr Tape(const Tape &old, Dir dir) :
21 l(dir == L ? old.l ? old.l->l : 0 : &old),
22 val(dir == L ? old.l ? old.l->val : false
24 r(dir == R ? old.r ? old.r->r : 0 : &old) {}
30 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 207 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir,
216 if (CurDir == Dir) {
363 const DirectoryEntry *Dir = Mod->getUmbrellaDir();
365 for (recursive_directory_iterator Entry(Dir->getName(), EC), End;
381 computeRelativePath(FileMgr, Dir, Header, RelativePath);
HeaderSearch.cpp 290 // Otherwise, construct the path to this framework dir.
309 // If the framework dir doesn't exist, we fail.
310 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
311 if (Dir == 0) return 0;
503 // This file is a system header or C++ unfriendly if the dir is.
607 // If the framework dir doesn't exist, we fail.
608 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
609 if (Dir == 0) return 0;
613 CacheLookup.getValue().Directory = Dir;
805 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName)
    [all...]
ModuleMap.cpp 111 const DirectoryEntry *Dir = File->getDir();
113 StringRef DirName = Dir->getName();
119 = UmbrellaDirs.find(Dir);
176 SkippedDirs.push_back(Dir);
184 Dir = SourceMgr->getFileManager().getDirectory(DirName);
185 } while (Dir);
196 const DirectoryEntry *Dir = Header->getDir();
198 StringRef DirName = Dir->getName();
204 = UmbrellaDirs.find(Dir);
237 SkippedDirs.push_back(Dir);
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 62 const DirectoryEntry *Dir; // Directory file lives in.
101 const DirectoryEntry *getDir() const { return Dir; }
  /external/clang/include/clang/Driver/
Driver.h 65 std::string Dir;
226 return Dir.c_str();
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 161 StringRef Dir = DIUnit.getDirectory();
162 GetOrCreateSourceID(FN, Dir);
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 579 llvm::sys::Path Dir, Filename;
586 UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
599 llvm::sys::Path Dir = llvm::sys::Path::GetTemporaryDirectory(&ErrMsg);
603 llvm::sys::Path Filename = Dir;
618 return new UbigraphViz(Stream.take(), Dir, Filename);
655 UbigraphViz::UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
657 : Out(out), Dir(dir), Filename(filename), Cntr(0) {
679 Dir.eraseFromDisk(true);
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
console.c 58 Dir,
91 } dir; member in union:ConEntry_t::__anon18489
195 if(pEntry->sel == Dir)
197 pEntryTemp = pEntry->u.dir.first;
222 pConsole->p_mon_root->sel = Dir;
234 p_token = p_dir->u.dir.first;
243 if ( p_token->sel == Dir )
498 p_token = p_dir->u.dir.first;
509 p_token = p_dir->u.dir.first;
527 p_token = pConsole->p_cur_dir->u.dir.first
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 534 // We look up the file/dir pair by concatenating them with a zero byte.
    [all...]

Completed in 882 milliseconds