HomeSort by relevance Sort by last modified time
    Searched refs:Dir (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/
TestRunner.sh 6 Dir=$(dirname $(which $0))
7 AbsDir=$(cd $Dir; pwd)
  /frameworks/compile/slang/
slang_utils.cpp 25 bool SlangUtils::CreateDirectoryWithParents(llvm::StringRef Dir,
27 return !llvm::sys::Path(Dir).createDirectoryOnDisk(/* create_parents = */true,
slang_utils.h 33 static bool CreateDirectoryWithParents(llvm::StringRef Dir,
  /external/compiler-rt/lib/tsan/rtl/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
20 Dependencies := $(wildcard $(Dir)/*.h)
21 Dependencies += $(wildcard $(Dir)/../../interception/*.h)
22 Dependencies += $(wildcard $(Dir)/../../sanitizer_common/*.h)
  /external/compiler-rt/lib/asan/
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)
  /external/compiler-rt/lib/msan/
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)
  /external/compiler-rt/lib/arm/
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/i386/
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/interception/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
  /external/compiler-rt/lib/ppc/
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/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
  /external/compiler-rt/lib/x86_64/
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/utils/analyzer/
SATestAdd.py 34 # Dir is the directory where the sources are.
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, BuildMode, IsReferenceBuild=True, Dir=Dir)
SATestBuild.py 181 def runCleanupScript(Dir, PBuildLogFile):
182 ScriptPath = os.path.join(Dir, CleanupScript)
187 check_call("chmod +x %s" % ScriptPath, cwd = Dir,
191 check_call(ScriptPath, cwd = Dir, stderr=PBuildLogFile,
201 def runScanBuild(Dir, SBOutputDir, PBuildLogFile):
202 BuildScriptPath = os.path.join(Dir, BuildScript)
223 check_call(SBCommand, cwd = Dir, stderr=PBuildLogFile,
246 def runAnalyzePreprocessed(Dir, SBOutputDir, Mode):
247 if os.path.exists(os.path.join(Dir, BuildScript)):
258 PlistPath = os.path.join(Dir, SBOutputDir, "date"
    [all...]
  /external/compiler-rt/make/
subdir.mk 14 ifeq ($(Dir),)
15 $(error "No Dir variable defined.")
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)
    [all...]
  /external/webkit/Tools/Scripts/
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|
roll-over-ChangeLogs 36 Dir.chdir base_directory
  /external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
showtest.rb 25 Dir.chdir('../htdocs')
  /external/clang/include/clang/Lex/
DirectoryLookup.h 40 /// Dir - This is the actual directory that we're referring to for a normal
42 const DirectoryEntry *Dir;
62 /// 'dir'.
63 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
68 u.Dir = dir;
90 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
95 return isFramework() ? u.Dir : 0;
  /external/compiler-rt/lib/profile/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
18 Dependencies := $(wildcard $(Dir)/*.h)
  /external/compiler-rt/lib/sanitizer_common/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 8 enum Dir { L, R };
11 Dir dir; member in struct:Action
21 constexpr Tape(const Tape &old, Dir dir) :
22 l(dir == L ? old.l ? old.l->l : 0 : &old),
23 val(dir == L ? old.l ? old.l->val : false
25 r(dir == R ? old.r ? old.r->r : 0 : &old) {}
31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir);
    [all...]
  /external/clang/tools/scan-build/
scan-build 62 my $Dir = shift;
64 Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n");
111 my $Dir = shift @_;
113 if (!defined $Dir) {
114 $Dir = $ENV{'TMPDIR'};
115 if (!defined $Dir) { $Dir = "/tmp"; }
120 while ($Dir =~ /\/$/) { chop $Dir; }
132 if (-d $Dir) {
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 304 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
305 if (!Dir)
312 TopFrameworkDir = Dir;
344 // Otherwise, construct the path to this framework dir.
363 // If the framework dir doesn't exist, we fail.
364 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
365 if (Dir == 0) return 0;
428 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkPath);
429 if (!Dir)
590 // This file is a system header or C++ unfriendly if the dir is
    [all...]
  /external/compiler-rt/lib/
Makefile.mk 31 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(filter-out $(ExcludedSources),$(notdir $(file))))
36 Dependencies := $(wildcard $(Dir)/*.h)

Completed in 4302 milliseconds

1 2 3