/build/soong/cmd/sbox/ |
sbox.go | 45 flag.BoolVar(&keepOutDir, "keep-out-dir", false, 163 return fmt.Errorf("Failed to create temp dir: %s", err) 170 // in some cases we decline to remove the temp dir, to facilitate debugging 192 dir := path.Join(tempDir, filepath.Dir(filePath)) 193 err = os.MkdirAll(dir, 0777) 265 err := os.MkdirAll(filepath.Dir(destPath), 0777)
|
/build/soong/java/ |
sdk.go | 110 dir := filepath.Join("prebuilts", "sdk", v, api) 111 jar := filepath.Join(dir, "android.jar") 213 dir := filepath.Base(filepath.Dir(filepath.Dir(sdkJar))) 214 v, err := strconv.Atoi(dir)
|
/build/soong/zip/ |
zip_test.go | 150 name: "dir", 153 Dir("a"), 302 name: "dir entries", 365 name: "error missing dir", 367 Dir("missing"),
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
Shell.h | 425 mapping (i.e. fs0:\current-dir).
[all...] |
/external/antlr/runtime/Ruby/lib/antlr3/test/ |
grammar.rb | 307 test( ?d, output_directory ) or Dir.mkdir( output_directory )
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
DIBuilder.h | 80 /// @param Dir Directory 90 void createCompileUnit(unsigned Lang, StringRef File, StringRef Dir,
|
/external/syzkaller/prog/ |
any.go | 162 if arg.Res == nil || arg.Type().Dir() != DirIn { 257 if arg.Type().Dir() == DirOut {
|
hints_test.go | 194 // dataArg.Type().Dir() == DirIn check. 400 if typ := arg.Type(); typ == nil || typ.Dir() == DirOut {
|
mutation.go | 81 if data, ok := arg.(*DataArg); ok && arg.Type().Dir() != DirOut { 410 if typ == nil || typ.Dir() == DirOut || !typ.Varlen() && typ.Size() == 0 {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
Parser.py | 212 for Dir in IncludeList:
213 if os.path.isdir(Dir):
214 SubDir = os.listdir(Dir)
[all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/ |
IpiDb.py | 44 Dir = os.path.dirname(DbPath)
45 if not os.path.isdir(Dir):
46 os.mkdir(Dir)
[all...] |
/external/elfutils/tests/ |
run-readelf-line.sh | 60 Entry Dir Time Size Name 117 Entry Dir Time Size Name 169 Entry Dir Time Size Name 318 Entry Dir Time Size Name 530 # - Entry Dir Time Size Name 547 # - Entry Dir Time Size Name 593 Entry Dir Time Size Name 752 Entry Dir Time Size Name [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
DWARFDebugLine.cpp | 147 DWARFFormValue Dir(dwarf::DW_FORM_string); 148 Dir.setPValue(S.data()); 149 IncludeDirectories.push_back(Dir); 619 *OS << " (" << Name << ", dir=" << FileEntry.DirIdx << ", mod_time=" [all...] |
/build/blueprint/pathtools/ |
glob.go | 132 dir, file := saneSplit(pattern) 141 dirMatches, dirs, err := glob(fs, dir, hasRecursive, follow) 181 // Faster version of dir, file := filepath.Dir(path), filepath.File(path) with no allocations 182 // Similar to filepath.Split, but returns "." if dir is empty and trims trailing slash if dir is 184 func saneSplit(path string) (dir, file string) { 188 dir, file = filepath.Split(path) 189 switch dir { 191 dir = ". [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
GenC.py | [all...] |
/external/antlr/runtime/Ruby/lib/antlr3/ |
task.rb | 134 dir = options[ :output_directory ] and @output_directory = dir.to_s 178 if test( ?d, output_directory ) and ( Dir.entries( output_directory ) - %w( . .. ) ).empty? 195 dir = @load_path.find do | dir | 196 File.file?( File.join( dir, file_name ) ) 198 dir and return( File.join( dir, file_name ) ) 202 dir = output_directory 203 test( ?d, dir ) or FileUtils.mkpath( dir [all...] |
/external/libcxx/test/support/ |
filesystem_test_helper.hpp | 50 static const fs::path Dir = TestDirList[0];
|
/external/llvm/bindings/go/llvm/ |
dibuilder.go | 116 Dir string 127 dir := C.CString(cu.Dir) 128 defer C.free(unsafe.Pointer(dir)) 136 file, dir, 146 func (d *DIBuilder) CreateFile(filename, dir string) Metadata { 149 cdir := C.CString(dir)
|
/external/llvm/include/llvm/IR/ |
DIBuilder.h | 82 /// \param Dir Directory 99 createCompileUnit(unsigned Lang, StringRef File, StringRef Dir, [all...] |
/external/syzkaller/sys/test/gen/ |
32.go | [all...] |
64.go | [all...] |
/build/blueprint/bootstrap/ |
doc.go | 55 // srcDir := filepath.Dir(flag.Arg(0))
|
/build/soong/android/ |
config.go | 176 f, err := ioutil.TempFile(filepath.Dir(filename), "config") 299 return Config{}, fmt.Errorf("Build dir must not contain source directory") 381 for _, dir := range filepath.SplitList(c.Getenv("PATH")) { 382 path := filepath.Join(dir, name) 585 return PathForSource(ctx, filepath.Dir(defaultCert)) 604 if defaultCert == "" || filepath.Dir(defaultCert) == "build/target/product/security" { 606 // that is under the module dir 610 return PathForSource(ctx, filepath.Dir(defaultCert))
|
/build/soong/cc/ |
llndk_library.go | 117 headerDir := filepath.Dir(header.String()) 143 for _, dir := range stub.Properties.Export_preprocessed_headers { 144 timestampFiles = append(timestampFiles, stub.processHeaders(ctx, dir, genHeaderOutDir))
|
/build/soong/cmd/path_interposer/ |
main.go | 48 interposer = filepath.Join(filepath.Dir(interposer), link)
|