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

1 2

  /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,
  /frameworks/compile/libbcc/runtime/lib/arm/
Makefile.mk 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /frameworks/compile/libbcc/runtime/lib/i386/
Makefile.mk 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /frameworks/compile/libbcc/runtime/lib/ppc/
Makefile.mk 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /frameworks/compile/libbcc/runtime/lib/x86_64/
Makefile.mk 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /frameworks/compile/libbcc/runtime/make/
subdir.mk 14 ifeq ($(Dir),)
15 $(error "No Dir variable defined.")
28 $(call Set,Dir,$(1))
30 $$(info MAKE: $(Dir): Processing subdirectory)
36 $(call Set,$(DirKey).Dir,$(Dir))
48 $$(info MAKE: $(Dir): $$(var) is defined), \
49 $$(info MAKE: $(Dir): $$(var) is undefined)))
56 $$(error $(Dir): variable '$$(var)' was not undefined)))
69 $$(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
check-for-webkit-framework-include-consistency 34 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 42 /// Dir - This is the actual directory that we're referring to for a normal
44 const DirectoryEntry *Dir;
64 /// 'dir'.
65 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
69 u.Dir = dir;
90 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
95 return isFramework() ? u.Dir : 0;
  /frameworks/compile/libbcc/runtime/lib/
Makefile.mk 12 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
17 Dependencies := $(wildcard $(Dir)/*.h)
  /external/clang/tools/scan-build/
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; }
    [all...]
  /external/clang/tools/libclang/
CIndexer.h 52 void setWorkingDirectory(const std::string &Dir) { WorkingDir = Dir; }
  /external/clang/include/clang/Basic/
FileManager.h 61 const DirectoryEntry *Dir; // Directory file lives in.
100 const DirectoryEntry *getDir() const { return Dir; }
  /development/tools/findunused/
find_unused_resources.rb 92 Dir.glob(glob).each { |filename|
105 def findUnusedResources(dir)
111 Dir.glob("#{dir}/res/**/*.xml").each { |filename|
131 Dir.glob("#{dir}/AndroidManifest.xml").each { |filename|
143 recordJavaUses("#{dir}/src/**/*.java")
161 result.appDir = dir
168 def findApps(dir)
170 Dir.glob("#{dir}/**/res").each { |filename
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 387 llvm::sys::Path Dir, Filename;
394 UbigraphViz(llvm::raw_ostream* out, llvm::sys::Path& dir,
407 llvm::sys::Path Dir = llvm::sys::Path::GetTemporaryDirectory(&ErrMsg);
411 llvm::sys::Path Filename = Dir;
426 return new UbigraphViz(Stream.take(), Dir, Filename);
463 UbigraphViz::UbigraphViz(llvm::raw_ostream* out, llvm::sys::Path& dir,
465 : Out(out), Dir(dir), Filename(filename), Cntr(0) {
487 Dir.eraseFromDisk(true);
  /external/clang/include/clang/Driver/
Driver.h 63 std::string Dir;
210 return Dir.c_str();
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 194 StringRef Dir = DIUnit.getDirectory();
195 GetOrCreateSourceID(FN, Dir);
261 StringRef Dir;
268 Dir = CU.getDirectory();
272 Dir = F.getDirectory();
276 Dir = SP.getDirectory();
280 Dir = DB.getDirectory();
284 Src = GetOrCreateSourceID(Fn, Dir);
  /external/clang/lib/Driver/
ToolChains.cpp 269 if (getDriver().getInstalledDir() != getDriver().Dir)
270 getProgramPaths().push_back(getDriver().Dir);
272 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
274 if (getDriver().getInstalledDir() != getDriver().Dir)
275 getProgramPaths().push_back(getDriver().Dir);
284 std::string Path = getDriver().Dir;
301 llvm::sys::Path P(getDriver().Dir);
631 // it was previously found in the gcc lib dir. However, for all the Darwin
672 // only present in the gcc lib dir, which makes it hard to find).
    [all...]
Driver.cpp 82 Dir = llvm::sys::path::parent_path(ClangExecutable);
86 llvm::SmallString<128> P(Dir);
269 Dir = InstalledDir = A->getValue(*Args);
    [all...]
  /external/chromium/build/
install-build-deps.sh 373 Dir::Cache "${tmp}/cache";
374 Dir::Cache::Archives "${tmp}/";
375 Dir::State::Lists "${tmp}/apt/lists/";
376 Dir::State::status "${tmp}/status";
  /external/llvm/lib/Analysis/
DbgInfoPrinter.cpp 121 std::string &File, std::string &Dir) {
168 Dir = D;

Completed in 1346 milliseconds

1 2