HomeSort by relevance Sort by last modified time
    Searched defs:Dir (Results 1 - 25 of 28) 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/lib/AST/
StmtOpenMP.cpp 64 OMPParallelDirective *Dir =
66 Dir->setClauses(Clauses);
67 Dir->setAssociatedStmt(AssociatedStmt);
68 Dir->setHasCancel(HasCancel);
69 return Dir;
92 OMPSimdDirective *Dir = new (Mem)
94 Dir->setClauses(Clauses);
95 Dir->setAssociatedStmt(AssociatedStmt);
96 Dir->setIterationVariable(Exprs.IterationVarRef);
97 Dir->setLastIteration(Exprs.LastIteration)
    [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/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/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 95 struct Dir {
103 const Dir* fDir;
113 SkDataTable(const Dir*, int count, FreeProc, void* context);
116 friend class SkDataTableBuilder; // access to Dir
170 SkTDArray<SkDataTable::Dir> fDir;
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
fsdiff.py 25 __all__ = ['Diff', 'Snapshot', 'File', 'Dir', 'report_expected_diffs',
135 result[path] = Dir(self.base_path, path)
229 dir = False variable in class:File
264 class Dir(File):
271 dir = True variable in class:Dir
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
gpio.hpp 60 } Dir;
230 * @param dir The direction to change the gpio into
234 dir(Dir dir) function in class:mraa::Gpio
236 return (Result )mraa_gpio_dir(m_gpio, (mraa_gpio_dir_t) dir);
  /external/clang/include/clang/Basic/
FileManager.h 57 const DirectoryEntry *Dir; // Directory file lives in.
93 const DirectoryEntry *getDir() const { return Dir; }
281 StringRef getCanonicalName(const DirectoryEntry *Dir);
  /external/clang/lib/Lex/
PPLexerChange.cpp 233 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir,
242 if (CurDir == Dir) {
488 const DirectoryEntry *Dir = Mod->getUmbrellaDir().Entry;
491 for (vfs::recursive_directory_iterator Entry(FS, Dir->getName(), EC), End;
508 computeRelativePath(FileMgr, Dir, Header, RelativePath);
HeaderSearch.cpp 148 auto *Dir =
150 if (!Dir)
152 auto DirName = FileMgr.getCanonicalName(Dir);
254 StringRef FileName, const DirectoryEntry *Dir, bool IsSystemHeaderDir,
263 if (!findUsableModuleForHeader(File, Dir ? Dir : File->getDir(),
383 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
384 if (!Dir)
391 TopFrameworkDir = Dir;
420 // Otherwise, construct the path to this framework dir
    [all...]
ModuleMap.cpp 183 const DirectoryEntry *Dir = File->getDir();
184 assert(Dir && "file in no directory");
190 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
195 auto KnownDir = UmbrellaDirs.find(Dir);
199 IntermediateDirs.push_back(Dir);
207 Dir = SourceMgr.getFileManager().getDirectory(DirName);
208 } while (Dir);
458 const DirectoryEntry *Dir = Header->getDir();
460 StringRef DirName = Dir->getName();
471 = 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");
361 llvm::SmallString<256> Dir;
362 ASSERT_FALSE(llvm::sys::fs::createUniqueDirectory("libclang-test", Dir));
363 TestDir = Dir.str();
  /external/llvm/lib/CodeGen/AsmPrinter/
WinCodeViewLineTables.cpp 28 StringRef Dir = Scope->getDirectory(),
31 DirAndFilenameToFilepathMap[std::make_pair(Dir, Filename)];
42 Filepath = (Dir + "\\" + Filename).str();
DwarfDebug.cpp 414 // If we're using split dwarf the compilation dir is going to be in the
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 306 const import_directory_table_entry *Dir;
308 if (I->getImportTableEntry(Dir)) return;
312 static_cast<uint32_t>(Dir->ImportLookupTableRVA),
313 static_cast<uint32_t>(Dir->TimeDateStamp),
314 static_cast<uint32_t>(Dir->ForwarderChain),
315 static_cast<uint32_t>(Dir->NameRVA),
316 static_cast<uint32_t>(Dir->ImportAddressTableRVA));
  /external/clang/include/clang/Driver/
Driver.h 101 std::string Dir;
255 return Dir.c_str();
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 150 unsigned Dir = D->getDirection(II);
151 if (Dir == Dependence::DVEntry::LT ||
152 Dir == Dependence::DVEntry::LE)
154 else if (Dir == Dependence::DVEntry::GT ||
155 Dir == Dependence::DVEntry::GE)
157 else if (Dir == Dependence::DVEntry::EQ)
    [all...]
  /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:__anon41316
437 LLC_DIRECT_LOG Dir;
440 LLC_DIRECT_LOG Dir;
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
CompilerInvocation.cpp     [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 184 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
207 SmallString<256> Dir;
208 if (std::error_code EC = llvm::sys::fs::current_path(Dir))
210 return Dir.str().str();
222 StringRef Dir = Path.toNullTerminatedStringRef(Storage);
223 if (int Err = ::chdir(Dir.data()))
265 directory_iterator RealFileSystem::dir_begin(const Twine &Dir,
267 return directory_iterator(std::make_shared<RealFSDirIter>(Dir, EC));
380 directory_iterator OverlayFileSystem::dir_begin(const Twine &Dir,
383 std::make_shared<OverlayFSDirIterImpl>(Dir, *this, EC))
    [all...]
  /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 561 milliseconds

1 2