HomeSort by relevance Sort by last modified time
    Searched refs:Dir (Results 176 - 200 of 298) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 188 // If there is no Separator in path, Split returns an empty dir
190 // The returned values have the property that path = dir+file.
191 func Split(path string) (dir, file string) {
331 // prefix; that is, if Walk is called with "dir", which is a directory
333 // "dir/a". The info argument is the os.FileInfo for the named path.
444 // Dir returns all but the last element of path, typically the path's directory.
447 // If the path is empty, Dir returns ".".
448 // If the path consists entirely of separators, Dir returns a single separator.
450 func Dir(path string) string {
456 dir := Clean(path[len(vol) : i+1]
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
crash_unix_test.go 35 dir, err := ioutil.TempDir("", "go-build")
39 defer os.RemoveAll(dir)
41 if err := ioutil.WriteFile(filepath.Join(dir, "main.go"), []byte(crashDumpsAllThreadsSource), 0666); err != nil {
46 cmd.Dir = dir
52 cmd = exec.Command(filepath.Join(dir, "a.exe"))
runtime-gdb_test.go 66 dir, err := ioutil.TempDir("", "go-build")
70 defer os.RemoveAll(dir)
72 src := filepath.Join(dir, "main.go")
79 cmd.Dir = dir
114 args = append(args, filepath.Join(dir, "a.exe"))
  /prebuilts/go/linux-x86/src/net/http/cgi/
host_test.go 406 Dir: cwd,
444 Dir: cwd,
453 // If not specify Dir on windows, working directory should be
486 Dir: cwd,
  /prebuilts/go/linux-x86/src/net/http/
filetransport.go 26 // t.RegisterProtocol("file", http.NewFileTransport(http.Dir("/")))
triv.go 131 http.Handle("/go/", http.StripPrefix("/go/", http.FileServer(http.Dir(*webroot))))
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 188 // If there is no Separator in path, Split returns an empty dir
190 // The returned values have the property that path = dir+file.
191 func Split(path string) (dir, file string) {
331 // prefix; that is, if Walk is called with "dir", which is a directory
333 // "dir/a". The info argument is the os.FileInfo for the named path.
444 // Dir returns all but the last element of path, typically the path's directory.
447 // If the path is empty, Dir returns ".".
448 // If the path consists entirely of separators, Dir returns a single separator.
450 func Dir(path string) string {
456 dir := Clean(path[len(vol) : i+1]
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
crash_unix_test.go 35 dir, err := ioutil.TempDir("", "go-build")
39 defer os.RemoveAll(dir)
41 if err := ioutil.WriteFile(filepath.Join(dir, "main.go"), []byte(crashDumpsAllThreadsSource), 0666); err != nil {
46 cmd.Dir = dir
52 cmd = exec.Command(filepath.Join(dir, "a.exe"))
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/i386/
compressed-1a.d 92 Entry Dir Time Size Name
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/x86-64/
compressed-1a.d 92 Entry Dir Time Size Name
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips@loc-swap.d 40 Entry Dir Time Size Name
  /prebuilts/go/darwin-x86/src/cmd/go/
pkg.go 32 Dir string `json:",omitempty"` // directory containing package sources
33 ImportPath string `json:",omitempty"` // import path of package in dir
42 Root string `json:",omitempty"` // Go root or Go path dir containing this package
43 ConflictDir string `json:",omitempty"` // Dir is hidden by this other directory
147 p.Dir = pp.Dir
247 delete(packageCache, p.Dir)
266 func dirToImportPath(dir string) string {
267 return pathpkg.Join("_", strings.Map(makeImportValid, filepath.ToSlash(dir)))
360 for _, dir := range vendorSearch
    [all...]
test.go 242 go test -x -v -cpuprofile=prof.out -dir=testdata -update
246 pkg.test -test.v -test.cpuprofile=prof.out -dir=testdata -update
587 p1 := loadImport(path, p.Dir, p, &stk, p.build.TestImportPos[path], useVendor)
614 p1 := loadImport(path, p.Dir, p, &stk, p.build.XTestImportPos[path], useVendor)
716 Dir: p.Dir,
736 Dir: testDir,
1029 cmd.Dir = a.p.Dir
1030 cmd.Env = envForDir(cmd.Dir, origEnv
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
pkg.go 32 Dir string `json:",omitempty"` // directory containing package sources
33 ImportPath string `json:",omitempty"` // import path of package in dir
42 Root string `json:",omitempty"` // Go root or Go path dir containing this package
43 ConflictDir string `json:",omitempty"` // Dir is hidden by this other directory
147 p.Dir = pp.Dir
247 delete(packageCache, p.Dir)
266 func dirToImportPath(dir string) string {
267 return pathpkg.Join("_", strings.Map(makeImportValid, filepath.ToSlash(dir)))
360 for _, dir := range vendorSearch
    [all...]
test.go 242 go test -x -v -cpuprofile=prof.out -dir=testdata -update
246 pkg.test -test.v -test.cpuprofile=prof.out -dir=testdata -update
587 p1 := loadImport(path, p.Dir, p, &stk, p.build.TestImportPos[path], useVendor)
614 p1 := loadImport(path, p.Dir, p, &stk, p.build.XTestImportPos[path], useVendor)
716 Dir: p.Dir,
736 Dir: testDir,
1029 cmd.Dir = a.p.Dir
1030 cmd.Env = envForDir(cmd.Dir, origEnv
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
stdlib_test.go 224 func pkgFilenames(dir string) ([]string, error) {
227 pkg, err := ctxt.ImportDir(dir, 0)
239 filenames = append(filenames, filepath.Join(pkg.Dir, name))
242 filenames = append(filenames, filepath.Join(pkg.Dir, name))
251 func walkDirs(t *testing.T, dir string) {
257 fis, err := ioutil.ReadDir(dir)
264 files, err := pkgFilenames(dir)
270 typecheck(t, dir, files)
276 walkDirs(t, filepath.Join(dir, fi.Name()))
exprstring.go 153 switch x.Dir {
  /prebuilts/go/linux-x86/src/go/types/
stdlib_test.go 224 func pkgFilenames(dir string) ([]string, error) {
227 pkg, err := ctxt.ImportDir(dir, 0)
239 filenames = append(filenames, filepath.Join(pkg.Dir, name))
242 filenames = append(filenames, filepath.Join(pkg.Dir, name))
251 func walkDirs(t *testing.T, dir string) {
257 fis, err := ioutil.ReadDir(dir)
264 files, err := pkgFilenames(dir)
270 typecheck(t, dir, files)
276 walkDirs(t, filepath.Join(dir, fi.Name()))
  /external/clang/include/clang/Lex/
Preprocessor.h     [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 180 // Add the base dir
191 // Add the backward dir
251 for (StringRef dir : dirs)
252 AddPath(dir, ExternCSystem, false);
335 // --with-clang-resource-dir option, the location of Clang's resource
507 // If this isn't the first time we've seen this dir, remove it.
511 // If this isn't the first time we've seen this framework dir, remove it.
515 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
521 // If we have a normal #include dir/framework/headermap that is shadowed
523 // ignore the user's request and drop the user dir... keeping the syste
    [all...]
  /external/elfutils/tests/
run-readelf-zdebug.sh 384 Entry Dir Time Size Name
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dlcapi.h 69 } dir; member in union:__anon42844
437 LLC_DIRECT_LOG Dir;
440 LLC_DIRECT_LOG Dir;
  /prebuilts/go/darwin-x86/src/cmd/cover/
func.go 158 dir, file := filepath.Split(file)
159 pkg, err := build.Import(dir, ".", build.FindOnly)
163 return filepath.Join(pkg.Dir, file), nil
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
sym.go 101 ctxt.LineHist.Dir = ctxt.Pathname
  /prebuilts/go/linux-x86/src/cmd/cover/
func.go 158 dir, file := filepath.Split(file)
159 pkg, err := build.Import(dir, ".", build.FindOnly)
163 return filepath.Join(pkg.Dir, file), nil

Completed in 1198 milliseconds

1 2 3 4 5 6 78 91011>>