/prebuilts/go/linux-x86/src/cmd/go/ |
fix.go | 25 // Use pkg.gofiles instead of pkg.Dir so that
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
debug1.d | 35 Entry Dir Time Size Name
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
pr13167.d | 32 Entry Dir Time Size Name
|
/external/llvm/bindings/go/llvm/ |
DIBuilderBindings.cpp | 38 const char *Dir, 43 return wrap(D->createCompileUnit(Lang, File, Dir, Producer, Optimized, Flags, 48 const char *Dir) { 50 return wrap(D->createFile(File, Dir));
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
usb200.h | 53 UCHAR Dir:1;
|
/prebuilts/go/darwin-x86/src/os/ |
exec.go | 37 // If Dir is non-empty, the child changes into the directory before 39 Dir string
|
exec_plan9.go | 24 Dir: attr.Dir,
|
/prebuilts/go/linux-x86/src/os/ |
exec.go | 37 // If Dir is non-empty, the child changes into the directory before 39 Dir string
|
exec_plan9.go | 24 Dir: attr.Dir,
|
/prebuilts/go/darwin-x86/src/go/build/ |
build_test.go | 69 dir := filepath.Clean("testdata/other/file") // Clean to use \ on Windows 70 if p1.Dir != dir { 71 t.Fatalf("./file: Dir=%q, want %q", p1.Name, dir) 102 Dir: filepath.FromSlash("testdata/multi"), 244 if !strings.HasSuffix(filepath.ToSlash(p.Dir), "src/cmd/internal/objfile") { 245 t.Fatalf("Import cmd/internal/objfile returned Dir=%q, want %q", filepath.ToSlash(p.Dir), ".../src/cmd/internal/objfile")
|
/prebuilts/go/linux-x86/src/go/build/ |
build_test.go | 69 dir := filepath.Clean("testdata/other/file") // Clean to use \ on Windows 70 if p1.Dir != dir { 71 t.Fatalf("./file: Dir=%q, want %q", p1.Name, dir) 102 Dir: filepath.FromSlash("testdata/multi"), 244 if !strings.HasSuffix(filepath.ToSlash(p.Dir), "src/cmd/internal/objfile") { 245 t.Fatalf("Import cmd/internal/objfile returned Dir=%q, want %q", filepath.ToSlash(p.Dir), ".../src/cmd/internal/objfile")
|
/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/lib/Lex/ |
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...] |
/prebuilts/go/darwin-x86/src/net/http/ |
fs_test.go | 190 ts := httptest.NewServer(StripPrefix("/test", FileServer(Dir(".")))) 256 dir: true, 277 t.Errorf("test %q: listing dir, full output is %q, want prefix %q and suffix %q", test.name, s, dirListPrefix, dirListSuffix) 280 t.Errorf("test %q: listing dir, filename escaped to %q, want %q", test.name, trimmed, test.escaped) 286 func mustRemoveAll(dir string) { 287 err := os.RemoveAll(dir) 303 ts := httptest.NewServer(StripPrefix("/bar/", FileServer(Dir(tempDir)))) 333 test := func(d Dir, name string) { 347 test(Dir("/etc/"), "/hosts") 348 test(Dir("/etc/"), "hosts" [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
fs_test.go | 190 ts := httptest.NewServer(StripPrefix("/test", FileServer(Dir(".")))) 256 dir: true, 277 t.Errorf("test %q: listing dir, full output is %q, want prefix %q and suffix %q", test.name, s, dirListPrefix, dirListSuffix) 280 t.Errorf("test %q: listing dir, filename escaped to %q, want %q", test.name, trimmed, test.escaped) 286 func mustRemoveAll(dir string) { 287 err := os.RemoveAll(dir) 303 ts := httptest.NewServer(StripPrefix("/bar/", FileServer(Dir(tempDir)))) 333 test := func(d Dir, name string) { 347 test(Dir("/etc/"), "/hosts") 348 test(Dir("/etc/"), "hosts" [all...] |
/external/clang/include/clang/Basic/ |
VirtualFileSystem.h | 198 /// \brief Get a directory_iterator for \p Dir. 200 virtual directory_iterator dir_begin(const Twine &Dir, 254 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override; 298 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
|
/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();
|
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
host.go | 51 // Dir specifies the CGI executable's working directory. 52 // If Dir is empty, the base directory of Path is used. 55 Dir string 187 if h.Dir != "" { 189 cwd = h.Dir 205 Dir: cwd,
|
/prebuilts/go/linux-x86/src/net/http/cgi/ |
host.go | 51 // Dir specifies the CGI executable's working directory. 52 // If Dir is empty, the base directory of Path is used. 55 Dir string 187 if h.Dir != "" { 189 cwd = h.Dir 205 Dir: cwd,
|
/external/clang/include/clang/Driver/ |
Driver.h | 101 std::string Dir; 255 return Dir.c_str();
|
/external/clang/include/clang/Lex/ |
ModuleMap.h | 291 void setBuiltinIncludeDir(const DirectoryEntry *Dir) { 292 BuiltinIncludeDir = Dir;
|
/external/mesa3d/scons/ |
custom.py | 107 for dir in path: 108 file = os.path.join(str(dir), imp.replace('.', os.sep) + '.py') 112 file = os.path.join(str(dir), imp.replace('.', os.sep), '__init__.py') 239 cur_srcdir = env.Dir('.').srcnode().abspath 240 top_srcdir = env.Dir('#').abspath
|
/external/mesa3d/src/mesa/ |
SConscript | 289 env.Append(CPPPATH = [Dir('.').abspath]) 367 env.Append(CPPPATH = [gles_headers[0].dir.up().up()]) 435 # Add the dir containing the generated header (somewhere inside the 436 # build dir) to the include path 437 env.Append(CPPPATH = [matypes[0].dir])
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
fmt.go | 39 // Use pkg.gofiles instead of pkg.Dir so that
|
vet.go | 49 files[i] = filepath.Join(p.Dir, files[i])
|