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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 414 // If we're using split dwarf the compilation dir is going to be in the
    [all...]
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2_plugin.h 366 cmsFormatterDirection Dir,
  /external/pdfium/third_party/lcms2-2.6/src/
lcms2_internal.h 923 cmsFormatterDirection Dir,
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 77 pkgs, err := parser.ParseDir(fs, pkg.Dir, include, parser.ParseComments)
83 log.Fatalf("multiple packages in directory %s", pkg.Dir)
  /prebuilts/go/darwin-x86/src/go/types/
type.go 356 dir ChanDir
371 func NewChan(dir ChanDir, elem Type) *Chan {
372 return &Chan{dir, elem}
375 // Dir returns the direction of channel c.
376 func (c *Chan) Dir() ChanDir { return c.dir }
typexpr.go 316 dir := SendRecv
317 switch e.Dir {
321 dir = SendOnly
323 dir = RecvOnly
325 check.invalidAST(e.Pos(), "unknown channel direction %d", e.Dir)
329 typ.dir = dir
  /prebuilts/go/darwin-x86/src/path/filepath/
path_test.go 36 // Empty is current dir
197 path, dir, file string
228 if d, f := filepath.Split(test.path); d != test.dir || f != test.file {
229 t.Errorf("Split(%q) = %q, %q, want %q, %q", test.path, d, f, test.dir, test.file)
304 {"a.dir/b", ""},
305 {"a.dir/b.go", ".go"},
306 {"a.dir/", ""},
520 if err := os.MkdirAll(filepath.Join(td, "dir"), 0755); err != nil {
523 touch(t, filepath.Join(td, "dir/foo1"))
524 touch(t, filepath.Join(td, "dir/foo2")
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
value.go     [all...]
all_test.go 1148 Dir: SelectSend,
1160 Dir: SelectRecv,
1170 Dir: SelectSend,
1187 Dir: SelectRecv,
1207 Dir: SelectSend,
1216 Dir: SelectRecv,
1224 Dir: SelectSend,
1234 Dir: SelectRecv,
1245 Dir: SelectSend,
1258 Dir: SelectRecv
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
exec_plan9.go 176 func forkAndExecInChild(argv0 *byte, argv []*byte, envv []envItem, dir *byte, attr *ProcAttr, fdsToClose []int, pipe int, rflag int) (pid int, err error) {
254 if dir != nil {
255 r1, _, _ = RawSyscall(SYS_CHDIR, uintptr(unsafe.Pointer(dir)), 0, 0)
359 Dir string // Current working directory.
401 destDir := attr.Dir
407 var dir *byte
409 dir, err = BytePtrFromString(destDir)
478 pid, err = forkAndExecInChild(argv0p, argvp, envvParsed, dir, attr, fdsToClose, p[1], sys.Rfork)
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 77 pkgs, err := parser.ParseDir(fs, pkg.Dir, include, parser.ParseComments)
83 log.Fatalf("multiple packages in directory %s", pkg.Dir)
  /prebuilts/go/linux-x86/src/go/types/
type.go 356 dir ChanDir
371 func NewChan(dir ChanDir, elem Type) *Chan {
372 return &Chan{dir, elem}
375 // Dir returns the direction of channel c.
376 func (c *Chan) Dir() ChanDir { return c.dir }
typexpr.go 316 dir := SendRecv
317 switch e.Dir {
321 dir = SendOnly
323 dir = RecvOnly
325 check.invalidAST(e.Pos(), "unknown channel direction %d", e.Dir)
329 typ.dir = dir
  /prebuilts/go/linux-x86/src/path/filepath/
path_test.go 36 // Empty is current dir
197 path, dir, file string
228 if d, f := filepath.Split(test.path); d != test.dir || f != test.file {
229 t.Errorf("Split(%q) = %q, %q, want %q, %q", test.path, d, f, test.dir, test.file)
304 {"a.dir/b", ""},
305 {"a.dir/b.go", ".go"},
306 {"a.dir/", ""},
520 if err := os.MkdirAll(filepath.Join(td, "dir"), 0755); err != nil {
523 touch(t, filepath.Join(td, "dir/foo1"))
524 touch(t, filepath.Join(td, "dir/foo2")
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
value.go     [all...]
  /prebuilts/go/linux-x86/src/syscall/
exec_plan9.go 176 func forkAndExecInChild(argv0 *byte, argv []*byte, envv []envItem, dir *byte, attr *ProcAttr, fdsToClose []int, pipe int, rflag int) (pid int, err error) {
254 if dir != nil {
255 r1, _, _ = RawSyscall(SYS_CHDIR, uintptr(unsafe.Pointer(dir)), 0, 0)
359 Dir string // Current working directory.
401 destDir := attr.Dir
407 var dir *byte
409 dir, err = BytePtrFromString(destDir)
478 pid, err = forkAndExecInChild(argv0p, argvp, envvParsed, dir, attr, fdsToClose, p[1], sys.Rfork)
  /build/blueprint/bootstrap/
doc.go 55 // srcDir := filepath.Dir(flag.Arg(0))
120 // absolute or relative to the build dir)
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 106 vfs::directory_iterator dir_begin(const Twine &Dir,
109 std::make_shared<DirIterImpl>(FilesAndDirs, Dir));
258 // merged directories get the permissions of the upper dir
441 Upper->addDirectory("/dir");
442 Upper->addRegularFile("/dir/file2");
444 const char *Contents[] = {"/dir", "/dir/file2", "/file1"};
464 const char *Contents[] = { "/dir", "/dir/file2", "/dir2", "/dir2/foo",
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pack/
pack_test.go 59 func testCreate(t *testing.T, dir string) {
60 name := filepath.Join(dir, "pack.a")
87 dir := tmpDir(t)
88 defer os.RemoveAll(dir)
89 testCreate(t, dir)
94 dir := tmpDir(t)
95 defer os.RemoveAll(dir)
96 testCreate(t, dir)
97 testCreate(t, dir)
103 dir := tmpDir(t
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
crash_test.go 48 dir, err := ioutil.TempDir("", "go-build")
52 defer os.RemoveAll(dir)
54 src := filepath.Join(dir, "main.go")
72 if err := os.Mkdir(filepath.Join(dir, d), 0755); err != nil {
76 if err := ioutil.WriteFile(filepath.Join(dir, fname), []byte(contents), 0666); err != nil {
82 cmd.Dir = dir
88 got, _ := testEnv(exec.Command(filepath.Join(dir, "a.exe"))).CombinedOutput()
  /prebuilts/go/darwin-x86/test/
nosplit.go 198 dir, err := ioutil.TempDir("", "go-test-nosplit")
201 fmt.Printf("creating temp dir: %v\n", err)
204 defer os.RemoveAll(dir)
317 if err := ioutil.WriteFile(filepath.Join(dir, "asm.s"), buf.Bytes(), 0666); err != nil {
320 if err := ioutil.WriteFile(filepath.Join(dir, "main.go"), gobuf.Bytes(), 0666); err != nil {
325 cmd.Dir = dir
  /prebuilts/go/linux-x86/src/cmd/pack/
pack_test.go 59 func testCreate(t *testing.T, dir string) {
60 name := filepath.Join(dir, "pack.a")
87 dir := tmpDir(t)
88 defer os.RemoveAll(dir)
89 testCreate(t, dir)
94 dir := tmpDir(t)
95 defer os.RemoveAll(dir)
96 testCreate(t, dir)
97 testCreate(t, dir)
103 dir := tmpDir(t
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
crash_test.go 48 dir, err := ioutil.TempDir("", "go-build")
52 defer os.RemoveAll(dir)
54 src := filepath.Join(dir, "main.go")
72 if err := os.Mkdir(filepath.Join(dir, d), 0755); err != nil {
76 if err := ioutil.WriteFile(filepath.Join(dir, fname), []byte(contents), 0666); err != nil {
82 cmd.Dir = dir
88 got, _ := testEnv(exec.Command(filepath.Join(dir, "a.exe"))).CombinedOutput()
  /prebuilts/go/linux-x86/test/
nosplit.go 198 dir, err := ioutil.TempDir("", "go-test-nosplit")
201 fmt.Printf("creating temp dir: %v\n", err)
204 defer os.RemoveAll(dir)
317 if err := ioutil.WriteFile(filepath.Join(dir, "asm.s"), buf.Bytes(), 0666); err != nil {
320 if err := ioutil.WriteFile(filepath.Join(dir, "main.go"), gobuf.Bytes(), 0666); err != nil {
325 cmd.Dir = dir
  /prebuilts/go/darwin-x86/src/cmd/dist/
test.go 506 func (t *tester) dirCmd(dir string, bin string, args ...string) *exec.Cmd {
508 if filepath.IsAbs(dir) {
509 cmd.Dir = dir
511 cmd.Dir = filepath.Join(t.goroot, dir)
741 dir := filepath.Join(t.goroot, testpath)
771 if err := t.dirCmd(dir, cc, args...).Run(); err != nil {
774 defer os.Remove(filepath.Join(dir, sofname))
776 if err := t.dirCmd(dir, "go", "build", "-o", "main.exe", "main.go").Run(); err != nil
    [all...]

Completed in 1205 milliseconds

1 2 3 4 5 6 7 8 91011>>