/external/clang/tools/scan-build/ |
D | scan-build | 60 my $Dir = shift; 62 Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n"); 108 my $Dir = shift @_; 110 if (!defined $Dir) { 112 $Dir = $ENV{'TMPDIR'}; 113 if (!defined $Dir) { $Dir = "/tmp"; } 116 $Dir = "/tmp"; 122 while ($Dir =~ /\/$/) { chop $Dir; } 134 if (-d $Dir) { 135 if (! -r $Dir) { [all …]
|
/external/compiler-rt/make/ |
D | subdir.mk | 14 ifeq ($(Dir),) 29 $(call Set,Dir,$(1)) 31 $$(info MAKE: $(Dir): Processing subdirectory) 37 $(call Set,$(DirKey).Dir,$(Dir)) 49 $$(info MAKE: $(Dir): $$(var) is defined), \ 50 $$(info MAKE: $(Dir): $$(var) is undefined))) 57 $$(error $(Dir): variable '$$(var)' was not undefined))) 70 $$(call Set,Dir,$(1)) 73 $$(info MAKE: $$(Dir): Done processing subdirectory) 80 $(if $(call streq,.,$(Dir)),\ [all …]
|
/external/clang/utils/analyzer/ |
D | SATestBuild.py | 110 def runCleanupScript(Dir, PBuildLogFile): argument 111 ScriptPath = os.path.join(Dir, CleanupScript) 116 check_call("chmod +x %s" % ScriptPath, cwd = Dir, 120 check_call(ScriptPath, cwd = Dir, stderr=PBuildLogFile, 130 def runScanBuild(Dir, SBOutputDir, PBuildLogFile): argument 131 BuildScriptPath = os.path.join(Dir, BuildScript) 144 check_call(SBCommand, cwd = Dir, stderr=PBuildLogFile, 167 def runAnalyzePreprocessed(Dir, SBOutputDir): argument 168 if os.path.exists(os.path.join(Dir, BuildScript)): 176 PlistPath = os.path.join(Dir, SBOutputDir, "date") [all …]
|
D | SATestAdd.py | 38 Dir = SATestBuild.getProjectDir(ID) 39 if not os.path.exists(Dir): 40 print "Error: Project directory is missing: %s" % Dir 44 SATestBuild.testProject(ID, True, IsScanBuild, Dir)
|
/external/clang/lib/Lex/ |
D | HeaderSearch.cpp | 310 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str()); in DoFrameworkLookup() local 311 if (Dir == 0) return 0; in DoFrameworkLookup() 608 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str()); in LookupSubframeworkHeader() local 609 if (Dir == 0) return 0; in LookupSubframeworkHeader() 613 CacheLookup.getValue().Directory = Dir; in LookupSubframeworkHeader() 805 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName); in hasModuleMap() local 806 if (!Dir) in hasModuleMap() 810 switch (loadModuleMapFile(Dir)) { in hasModuleMap() 826 if (Dir == Root) in hasModuleMap() 831 FixUpDirectories.push_back(Dir); in hasModuleMap() [all …]
|
D | ModuleMap.cpp | 111 const DirectoryEntry *Dir = File->getDir(); in findModuleForHeader() local 113 StringRef DirName = Dir->getName(); in findModuleForHeader() 119 = UmbrellaDirs.find(Dir); in findModuleForHeader() 176 SkippedDirs.push_back(Dir); in findModuleForHeader() 184 Dir = SourceMgr->getFileManager().getDirectory(DirName); in findModuleForHeader() 185 } while (Dir); in findModuleForHeader() 196 const DirectoryEntry *Dir = Header->getDir(); in isHeaderInUnavailableModule() local 198 StringRef DirName = Dir->getName(); in isHeaderInUnavailableModule() 204 = UmbrellaDirs.find(Dir); in isHeaderInUnavailableModule() 237 SkippedDirs.push_back(Dir); in isHeaderInUnavailableModule() [all …]
|
D | PPLexerChange.cpp | 207 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, in computeRelativePath() argument 216 if (CurDir == Dir) { in computeRelativePath() 363 const DirectoryEntry *Dir = Mod->getUmbrellaDir(); in HandleEndOfFile() local 365 for (recursive_directory_iterator Entry(Dir->getName(), EC), End; in HandleEndOfFile() 381 computeRelativePath(FileMgr, Dir, Header, RelativePath); in HandleEndOfFile()
|
/external/compiler-rt/lib/asan/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) 19 Dependencies := $(wildcard $(Dir)/*.h) 20 Dependencies += $(wildcard $(Dir)/interception/*.h) 21 Dependencies += $(wildcard $(Dir)/interception/mach_override/*.h)
|
/external/compiler-rt/lib/asan/interception/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) 19 Dependencies := $(wildcard $(Dir)/*.h) 20 Dependencies += $(wildcard $(Dir)/mach_override/*.h)
|
/external/compiler-rt/lib/i386/ |
D | Makefile.mk | 14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/external/compiler-rt/lib/x86_64/ |
D | Makefile.mk | 14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/external/compiler-rt/lib/ppc/ |
D | Makefile.mk | 14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/external/compiler-rt/lib/arm/ |
D | Makefile.mk | 14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/external/clang/include/clang/Lex/ |
D | DirectoryLookup.h | 42 const DirectoryEntry *Dir; member 72 u.Dir = dir; in DirectoryLookup() 94 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; } in getDir() 99 return isFramework() ? u.Dir : 0; in getFrameworkDir()
|
D | ModuleMap.h | 111 void setBuiltinIncludeDir(const DirectoryEntry *Dir) { in setBuiltinIncludeDir() argument 112 BuiltinIncludeDir = Dir; in setBuiltinIncludeDir()
|
/external/clang/test/SemaCXX/ |
D | constexpr-turing.cpp | 7 enum Dir { L, R }; enum 10 Dir dir; 20 constexpr Tape(const Tape &old, Dir dir) : in Tape() 30 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } in move()
|
/external/webkit/Tools/Scripts/ |
D | check-for-inappropriate-files-in-framework | 34 Dir.chdir base_directory 50 Dir.chdir framework_bundle_path do 52 Dir.glob(pattern).each do |inappropriate_file|
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
D | core-extensions.rb | 187 def self.relative_path( target, reference = Dir.pwd ) 210 class Dir class in String 213 entries = Dir.entries( directory ) - DOTS 224 Dir.mkdir( path )
|
/external/clang/test/ |
D | TestRunner.sh | 6 Dir=$(dirname $(which $0)) 7 AbsDir=$(cd $Dir; pwd)
|
/external/compiler-rt/lib/profile/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 18 Dependencies := $(wildcard $(Dir)/*.h)
|
/external/compiler-rt/lib/asan/interception/mach_override/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 19 Dependencies := $(wildcard $(Dir)/*.h)
|
/external/compiler-rt/lib/ |
D | Makefile.mk | 26 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(filter-out $(ExcludedSources),$(notdir $(file)))) 31 Dependencies := $(wildcard $(Dir)/*.h)
|
/external/clang/tools/libclang/ |
D | CIndexer.h | 64 void setWorkingDirectory(const std::string &Dir) { WorkingDir = Dir; } in setWorkingDirectory() argument
|
/external/clang/lib/Frontend/ |
D | FrontendActions.cpp | 170 for (llvm::sys::fs::recursive_directory_iterator Dir(DirNative.str(), EC), in collectModuleHeaderIncludes() local 172 Dir != DirEnd && !EC; Dir.increment(EC)) { in collectModuleHeaderIncludes() 175 if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path())) in collectModuleHeaderIncludes() 182 if (const FileEntry *Header = FileMgr.getFile(Dir->path())) in collectModuleHeaderIncludes() 191 Includes += Dir->path(); in collectModuleHeaderIncludes()
|
/external/clang/lib/Driver/ |
D | ToolChains.cpp | 257 if (getDriver().getInstalledDir() != getDriver().Dir) in DarwinClang() 258 getProgramPaths().push_back(getDriver().Dir); in DarwinClang() 262 if (getDriver().getInstalledDir() != getDriver().Dir) in DarwinClang() 263 getProgramPaths().push_back(getDriver().Dir); in DarwinClang() 280 std::string Path = getDriver().Dir; in AddGCCLibexecPath() 299 llvm::sys::Path P(getDriver().Dir); in AddLinkSearchPathArgs() 1379 if (getDriver().getInstalledDir() != getDriver().Dir) in Generic_GCC() 1380 getProgramPaths().push_back(getDriver().Dir); in Generic_GCC() 1451 if (getDriver().getInstalledDir() != getDriver().Dir.c_str()) in Hexagon_TC() 1452 getProgramPaths().push_back(getDriver().Dir); in Hexagon_TC() [all …]
|