Searched defs:base_dir (Results 1 - 9 of 9) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/
H A Dsetup.py6 base_dir = 'python2' variable
8 base_dir = 'python3' variable
20 'crcmod' : os.path.join(base_dir,'crcmod'),
24 Extension('crcmod._crcfunext', [os.path.join(base_dir,'src/_crcfunext.c'), ],
/external/autotest/client/tests/kvm/
H A Dget_started.py73 base_dir = "/tmp/kvm_autotest_root" variable
76 sub_dir_path = os.path.join(base_dir, sub_dir)
107 destination = os.path.join(base_dir, 'isos', 'linux')
120 destination = os.path.join(base_dir, 'isos', 'windows')
/external/chromium-trace/catapult/telemetry/telemetry/story/
H A Dstory_set.py20 base_dir=None, serving_dirs=None):
25 to self.base_dir.
30 serving_dirs: A set of paths, relative to self.base_dir, to directories
39 if base_dir:
40 if not os.path.isdir(base_dir):
41 raise ValueError('Invalid directory path of base_dir: %s' % base_dir)
42 self._base_dir = base_dir
46 self._serving_dirs = set(os.path.realpath(os.path.join(self.base_dir, d))
68 def base_dir(sel member in class:StorySet
[all...]
/external/chromium-trace/catapult/third_party/WebOb/docs/comment-example-code/
H A Dexample.py137 base_dir = args[0] variable in class:Commenter
139 app = StaticURLParser(base_dir)
/external/v8/tools/release/
H A Dtest_mergeinfo.py20 base_dir = TEST_CONFIG["GIT_REPO"] variable in class:TestMergeInfo
24 fullCommand = ["git", "-C", self.base_dir] + git_args
34 if path.exists(self.base_dir):
35 shutil.rmtree(self.base_dir)
37 check_call(["git", "init", self.base_dir])
45 if path.exists(self.base_dir):
46 shutil.rmtree(self.base_dir)
78 self.base_dir,
90 self.base_dir,
110 self.base_dir,
[all...]
H A Dtest_search_related_commits.py20 base_dir = TEST_CONFIG["GIT_REPO"] variable in class:TestSearchRelatedCommits
24 fullCommand = ["git", "-C", self.base_dir] + git_args
34 if path.exists(self.base_dir):
35 shutil.rmtree(self.base_dir)
37 check_call(["git", "init", self.base_dir])
60 if path.exists(self.base_dir):
61 shutil.rmtree(self.base_dir)
102 self.base_dir, hash_of_first_commit, "HEAD", None)
122 self.base_dir, hash_of_first_commit, "HEAD", None)
146 self.base_dir,
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/page/
H A D__init__.py18 def __init__(self, url, page_set=None, base_dir=None, name='',
31 # Default value of base_dir is the directory of the file that defines the
33 if base_dir is None:
34 base_dir = os.path.dirname(inspect.getfile(self.__class__))
35 self._base_dir = base_dir
171 def base_dir(self): member in class:Page
/external/valgrind/coregrind/
H A Dm_options.c167 const HChar *base_dir; local
172 base_dir = VG_(get_startup_wd)();
275 len = VG_(strlen)(base_dir) + 1 + VG_(strlen)(out) + 1;
278 VG_(strcpy)(absout, base_dir);
/external/libchrome/base/files/
H A Dfile_util_posix.cc534 static bool CreateTemporaryDirInDirImpl(const FilePath& base_dir, argument
541 FilePath sub_dir = base_dir.Append(name_tmpl);
555 bool CreateTemporaryDirInDir(const FilePath& base_dir, argument
560 return CreateTemporaryDirInDirImpl(base_dir, mkdtemp_template, new_dir);

Completed in 422 milliseconds