/build/soong/cmd/extract_jar_packages/ |
extract_jar_packages.go | 42 dir := filepath.Dir(file) 43 return strings.Replace(dir, "/", ".", -1)
|
/build/soong/cmd/soong_build/ |
main.go | 56 srcDir := filepath.Dir(flag.Arg(0))
|
/build/soong/ui/build/ |
proc_sync_test.go | 47 lockdir := filepath.Dir(fileLock.File.Name()) 135 lockdir := filepath.Dir(lockfile.File.Name()) 149 reacquired, message, err := forkAndGetLock(filepath.Dir(lockfile.File.Name())) 162 reacquired, message, err = forkAndGetLock(filepath.Dir(lockfile.File.Name()))
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/ |
RmPkg.py | 47 # @param WorkspaceDir: Workspace Dir
104 # @param WorkspaceDir: Workspace Dir
108 for Dir in DataBase.GetDpInstallDirList(Guid, Version):
109 RootDir = os.path.normpath(os.path.join(WorkspaceDir, Dir))
|
/external/clang/include/clang/Driver/ |
Driver.h | 108 std::string Dir; 262 return Dir.c_str();
|
/external/clang/include/clang/Lex/ |
ModuleMap.h | 304 void setBuiltinIncludeDir(const DirectoryEntry *Dir) { 305 BuiltinIncludeDir = Dir;
|
/external/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ |
ctor.pass.cpp | 174 const path testDir = StaticEnv::Dir; 210 const path goodDir = StaticEnv::Dir;
|
/external/llvm/lib/LibDriver/ |
LibDriver.cpp | 93 for (auto Dir : Paths) { 94 SmallString<128> Path = Dir;
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
DbgInfoPrinter.cpp | 121 std::string &File, std::string &Dir) { 168 Dir = D;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/ |
LibDriver.cpp | 91 for (StringRef Dir : Paths) { 92 SmallString<128> Path = Dir;
|
/external/syzkaller/pkg/ast/ |
walk.go | 34 cb(n.Dir)
|
/external/syzkaller/pkg/build/ |
linux.go | 53 cmd.Dir = kernelDir 68 cmd.Dir = kernelDir 92 cmd.Dir = tempDir 123 cmd.Dir = kernelDir
|
/external/syzkaller/pkg/runtest/ |
run_test.go | 63 Dir: filepath.Join("..", "..", "sys", target.OS, "test"),
|
/external/syzkaller/pkg/vcs/ |
vcs.go | 76 func NewRepo(os, vm, dir string) (Repo, error) { 79 return newGit(os, vm, dir), nil 81 return newAkaros(vm, dir), nil 83 return newFuchsia(vm, dir), nil 88 func NewSyzkallerRepo(dir string) Repo { 89 return newGit("syzkaller", "", dir) 92 func Patch(dir string, patch []byte) error { 99 cmd.Dir = dir 108 cmd.Dir = di [all...] |
/external/syzkaller/pkg/compiler/ |
gen.go | 113 return si.Key.Dir < sj.Key.Dir 244 func (comp *compiler) genStructDesc(res *prog.StructDesc, n *ast.Struct, dir prog.Dir, varlen bool) { 247 common := genCommon(n.Name.Name, "", sizeUnassigned, dir, false) 251 Fields: comp.genFieldArray(n.Fields, dir, false), 389 func (comp *compiler) genField(f *ast.Field, dir prog.Dir, isArg bool) prog.Type { 390 return comp.genType(f.Type, f.Name.Name, dir, isArg) 393 func (comp *compiler) genFieldArray(fields []*ast.Field, dir prog.Dir, isArg bool) []prog.Type [all...] |
/external/clang/lib/Frontend/ |
FrontendAction.cpp | 290 for (llvm::sys::fs::directory_iterator Dir(DirNative, EC), DirEnd; 291 Dir != DirEnd && !EC; Dir.increment(EC)) { 294 Dir->path(), FileMgr, CI.getPCHContainerReader(), 297 PPOpts.ImplicitPCHInclude = Dir->path();
|
FrontendActions.cpp | 217 for (vfs::recursive_directory_iterator Dir(FS, DirNative, EC), End; 218 Dir != End && !EC; Dir.increment(EC)) { 221 if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->getName())) 226 const FileEntry *Header = FileMgr.getFile(Dir->getName()); 239 auto PathIt = llvm::sys::path::rbegin(Dir->getName()); 240 for (int I = 0; I != Dir.level() + 1; ++I, ++PathIt)
|
/external/clang/lib/Lex/ |
PPLexerChange.cpp | 233 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, 242 if (CurDir == Dir) { 488 const DirectoryEntry *Dir = Mod->getUmbrellaDir().Entry; 491 for (vfs::recursive_directory_iterator Entry(FS, Dir->getName(), EC), End; 508 computeRelativePath(FileMgr, Dir, Header, RelativePath);
|
/external/syzkaller/syz-ci/ |
syzupdater.go | 57 if wd != filepath.Dir(bin) { 72 "bin/syz-ci": true, // these are just copied from syzkaller dir 211 return fmt.Errorf("failed to read descriptions dir: %v", err) 222 cmd.Dir = upd.syzkallerDir 228 cmd.Dir = upd.syzkallerDir 236 cmd.Dir = upd.syzkallerDir 249 cmd.Dir = upd.syzkallerDir
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/ |
BootOption.c | 539 @retval EFI_SUCCESS Get files from current dir successfully.
540 @return Other value if can't get files from current dir.
550 EFI_FILE_HANDLE Dir;
562 Dir = FileContext->FHandle;
567 Status = Dir->Open (
568 Dir,
575 Dir->Close (Dir);
[all...] |
/external/clang/lib/Driver/ |
ToolChains.cpp | 47 // We expect 'as', 'ld', etc. to be adjacent to our install dir. 49 if (getDriver().getInstalledDir() != getDriver().Dir) 50 getProgramPaths().push_back(getDriver().Dir); 302 SmallString<128> Dir(getDriver().ResourceDir); 303 llvm::sys::path::append(Dir, "lib", IsEmbedded ? "macho_embedded" : "darwin"); 305 SmallString<128> P(Dir); 326 // Add the path to the resource dir to rpath to support using the dylib 329 CmdArgs.push_back(Args.MakeArgString(Dir)); 740 // it was previously found in the gcc lib dir. However, for all the Darwin 778 // only present in the gcc lib dir, which makes it hard to find) [all...] |
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
ClassPath.java | 50 public boolean accept( final File dir, String name ) { 80 list.add(new Dir(path)); 397 private static class Dir extends PathEntry { 399 private final String dir; field in class:ClassPath.Dir 402 Dir(final String d) { 403 dir = d; 409 final File file = new File(dir + File.separatorChar + name.replace('/', File.separatorChar)); 420 final File file = new File(dir + File.separatorChar + name.replace('/', File.separatorChar)); 430 final File file = new File(dir + File.separatorChar 464 return dir; [all...] |
/external/clang/tools/scan-build/libexec/ |
ccc-analyzer | 36 DIR => $HtmlDir, 58 foreach my $dir (split (':', $ENV{PATH})) { 59 if (-x "$dir/$file") { 150 my $Dir = "$HtmlDir/failures"; 151 mkpath $Dir; 167 DIR => $Dir); 260 my $dir; 263 $dir = getcwd(); 264 print STDERR "\n[LOCATION]: $dir\n" [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
dwarf2yaml.cpp | 272 StringRef Dir = LineData.getCStr(&Offset); 273 if (!Dir.empty()) 274 DebugLines.IncludeDirs.push_back(Dir);
|
/external/syzkaller/sys/linux/gen/ |
386.go | [all...] |