HomeSort by relevance Sort by last modified time
    Searched refs:base_dir (Results 1 - 23 of 23) sorted by null

  /external/oprofile/libutil/
op_file.h 76 * @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,
op_file.c 116 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,
  /external/chromium/chrome/browser/net/
url_fixer_upper.h 53 // the local filesystem. Begin searching in |base_dir|; if empty, use the
61 GURL FixupRelativeFile(const FilePath& base_dir, const FilePath& text);
url_fixer_upper.cc 520 GURL URLFixerUpper::FixupRelativeFile(const FilePath& base_dir,
523 if (!base_dir.empty()) {
526 file_util::SetCurrentDirectory(base_dir);
554 if (!base_dir.empty())
  /external/oprofile/gui/
oprof_start_util.h 36 std::string const do_open_file_or_dir(std::string const & base_dir, bool dir_only);
oprof_start_util.cpp 285 * @param base_dir directory to start at
291 string const do_open_file_or_dir(string const & base_dir, bool dir_only)
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/
test_files.py 66 def normalize(filesystem, base_dir, paths):
67 return [filesystem.normpath(filesystem.join(base_dir, path)) for path in paths]
config_unittest.py 187 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/
profile_spec.cpp 376 bool valid_candidate(string const & base_dir, string const & filename,
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, "*", true)
    [all...]
  /external/oprofile/libutil++/
file_manip.h 57 * @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,
file_manip.cpp 120 bool create_file_list(list<string> & file_list, string const & base_dir,
124 base_dir.c_str(), filter.c_str(),
  /external/webkit/Tools/CodeCoverage/
run-generate-coverage-data 62 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/valgrind/main/coregrind/
m_options.c 113 static Char base_dir[VKI_PATH_MAX]; local
117 Bool ok = VG_(get_startup_wd)(base_dir, VKI_PATH_MAX);
143 j += VG_(strlen)(base_dir);
150 VG_(strcpy)(out, base_dir);
  /development/scripts/
divide_and_compress.py 121 def __init__(self, output_path, base_dir, archive_size, enable_compression):
126 base_dir: A string, the directory to compress.
135 self.base_path = base_dir
divide_and_compress_test.py 354 self.base_dir = '/dir1'
357 self.output_path, self.base_dir, 1024*1024, True)
  /external/chromium/chrome/browser/download/
save_package.h 174 // |base_dir| is assumed to be a directory name with no trailing slash.
175 static uint32 GetMaxPathLengthForDirectory(const FilePath& base_dir);
save_package.cc 358 uint32 SavePackage::GetMaxPathLengthForDirectory(const FilePath& base_dir) {
361 static_cast<uint32>(base_dir.value().length()) +
    [all...]
  /external/chromium/base/
file_util_posix.cc 450 static bool CreateTemporaryDirInDirImpl(const FilePath& base_dir,
457 FilePath sub_dir = base_dir.Append(name_tmpl);
471 bool CreateTemporaryDirInDir(const FilePath& base_dir,
476 return CreateTemporaryDirInDirImpl(base_dir, mkdtemp_template, new_dir);
file_util.h 295 BASE_API bool CreateTemporaryDirInDir(const FilePath& base_dir,
file_path_unittest.cc 698 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);
    [all...]
file_util_win.cc 620 bool CreateTemporaryDirInDir(const FilePath& base_dir,
635 path_to_create = base_dir.Append(new_dir_name);
    [all...]
  /external/chromium/chrome/common/extensions/docs/build/
directory.py 156 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/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner.py     [all...]

Completed in 971 milliseconds