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

1 2 3

  /external/chromium_org/third_party/webrtc/test/testsupport/android/
root_path_android_chromium.cc 24 base::FilePath root_path; local
25 base::android::GetExternalStorageDirectory(&root_path);
26 return root_path.value() + "/";
  /bootable/recovery/
install.h 27 // Install the package specified by root_path. If INSTALL_SUCCESS is
30 int install_package(const char *root_path, int* wipe_cache,
  /external/chromium_org/content/test/
fileapi_test_file_set.h 32 void SetUpOneFileSystemTestCase(const base::FilePath& root_path,
36 void SetUpRegularFileSystemTestCases(const base::FilePath& root_path);
fileapi_test_file_set.cc 41 void SetUpOneFileSystemTestCase(const base::FilePath& root_path,
43 base::FilePath path = root_path.Append(test_case.path);
60 void SetUpRegularFileSystemTestCases(const base::FilePath& root_path) {
63 SetUpOneFileSystemTestCase(root_path, kRegularFileSystemTestCases[i]);
  /development/testrunner/
android_build.py 43 root_path = os.getenv("ANDROID_BUILD_TOP")
44 if root_path is None:
48 return root_path
103 root_path = os.getenv("OUT_DIR")
104 if root_path is None:
105 root_path = os.path.join(GetTop(), "out")
106 return root_path
  /external/oprofile/libpp/
locate_images.cpp 60 root_path = op_realpath(root_path_);
61 if (!root_path.empty())
62 root_path = op_realpath(root_path);
64 if (root_path.empty() && archive_path.empty())
68 if (!root_path.empty() && root_path != archive_path)
69 populate(paths, root_path);
130 // Skip search since root_path can be non empty and we want
131 // to lookup only in root_path in this case
    [all...]
locate_images.h 37 std::string const & root_path);
76 /// a filename with the archive_path or root_path stripped.
99 std::string root_path; member in class:extra_images
  /external/chromium_org/chrome/installer/util/
delete_tree_work_item.h 31 DeleteTreeWorkItem(const base::FilePath& root_path,
work_item.cc 72 const base::FilePath& root_path,
75 return new DeleteTreeWorkItem(root_path, temp_path, key_paths);
work_item_list.h 82 const base::FilePath& root_path,
87 virtual WorkItem* AddDeleteTreeWorkItem(const base::FilePath& root_path,
  /external/chromium_org/content/browser/fileapi/
sandbox_file_system_backend_unittest.cc 109 base::FilePath* root_path) {
121 if (root_path)
122 *root_path = returned_root_path;
203 base::FilePath root_path; local
207 &root_path)); local
211 EXPECT_EQ(expected.value(), root_path.value());
212 EXPECT_TRUE(base::DirectoryExists(root_path));
214 returned_root_path[i] = root_path;
223 base::FilePath root_path; local
227 &root_path)); local
302 base::FilePath root_path; local
306 &root_path)); local
    [all...]
  /external/chromium_org/base/files/
file_enumerator_posix.cc 40 FileEnumerator::FileEnumerator(const FilePath& root_path,
44 root_path_(root_path),
49 pending_paths_.push(root_path);
52 FileEnumerator::FileEnumerator(const FilePath& root_path,
57 root_path_(root_path),
60 pattern_(root_path.Append(pattern).value()) {
63 // The Windows version of this code appends the pattern to the root_path,
68 pending_paths_.push(root_path);
file_enumerator_win.cc 43 FileEnumerator::FileEnumerator(const FilePath& root_path,
53 pending_paths_.push(root_path);
56 FileEnumerator::FileEnumerator(const FilePath& root_path,
68 pending_paths_.push(root_path);
file_enumerator.h 49 // includes the |root_path| passed into the FileEnumerator constructor.
84 // |root_path| is the starting directory to search for. It may or may not end
101 // NOTE: the pattern only matches the contents of root_path, not files in
104 FileEnumerator(const FilePath& root_path,
107 FileEnumerator(const FilePath& root_path,
115 // The returned path will incorporate the |root_path| passed in the
116 // constructor: "<root_path>/file_name.txt". If the |root_path| is absolute,
  /external/chromium_org/content/browser/service_worker/
service_worker_cache_storage_manager.cc 22 base::FilePath ConstructOriginPath(const base::FilePath& root_path,
27 return root_path.AppendASCII(origin_hash_hex);
39 base::FilePath root_path = path; local
41 root_path = path.Append(ServiceWorkerContextCore::kServiceWorkerDirectory)
46 new ServiceWorkerCacheStorageManager(root_path, cache_task_runner));
54 new ServiceWorkerCacheStorageManager(old_manager->root_path(),
  /external/chromium_org/chrome/browser/extensions/
extension_resource_protocols.cc 20 base::FilePath root_path; local
21 PathService::Get(chrome::DIR_RESOURCES_EXTENSION, &root_path);
22 return extensions::file_util::ExtensionResourceURLToFilePath(url, root_path);
  /external/chromium_org/ppapi/tests/
create_nonsfi_test_nmf.py 46 def BuildNmfMap(root_path, program, extra_files):
51 # The program path is relative to the root_path.
52 _URL_KEY: os.path.relpath(program, root_path)
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util_unittest.cc 120 ASSERT_TRUE(base::CreateDirectory(root_path()));
141 storage::kFileSystemTypeNativeMedia, std::string(), root_path(), NULL);
167 base::FilePath root_path() { function in class:NativeMediaFileUtilTest
201 PopulateDirectoryWithTestCases(root_path(),
227 PopulateDirectoryWithTestCases(root_path(),
275 base::FilePath dest_path = root_path().AppendASCII("dest");
281 PopulateDirectoryWithTestCases(root_path(),
322 ASSERT_TRUE(base::DeleteFile(root_path(), true));
323 ASSERT_TRUE(base::CreateDirectory(root_path()));
324 PopulateDirectoryWithTestCases(root_path(),
    [all...]
  /external/chromium_org/tools/site_compare/
site_compare.py 76 def Compare(base, compare, ops, root_path=None, out_path=None):
83 root_path: root of the scrapes
95 if root_path is None:
97 root_path = os.path.join(os.path.split(__file__)[0], "Scrapes")
106 base_dir = os.path.join(root_path, base[0])
107 compare_dir = os.path.join(root_path, compare[0])
  /external/chromium_org/third_party/icu/source/test/depstest/
depstest.py 41 def _ReadObjFile(root_path, library_name, obj_name):
50 path = os.path.join(root_path, library_name, obj_name)
81 def _ReadLibrary(root_path, library_name):
82 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
84 _ReadObjFile(root_path, library_name, os.path.basename(path))
136 def Process(root_path):
152 _ReadLibrary(root_path, library_name)
  /external/icu/icu4c/source/test/depstest/
depstest.py 41 def _ReadObjFile(root_path, library_name, obj_name):
50 path = os.path.join(root_path, library_name, obj_name)
81 def _ReadLibrary(root_path, library_name):
82 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
84 _ReadObjFile(root_path, library_name, os.path.basename(path))
136 def Process(root_path):
152 _ReadLibrary(root_path, library_name)
  /external/oprofile/pp/
common_option.h 28 extern std::string root_path;
  /external/chromium_org/tools/gn/
commands.cc 60 setup->build_settings().root_path()),
95 SourceDirForCurrentDirectory(setup->build_settings().root_path()),
setup.cc 393 base::FilePath root_path; local
398 root_path = base::MakeAbsoluteFilePath(relative_root_path);
399 if (root_path.empty()) {
411 dotfile_name_ = root_path.Append(kGnFile);
434 root_path = dotfile_name_.DirName();
438 scheduler_.Log("Using source root", FilePathToUTF8(root_path));
439 build_settings_.SetRootPath(root_path);
446 SourceDirForCurrentDirectory(build_settings_.root_path()).
  /external/srec/srec/crec/
astar.c 423 partial_path* parp1 = stack->root_path;
424 /* append_arc_arriving(stack->root_path, parp); */
547 stack->root_path = 0;
583 stack->root_path = make_new_partial_path(stack);
584 ASSERT(stack->root_path);
585 stack->root_path->refcount = 9999;
586 stack->root_path->token_index = MAXwtokenID;
587 stack->root_path->word = MAXwordID;
604 append_arc_arriving(stack->root_path, parp);
635 if (stack->root_path)
    [all...]

Completed in 1086 milliseconds

1 2 3