HomeSort by relevance Sort by last modified time
    Searched defs:Dir (Results 1 - 25 of 46) 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...]
  /prebuilts/go/darwin-x86/src/path/
path.go 141 // If there is no slash in path, Split returns an empty dir and
143 // The returned values have the property that path = dir+file.
144 func Split(path string) (dir, file string) {
202 // Dir returns all but the last element of path, typically the path's directory.
205 // If the path is empty, Dir returns ".".
206 // If the path consists entirely of slashes followed by non-slash bytes, Dir
209 func Dir(path string) string {
210 dir, _ := Split(path)
211 return Clean(dir)
  /prebuilts/go/linux-x86/src/path/
path.go 141 // If there is no slash in path, Split returns an empty dir and
143 // The returned values have the property that path = dir+file.
144 func Split(path string) (dir, file string) {
202 // Dir returns all but the last element of path, typically the path's directory.
205 // If the path is empty, Dir returns ".".
206 // If the path consists entirely of slashes followed by non-slash bytes, Dir
209 func Dir(path string) string {
210 dir, _ := Split(path)
211 return Clean(dir)
  /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/skia/include/core/
SkDataTable.h 93 struct Dir {
101 const Dir* fDir;
111 SkDataTable(const Dir*, int count, FreeProc, void* context);
114 friend class SkDataTableBuilder; // access to Dir
  /prebuilts/go/darwin-x86/src/syscall/
dir_plan9.go 24 // A Dir contains the metadata for a file.
25 type Dir struct {
42 var nullDir = Dir{
58 func (d *Dir) Null() { *d = nullDir }
63 func (d *Dir) Marshal(b []byte) (n int, err error) {
93 // UnmarshalDir decodes a single 9P stat message from b and returns the resulting Dir.
98 func UnmarshalDir(b []byte) (*Dir, error) {
108 var d Dir
  /prebuilts/go/linux-x86/src/syscall/
dir_plan9.go 24 // A Dir contains the metadata for a file.
25 type Dir struct {
42 var nullDir = Dir{
58 func (d *Dir) Null() { *d = nullDir }
63 func (d *Dir) Marshal(b []byte) (n int, err error) {
93 // UnmarshalDir decodes a single 9P stat message from b and returns the resulting Dir.
98 func UnmarshalDir(b []byte) (*Dir, error) {
108 var d Dir
  /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/clang/lib/Frontend/
ModuleDependencyCollector.cpp 162 std::string Dir = path::parent_path(SrcPath).str();
163 auto DirWithSymLink = SymLinkMap.find(Dir);
169 if (!real_path(Dir, RealPath))
171 SymLinkMap[Dir] = RealPath.str();
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 187 // If there is no Separator in path, Split returns an empty dir
189 // The returned values have the property that path = dir+file.
190 func Split(path string) (dir, file string) {
333 // prefix; that is, if Walk is called with "dir", which is a directory
335 // "dir/a". The info argument is the os.FileInfo for the named path.
451 // Dir returns all but the last element of path, typically the path's directory.
452 // After dropping the final element, Dir calls Clean on the path and trailing
454 // If the path is empty, Dir returns ".".
455 // If the path consists entirely of separators, Dir returns a single separator.
457 func Dir(path string) string
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 187 // If there is no Separator in path, Split returns an empty dir
189 // The returned values have the property that path = dir+file.
190 func Split(path string) (dir, file string) {
333 // prefix; that is, if Walk is called with "dir", which is a directory
335 // "dir/a". The info argument is the os.FileInfo for the named path.
451 // Dir returns all but the last element of path, typically the path's directory.
452 // After dropping the final element, Dir calls Clean on the path and trailing
454 // If the path is empty, Dir returns ".".
455 // If the path consists entirely of separators, Dir returns a single separator.
457 func Dir(path string) string
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf64Convert.c 817 EFI_IMAGE_DATA_DIRECTORY *Dir;
914 Dir = &NtHdr->Pe32Plus.OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC];
915 Dir->Size = mCoffOffset - mRelocOffset;
916 if (Dir->Size == 0) {
918 Dir->VirtualAddress = 0;
921 Dir->VirtualAddress = mRelocOffset;
938 EFI_IMAGE_DEBUG_DIRECTORY_ENTRY *Dir;
943 Dir = (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY*)(mCoffFile + mDebugOffset);
944 Dir->Type = EFI_IMAGE_DEBUG_TYPE_CODEVIEW;
945 Dir->SizeOfData = sizeof(EFI_IMAGE_DEBUG_CODEVIEW_NB10_ENTRY) + Len;
    [all...]
Elf32Convert.c 799 EFI_IMAGE_DATA_DIRECTORY *Dir;
1020 Dir = &NtHdr->Pe32.OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC];
1021 Dir->Size = mCoffOffset - mRelocOffset;
1022 if (Dir->Size == 0) {
1024 Dir->VirtualAddress = 0;
1027 Dir->VirtualAddress = mRelocOffset;
1045 EFI_IMAGE_DEBUG_DIRECTORY_ENTRY *Dir;
1050 Dir = (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY*)(mCoffFile + mDebugOffset);
1051 Dir->Type = EFI_IMAGE_DEBUG_TYPE_CODEVIEW;
1052 Dir->SizeOfData = sizeof(EFI_IMAGE_DEBUG_CODEVIEW_NB10_ENTRY) + Len;
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 58 const DirectoryEntry *Dir; // Directory file lives in.
95 const DirectoryEntry *getDir() const { return Dir; }
283 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);
  /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/libcxx/test/support/
filesystem_test_helper.hpp 46 static const fs::path Dir = TestDirList[0];
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 356 const import_directory_table_entry *Dir;
358 if (DirRef.getImportTableEntry(Dir)) return;
362 static_cast<uint32_t>(Dir->ImportLookupTableRVA),
363 static_cast<uint32_t>(Dir->TimeDateStamp),
364 static_cast<uint32_t>(Dir->ForwarderChain),
365 static_cast<uint32_t>(Dir->NameRVA),
366 static_cast<uint32_t>(Dir->ImportAddressTableRVA));
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXAsmPrinter.cpp 163 StringRef Dir = DIUnit.getDirectory();
164 GetOrCreateSourceID(FN, Dir);
  /prebuilts/go/darwin-x86/src/net/http/
fs.go 26 // A Dir implements FileSystem using the native file system restricted to a
29 // While the FileSystem.Open method takes '/'-separated paths, a Dir's string
33 // An empty Dir is treated as ".".
34 type Dir string
36 func (d Dir) Open(name string) (File, error) {
41 dir := string(d)
42 if dir == "" {
43 dir = "."
45 f, err := os.Open(filepath.Join(dir, filepath.FromSlash(path.Clean("/"+name))))
646 dir, file := filepath.Split(name
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
fs.go 26 // A Dir implements FileSystem using the native file system restricted to a
29 // While the FileSystem.Open method takes '/'-separated paths, a Dir's string
33 // An empty Dir is treated as ".".
34 type Dir string
36 func (d Dir) Open(name string) (File, error) {
41 dir := string(d)
42 if dir == "" {
43 dir = "."
45 f, err := os.Open(filepath.Join(dir, filepath.FromSlash(path.Clean("/"+name))))
646 dir, file := filepath.Split(name
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/FileExplorerLib/
FileExplorer.c 151 2) update of file content if a dir is selected.
855 EFI_FILE_HANDLE Dir;
861 Dir = FileContext->FileHandle;
866 Status = Dir->Open (
867 Dir,
878 Dir->Close (Dir);
1030 @retval EFI_SUCCESS Get files from current dir successfully.
1031 @return Other value if can't get files from current dir.
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigFileExplorer.c 835 @retval EFI_SUCCESS Get files from current dir successfully.
836 @return Other Can't get files from current dir.
845 EFI_FILE_HANDLE Dir;
857 Dir = FileContext->FHandle;
862 Status = Dir->Open (
863 Dir,
870 Dir->Close (Dir);
    [all...]

Completed in 770 milliseconds

1 2