/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 64 OMPParallelDirective *Dir = in Create() local 66 Dir->setClauses(Clauses); in Create() 67 Dir->setAssociatedStmt(AssociatedStmt); in Create() 68 Dir->setHasCancel(HasCancel); in Create() 69 return Dir; in Create() 92 OMPSimdDirective *Dir = new (Mem) in Create() local 94 Dir->setClauses(Clauses); in Create() 95 Dir->setAssociatedStmt(AssociatedStmt); in Create() 96 Dir->setIterationVariable(Exprs.IterationVarRef); in Create() 97 Dir->setLastIteration(Exprs.LastIteration); in Create() [all …]
|
/external/clang/tools/scan-build/bin/ |
D | scan-build | 101 my $Dir = shift; 103 Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n"); 150 my $Dir = shift @_; 152 if (!defined $Dir) { 153 $Dir = $ENV{'TMPDIR'} || $ENV{'TEMP'} || $ENV{'TMP'} || "/tmp"; 158 while ($Dir =~ /\/$/) { chop $Dir; } 176 if (-d $Dir) { 177 if (! -r $Dir) { 178 DieDiag("directory '$Dir' exists but is not readable.\n"); 182 opendir(DIR, $Dir); [all …]
|
/external/clang/utils/analyzer/ |
D | SATestBuild.py | 205 def runCleanupScript(Dir, PBuildLogFile): argument 206 Cwd = os.path.join(Dir, PatchedSourceDirName) 207 ScriptPath = os.path.join(Dir, CleanupScript) 211 def runDownloadScript(Dir, PBuildLogFile): argument 212 ScriptPath = os.path.join(Dir, DownloadScript) 213 runScript(ScriptPath, PBuildLogFile, Dir) 234 def downloadAndPatch(Dir, PBuildLogFile): argument 235 CachedSourceDirPath = os.path.join(Dir, CachedSourceDirName) 240 runDownloadScript(Dir, PBuildLogFile) 245 PatchedSourceDirPath = os.path.join(Dir, PatchedSourceDirName) [all …]
|
D | SATestAdd.py | 62 Dir = SATestBuild.getProjectDir(ID) 63 if not os.path.exists(Dir): 64 print "Error: Project directory is missing: %s" % Dir 68 SATestBuild.testProject(ID, BuildMode, IsReferenceBuild=True, Dir=Dir)
|
/external/compiler-rt/make/ |
D | subdir.mk | 15 ifeq ($(Dir),) 30 $(call Set,Dir,$(1)) 32 $$(info MAKE: $(Dir): Processing subdirectory) 38 $(call Set,$(DirKey).Dir,$(Dir)) 50 $$(info MAKE: $(Dir): $$(var) is defined), \ 51 $$(info MAKE: $(Dir): $$(var) is undefined))) 58 $$(error $(Dir): variable '$$(var)' was not undefined))) 71 $$(call Set,Dir,$(1)) 74 $$(info MAKE: $$(Dir): Done processing subdirectory) 81 $(if $(call streq,.,$(Dir)),\ [all …]
|
/external/clang/lib/Lex/ |
D | HeaderSearch.cpp | 148 auto *Dir = in getModuleFileName() local 150 if (!Dir) in getModuleFileName() 152 auto DirName = FileMgr.getCanonicalName(Dir); in getModuleFileName() 254 StringRef FileName, const DirectoryEntry *Dir, bool IsSystemHeaderDir, in getFileAndSuggestModule() argument 263 if (!findUsableModuleForHeader(File, Dir ? Dir : File->getDir(), in getFileAndSuggestModule() 383 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName); in getTopFrameworkDir() local 384 if (!Dir) in getTopFrameworkDir() 391 TopFrameworkDir = Dir; in getTopFrameworkDir() 440 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName); in DoFrameworkLookup() local 441 if (!Dir) return nullptr; in DoFrameworkLookup() [all …]
|
/external/compiler-rt/lib/lsan/ |
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)/../sanitizer_common/*.h) 24 LsanCommonSources := $(foreach file,$(wildcard $(Dir)/lsan_common*.cc),$(notdir $(file)))
|
/external/compiler-rt/lib/asan/ |
D | Makefile.mk | 13 CCSources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) 16 SSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 23 Dependencies := $(wildcard $(Dir)/*.h) 24 Dependencies += $(wildcard $(Dir)/../interception/*.h) 25 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
|
/external/skia/src/core/ |
D | SkDataTable.cpp | 35 SkDataTable::SkDataTable(const Dir* dir, int count, FreeProc proc, void* ctx) { in SkDataTable() 99 size_t bufferSize = count * sizeof(Dir) + dataSize; in NewCopyArrays() 102 Dir* dir = (Dir*)buffer; in NewCopyArrays() 162 SkDataTable::Dir* dir = fDir.append(); in append() 174 void* dir = fHeap->alloc(count * sizeof(SkDataTable::Dir), in detachDataTable() 176 memcpy(dir, fDir.begin(), count * sizeof(SkDataTable::Dir)); in detachDataTable() 178 SkDataTable* table = new SkDataTable((SkDataTable::Dir*)dir, count, chunkalloc_freeproc, fHeap); in detachDataTable()
|
/external/compiler-rt/lib/profile/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c $(Dir)/*.cc),$(notdir $(file))) 18 Dependencies := $(wildcard $(Dir)/*.h)
|
/external/compiler-rt/lib/interception/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) 19 Dependencies := $(wildcard $(Dir)/*.h) 20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 184 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override; 207 SmallString<256> Dir; in getCurrentWorkingDirectory() local 208 if (std::error_code EC = llvm::sys::fs::current_path(Dir)) in getCurrentWorkingDirectory() 210 return Dir.str().str(); in getCurrentWorkingDirectory() 222 StringRef Dir = Path.toNullTerminatedStringRef(Storage); in setCurrentWorkingDirectory() local 223 if (int Err = ::chdir(Dir.data())) in setCurrentWorkingDirectory() 265 directory_iterator RealFileSystem::dir_begin(const Twine &Dir, in dir_begin() argument 267 return directory_iterator(std::make_shared<RealFSDirIter>(Dir, EC)); in dir_begin() 380 directory_iterator OverlayFileSystem::dir_begin(const Twine &Dir, in dir_begin() argument 383 std::make_shared<OverlayFSDirIterImpl>(Dir, *this, EC)); in dir_begin() [all …]
|
/external/compiler-rt/lib/builtins/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/builtins/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/builtins/armv6m/ |
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/builtins/arm64/ |
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/builtins/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/sanitizer_common/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) 14 NolibcSources := $(foreach file,$(wildcard $(Dir)/*_nolibc.cc),$(notdir $(file))) 21 Dependencies := $(wildcard $(Dir)/*.h)
|
/external/compiler-rt/lib/builtins/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/compiler-rt/lib/ubsan/ |
D | Makefile.mk | 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) 22 Dependencies := $(wildcard $(Dir)/*.h) 23 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
|
/external/clang/test/SemaCXX/ |
D | constexpr-turing.cpp | 8 enum Dir { L, R }; enum 11 Dir dir; 21 constexpr Tape(const Tape &old, Dir dir) : in Tape() 31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } in move()
|
/external/clang/include/clang/Lex/ |
D | DirectoryLookup.h | 43 const DirectoryEntry *Dir; member 73 u.Dir = dir; in DirectoryLookup() 96 return isNormalDir() ? u.Dir : nullptr; in getDir() 102 return isFramework() ? u.Dir : nullptr; in getFrameworkDir()
|
/external/skia/include/core/ |
D | SkDataTable.h | 95 struct Dir { struct 103 const Dir* fDir; argument 113 SkDataTable(const Dir*, int count, FreeProc, void* context); 170 SkTDArray<SkDataTable::Dir> fDir;
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerIO.cpp | 30 static std::vector<std::string> ListFilesInDir(const std::string &Dir, in ListFilesInDir() argument 34 auto E = GetEpoch(Dir); in ListFilesInDir() 38 DIR *D = opendir(Dir.c_str()); in ListFilesInDir() 40 Printf("No such directory: %s; exiting\n", Dir.c_str()); in ListFilesInDir()
|
/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 )
|