Searched refs:base_dir (Results 1 - 23 of 23) sorted by relevance

/external/zlib/
H A Dupdate_zlib.sh9 base_dir=$(realpath $(dirname $0))
24 src_dir=$base_dir/src
28 cd $base_dir
/external/oprofile/libutil/
H A Dop_file.h76 * @param base_dir directory from where lookup starts
79 * NO_RECURSION: Find matching files from passed base_dir and call
81 * MATCH_ANY_ENTRY_RECURSION: Starting at base_dir, for each entry in the
85 * MATCH_DIR_ONLY_RECURSION: Starting at base_dir, if an entry in the
92 * Return a list of pathnames under base_dir, filtered by filter and optionally
101 char const * base_dir, char const * filter,
H A Dop_file.c116 char const * base_dir, char const * filter,
139 if (!(dir = opendir(base_dir)))
158 name = make_pathname_from_dirent(base_dir, ent,
173 name = make_pathname_from_dirent(base_dir, ent,
115 get_matching_pathnames(void * name_list, get_pathname_callback getpathname, char const * base_dir, char const * filter, enum recursion_type recursion) argument
/external/chromium/chrome/browser/net/
H A Durl_fixer_upper.h53 // the local filesystem. Begin searching in |base_dir|; if empty, use the
61 GURL FixupRelativeFile(const FilePath& base_dir, const FilePath& text);
H A Durl_fixer_upper.cc520 GURL URLFixerUpper::FixupRelativeFile(const FilePath& base_dir, argument
523 if (!base_dir.empty()) {
526 file_util::SetCurrentDirectory(base_dir);
554 if (!base_dir.empty())
/external/oprofile/gui/
H A Doprof_start_util.h36 std::string const do_open_file_or_dir(std::string const & base_dir, bool dir_only);
H A Doprof_start_util.cpp285 * @param base_dir directory to start at
291 string const do_open_file_or_dir(string const & base_dir, bool dir_only) argument
296 result = QFileDialog::getExistingDirectory(base_dir.c_str(), 0,
299 result = QFileDialog::getOpenFileName(base_dir.c_str(), 0, 0,
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dtest_files.py66 def normalize(filesystem, base_dir, paths):
67 return [filesystem.normpath(filesystem.join(base_dir, path)) for path in paths]
H A Dconfig_unittest.py187 base_dir = c.webkit_base_dir()
188 self.assertTrue(base_dir)
189 self.assertNotEqual(base_dir[-1], '/')
199 self.assertEqual(base_dir, base_dir_2)
/external/oprofile/libpp/
H A Dprofile_spec.cpp376 bool valid_candidate(string const & base_dir, string const & filename, argument
384 string const & sub = filename.substr(base_dir.size(), string::npos);
430 unsigned int j = base_dir.rfind('/');
431 string session_samples_dir = base_dir.substr(0, j);
530 string base_dir; local
533 base_dir = archive_path + op_samples_dir;
534 base_dir += *cit;
536 base_dir = op_realpath(base_dir);
539 create_file_list(files, base_dir, "*", tru
[all...]
/external/oprofile/libutil++/
H A Dfile_manip.h57 * @param base_dir directory from where lookup start
61 * create a filelist under base_dir, filtered by filter and optionally
66 std::string const & base_dir,
H A Dfile_manip.cpp120 bool create_file_list(list<string> & file_list, string const & base_dir, argument
124 base_dir.c_str(), filter.c_str(),
/external/webkit/Tools/CodeCoverage/
H A Drun-generate-coverage-data62 def parse_dependency_file(src, base_dir, black_list):
81 deps = filter(lambda x: base_dir in x, deps)
215 base_dir = os.path.abspath(os.path.curdir) variable
216 depends = collect_depends(base_dir)
217 candidates = map(lambda x: parse_dependency_file(x,base_dir,[]), depends)
239 analyze_coverage(sources, results, dirs.keys(), runid, base_dir)
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Ddispatch.py86 def _create_path_to_resource_converter(base_dir):
93 base_dir: the path to the base directory.
96 base_dir = _normalize_path(base_dir)
98 base_len = len(base_dir)
107 if not path.startswith(base_dir):
/external/valgrind/main/coregrind/
H A Dm_options.c131 static Char base_dir[VKI_PATH_MAX]; local
135 Bool ok = VG_(get_startup_wd)(base_dir, VKI_PATH_MAX);
161 j += VG_(strlen)(base_dir);
168 VG_(strcpy)(out, base_dir);
/external/chromium/chrome/common/extensions/docs/build/
H A Ddirectory.py156 def __init__(self, base_sample_path, base_dir, api_manifest):
162 base_dir: The base directory samples will be referenced from.
166 self._base_dir = base_dir
260 def __init__(self, manifest_path, api_methods, base_dir):
267 base_dir: The base directory where this sample will be referenced from -
270 self._base_dir = base_dir
/external/chromium/base/
H A Dfile_util_posix.cc450 static bool CreateTemporaryDirInDirImpl(const FilePath& base_dir, argument
457 FilePath sub_dir = base_dir.Append(name_tmpl);
471 bool CreateTemporaryDirInDir(const FilePath& base_dir, argument
476 return CreateTemporaryDirInDirImpl(base_dir, mkdtemp_template, new_dir);
H A Dfile_path_unittest.cc698 FilePath base_dir(FILE_PATH_LITERAL("base_dir"));
700 FilePath jpg = base_dir.Append(FILE_PATH_LITERAL("foo.jpg"));
706 FilePath path_no_ext = base_dir.Append(base);
H A Dfile_util.h295 BASE_API bool CreateTemporaryDirInDir(const FilePath& base_dir,
H A Dfile_util_win.cc620 bool CreateTemporaryDirInDir(const FilePath& base_dir, argument
635 path_to_create = base_dir.Append(new_dir_name);
/external/chromium/chrome/browser/download/
H A Dsave_package.h174 // |base_dir| is assumed to be a directory name with no trailing slash.
175 static uint32 GetMaxPathLengthForDirectory(const FilePath& base_dir);
H A Dsave_package.cc358 uint32 SavePackage::GetMaxPathLengthForDirectory(const FilePath& base_dir) { argument
361 static_cast<uint32>(base_dir.value().length()) +
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_runner.py1120 base_dir = self._port.path_from_webkit_base('Tools', 'Scripts', 'webkitpy', 'layout_tests', 'layout_package')
1121 results_file = self._fs.join(base_dir, 'json_results.html')

Completed in 960 milliseconds