HomeSort by relevance Sort by last modified time
    Searched refs:Dir (Results 101 - 125 of 498) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/mapi/glapi/
SConscript 33 Dir('..'), # src/mapi build path
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
dwarf2-3.d 34 Entry Dir Time Size Name
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
PosixFileSystem.c 46 DIR *Dir;
147 PrivateFile->Dir = NULL;
152 PrivateFile->Dir = opendir (PrivateFile->FileName);
153 if (PrivateFile->Dir == NULL) {
523 NewPrivateFile->Dir = NULL;
564 NewPrivateFile->Dir = opendir (NewPrivateFile->FileName);
565 if (NewPrivateFile->Dir == NULL) {
664 if (PrivateFile->Dir != NULL) {
665 closedir (PrivateFile->Dir);
    [all...]
  /development/tools/findunused/
find_unused_resources.rb 92 Dir.glob(glob).each { |filename|
105 def findUnusedResources(dir)
111 Dir.glob("#{dir}/res/**/*.xml").each { |filename|
131 Dir.glob("#{dir}/AndroidManifest.xml").each { |filename|
143 recordJavaUses("#{dir}/src/**/*.java")
161 result.appDir = dir
168 def findApps(dir)
170 Dir.glob("#{dir}/**/res").each { |filename
    [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/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorFFT.h 406 template <int Dir>
413 template <int Dir>
419 if (Dir == FFT_FORWARD) {
430 template <int Dir>
438 if (Dir == FFT_FORWARD) {
446 if (Dir == FFT_FORWARD) {
458 if (Dir == FFT_FORWARD) {
477 template <int Dir>
484 const RealScalar wpi = (Dir == FFT_FORWARD)
516 template <int Dir>
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/
status.pass.cpp 47 TestFn(StaticEnv::Dir);
symlink_status.pass.cpp 46 TestFn(StaticEnv::Dir);
  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
copy.pass.cpp 47 const path testDir = StaticEnv::Dir;
increment.pass.cpp 48 const path testDir = StaticEnv::Dir;
71 const path testDir = StaticEnv::Dir;
94 const path testDir = StaticEnv::Dir;
118 const path testDir = StaticEnv::Dir;
move.pass.cpp 49 const path testDir = StaticEnv::Dir;
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.file_size/
file_size.pass.cpp 66 StaticEnv::Dir,
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_directory/
is_directory.pass.cpp 72 TEST_CHECK(is_directory(StaticEnv::Dir));
80 const path dir = env.create_dir("dir"); local
81 const path dir2 = env.create_dir("dir/dir2");
82 permissions(dir, perms::none);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/lib/Fuzzer/
FuzzerIO.h 33 // Returns "Dir/FileName" or equivalent for the current OS.
37 // Returns the name of the dir, similar to the 'dirname' utility.
57 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/lib/Fuzzer/
FuzzerIO.h 33 // Returns "Dir/FileName" or equivalent for the current OS.
37 // Returns the name of the dir, similar to the 'dirname' utility.
57 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/lib/Fuzzer/
FuzzerIO.h 33 // Returns "Dir/FileName" or equivalent for the current OS.
37 // Returns the name of the dir, similar to the 'dirname' utility.
57 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/lib/Fuzzer/
FuzzerIO.h 33 // Returns "Dir/FileName" or equivalent for the current OS.
37 // Returns the name of the dir, similar to the 'dirname' utility.
57 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
  /prebuilts/go/darwin-x86/src/cmd/go/
clean.go 34 DIR(.exe) from go build
35 DIR.test(.exe) from go test -c
39 In the list, DIR represents the final path element of the
114 if p.Dir == "" {
118 dirs, err := ioutil.ReadDir(p.Dir)
120 errorf("go clean %s: %v", p.Dir, err)
142 _, elem := filepath.Split(p.Dir)
145 // Remove dir-named executable only if this is package main.
161 for _, dir := range dirs {
162 name := dir.Name(
    [all...]
  /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
exec_windows.go 155 func normalizeDir(dir string) (name string, err error) {
156 ndir, err := FullPath(dir)
161 // dir cannot have \\server\share\path form
174 func joinExeDirAndFName(dir, p string) (name string, err error) {
190 d, err := normalizeDir(dir)
202 d, err := normalizeDir(dir)
215 Dir string
249 if len(attr.Dir) != 0 {
250 // StartProcess assumes that argv0 is relative to attr.Dir,
251 // because it implies Chdir(attr.Dir) before executing argv0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
clean.go 34 DIR(.exe) from go build
35 DIR.test(.exe) from go test -c
39 In the list, DIR represents the final path element of the
114 if p.Dir == "" {
118 dirs, err := ioutil.ReadDir(p.Dir)
120 errorf("go clean %s: %v", p.Dir, err)
142 _, elem := filepath.Split(p.Dir)
145 // Remove dir-named executable only if this is package main.
161 for _, dir := range dirs {
162 name := dir.Name(
    [all...]
  /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
exec_windows.go 155 func normalizeDir(dir string) (name string, err error) {
156 ndir, err := FullPath(dir)
161 // dir cannot have \\server\share\path form
174 func joinExeDirAndFName(dir, p string) (name string, err error) {
190 d, err := normalizeDir(dir)
202 d, err := normalizeDir(dir)
215 Dir string
249 if len(attr.Dir) != 0 {
250 // StartProcess assumes that argv0 is relative to attr.Dir,
251 // because it implies Chdir(attr.Dir) before executing argv0
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Ecc.py 119 # Get files real name in workspace dir
213 for Dir in Dirs:
214 Dirname = os.path.join(Root, Dir)
219 Dirs.remove(Dir)
298 # Relative dir, list . current dir
300 for Dir in Dirs:
301 if Dir.upper() == PathParts[0].upper():
302 return Dir
315 for Dir in Dirs:
    [all...]
  /prebuilts/go/darwin-x86/src/go/build/
build_test.go 70 dir := filepath.Clean("testdata/other/file") // Clean to use \ on Windows
71 if p1.Dir != dir {
72 t.Fatalf("./file: Dir=%q, want %q", p1.Name, dir)
103 Dir: filepath.FromSlash("testdata/multi"),
245 if !strings.HasSuffix(filepath.ToSlash(p.Dir), "src/cmd/internal/objfile") {
246 t.Fatalf("Import cmd/internal/objfile returned Dir=%q, want %q", filepath.ToSlash(p.Dir), ".../src/cmd/internal/objfile")
290 {"-I${SRCDIR}/dir", "/tmp/[0]", "-I/tmp/[0]/dir", false}
    [all...]

Completed in 1074 milliseconds

1 2 3 45 6 7 8 91011>>