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

1 2

  /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/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/llvm/unittests/Transforms/DebugIR/
DebugIR.cpp 49 void insertCUDescriptor(Module *M, StringRef File, StringRef Dir,
52 B.createCompileUnit(dwarf::DW_LANG_C99, File, Dir, Producer, false, "", 0);
68 // allocate a sufficiently sized buffer to store the current working dir.
83 /// Returns a concatenated path string consisting of Dir and Filename
84 string getPath(const string &Dir, const string &Filename) {
86 sys::path::append(Path, Dir, Filename);
87 Path.resize(Dir.size() + Filename.size() + 2);
88 Path[Dir.size() + Filename.size() + 1] = '\0';
100 string Dir = "MadeUpDirectory";
102 string Path(getPath(Dir, File))
    [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/chromium_org/third_party/skia/include/core/
SkDataTable.h 97 struct Dir {
105 const Dir* fDir;
115 SkDataTable(const Dir*, int count, FreeProc, void* context);
118 friend class SkDataTableBuilder; // access to Dir
172 SkTDArray<SkDataTable::Dir> fDir;
  /external/clang/include/clang/Lex/
DirectoryLookup.h 41 /// Dir - This is the actual directory that we're referring to for a normal
43 const DirectoryEntry *Dir;
67 /// 'dir'.
68 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
73 u.Dir = dir;
96 return isNormalDir() ? u.Dir : nullptr;
102 return isFramework() ? u.Dir : nullptr;
  /external/skia/include/core/
SkDataTable.h 97 struct Dir {
105 const Dir* fDir;
115 SkDataTable(const Dir*, int count, FreeProc, void* context);
118 friend class SkDataTableBuilder; // access to Dir
172 SkTDArray<SkDataTable::Dir> fDir;
  /external/clang/include/clang/Basic/
FileManager.h 65 const DirectoryEntry *Dir; // Directory file lives in.
105 const DirectoryEntry *getDir() const { return Dir; }
282 StringRef getCanonicalName(const DirectoryEntry *Dir);
  /external/clang/include/clang/Driver/
Driver.h 76 std::string Dir;
225 return Dir.c_str();
  /external/clang/lib/Lex/
PPLexerChange.cpp 213 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir,
222 if (CurDir == Dir) {
455 const DirectoryEntry *Dir = Mod->getUmbrellaDir();
458 for (vfs::recursive_directory_iterator Entry(FS, Dir->getName(), EC), End;
475 computeRelativePath(FileMgr, Dir, Header, RelativePath);
HeaderSearch.cpp 236 const DirectoryEntry *Dir, bool IsSystemHeaderDir,
240 HS.hasModuleMap(FileName, Dir, IsSystemHeaderDir);
251 HS.hasModuleMap(FileName, Dir, IsSystemHeaderDir))
371 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
372 if (!Dir)
379 TopFrameworkDir = Dir;
411 // Otherwise, construct the path to this framework dir.
430 // If the framework dir doesn't exist, we fail.
431 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
432 if (!Dir) return nullptr
    [all...]
ModuleMap.cpp 176 const DirectoryEntry *Dir = File->getDir();
177 assert(Dir && "file in no directory");
183 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
188 auto KnownDir = UmbrellaDirs.find(Dir);
192 IntermediateDirs.push_back(Dir);
200 Dir = SourceMgr.getFileManager().getDirectory(DirName);
201 } while (Dir);
446 const DirectoryEntry *Dir = Header->getDir();
448 StringRef DirName = Dir->getName();
459 = UmbrellaDirs.find(Dir);
    [all...]
  /external/clang/unittests/libclang/
LibclangTest.cpp 130 " 'name': \"/another/dir\",\n"
141 " 'name': \"/path/virtual/dir\",\n"
169 T.map("/path/virtual/dir/foo1.h", "/real/foo1.h");
170 T.map("/another/dir/foo2.h", "/real/foo2.h");
171 T.map("/path/virtual/dir/foo3.h", "/real/foo3.h");
172 T.map("/path/virtual/dir/in/subdir/foo4.h", "/real/foo4.h");
351 llvm::SmallString<256> Dir;
352 ASSERT_FALSE(llvm::sys::fs::createUniqueDirectory("libclang-test", Dir));
353 TestDir = Dir.str();
  /external/llvm/lib/CodeGen/AsmPrinter/
WinCodeViewLineTables.cpp 29 StringRef Dir = Scope.getDirectory(),
31 char *&Result = DirAndFilenameToFilepathMap[std::make_pair(Dir, Filename)];
43 Filepath = (Dir + Twine("\\") + Filename).str();
DwarfDebug.cpp 649 // If we're using split dwarf the compilation dir is going to be in the
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 312 const import_directory_table_entry *Dir;
314 if (I->getImportTableEntry(Dir)) return;
318 static_cast<uint32_t>(Dir->ImportLookupTableRVA),
319 static_cast<uint32_t>(Dir->TimeDateStamp),
320 static_cast<uint32_t>(Dir->ForwarderChain),
321 static_cast<uint32_t>(Dir->NameRVA),
322 static_cast<uint32_t>(Dir->ImportAddressTableRVA));
  /external/chromium_org/tools/usb_gadget/
usb_constants.py 98 class Dir(object):
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usb200.h 53 UCHAR Dir:1;
dlcapi.h 69 } dir; member in union:__anon29228
437 LLC_DIRECT_LOG Dir;
440 LLC_DIRECT_LOG Dir;
  /external/clang/lib/AST/
Stmt.cpp     [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 166 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
229 directory_iterator RealFileSystem::dir_begin(const Twine &Dir,
231 return directory_iterator(std::make_shared<RealFSDirIter>(Dir, EC));
329 directory_iterator OverlayFileSystem::dir_begin(const Twine &Dir,
332 std::make_shared<OverlayFSDirIterImpl>(Dir, *this, EC));
414 std::string Dir;
528 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override{
529 ErrorOr<Entry *> E = lookupPath(Dir);
534 ErrorOr<Status> S = status(Dir, *E);
546 return directory_iterator(std::make_shared<VFSFromYamlDirIterImpl>(Dir,
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ConsoleModel.js 406 Dir: "dir",
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 

Completed in 622 milliseconds

1 2