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

  /development/testrunner/
android_manifest.py 35 def __init__(self, app_path=None):
36 if app_path:
37 self._ParseManifest(app_path)
54 def _ParseManifest(self, app_path):
58 app_path: path to folder containing AndroidManifest.xml
63 self._app_path = app_path
64 self._manifest_path = os.path.join(app_path, self.FILENAME)
create_test.py 124 def _GenerateTestMK(mk, app_path, mapping=None):
131 app_path: path to the application being tested
138 tests_path = "%s/%s" % (app_path, TestsConsts.TESTS_FOLDER)
146 mk_path = "%s/%s" % (app_path, mk.FILENAME)
182 parser = optparse.OptionParser(usage="%s <app_path>" % sys.argv[0])
221 app_path = args[0];
223 if not os.path.exists(app_path):
224 _PrintError("Error: Application path %s not found" % app_path)
228 mk = android_mk.CreateAndroidMK(path=app_path)
229 manifest = android_manifest.AndroidManifest(app_path=app_path
    [all...]
  /external/chromium/chrome/browser/importer/
importer_data_types.h 39 FilePath app_path; member in struct:importer::SourceProfile
firefox_importer_utils.h 47 FilePath* app_path);
88 bool IsDefaultHomepage(const GURL& homepage, const FilePath& app_path);
importer_list.cc 31 ie->app_path.clear();
48 safari->app_path.clear();
61 FilePath app_path; local
67 GetFirefoxVersionAndPathFromProfile(profile_path, &version, &app_path);
83 firefox->app_path = GetFirefoxInstallPathFromRegistry();
85 if (firefox->app_path.empty())
86 firefox->app_path = app_path;
102 google_toolbar->app_path.clear();
firefox_importer_utils.cc 96 FilePath* app_path) {
120 *app_path = FilePath::FromWStringHack(
258 std::string ReadBrowserConfigProp(const FilePath& app_path,
261 if (!ReadPrefFile(app_path.AppendASCII("browserconfig.properties"), &content))
339 bool IsDefaultHomepage(const GURL& homepage, const FilePath& app_path) {
344 ReadBrowserConfigProp(app_path, "browser.startup.homepage");
firefox3_importer.cc 74 app_path_ = source_profile.app_path;
381 FilePath app_path = app_path_.AppendASCII("searchplugins");
400 file = app_path.Append(FilePath::FromWStringHack(
421 FilePath locale_app_path = app_path.AppendASCII(locale_);
422 FilePath default_locale_app_path = app_path.AppendASCII("en-US");
424 app_path = locale_app_path;
426 app_path = default_locale_app_path;
430 file_util::FileEnumerator engines(app_path, false,
firefox2_importer.cc 55 app_path_ = source_profile.app_path;
93 void Firefox2Importer::LoadDefaultBookmarks(const FilePath& app_path,
95 FilePath file = app_path.AppendASCII("defaults")
profile_import_process_messages.h 35 WriteParam(m, p.app_path);
48 !ReadParam(m, iter, &p->app_path))
66 LogParam(p.app_path, l);
importer_unittest.cc 101 source_profile.app_path = app_path_;
688 source_profile.app_path = app_path_;
    [all...]
  /development/testrunner/tests/
android_manifest_tests.py 30 self._manifest = android_manifest.AndroidManifest(app_path='.')
  /external/chromium/net/url_request/
url_request_unittest.cc 924 FilePath app_path; local
925 PathService::Get(base::FILE_EXE, &app_path);
926 GURL app_url = FilePathToFileURL(app_path);
938 EXPECT_TRUE(file_util::GetFileSize(app_path, &file_size));
1110 FilePath app_path; local
2488 FilePath app_path; local
2517 FilePath app_path; local
2548 FilePath app_path; local
2577 FilePath app_path; local
2610 FilePath app_path; local
2639 FilePath app_path; local
2672 FilePath app_path; local
2721 FilePath app_path; local
    [all...]
  /external/chromium/base/
file_version_info_win.cc 35 FilePath app_path; local
36 if (!PathService::Get(base::FILE_MODULE, &app_path))
39 return CreateFileVersionInfo(app_path);
  /external/chromium/chrome/browser/extensions/
extension_management_apitest.cc 51 void LoadAndWaitForLaunch(const std::string& app_path,
54 ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII(app_path)));
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.h 40 const FilePath& app_path);
profile_impl_io_data.cc 58 const FilePath& app_path) {
73 io_data_->app_path_ = app_path;
300 FilePath app_path = app_path_.AppendASCII(app_id); local
301 FilePath cookie_path = app_path.Append(chrome::kCookieFilename);
302 FilePath cache_path = app_path.Append(chrome::kCacheDirname);
profile_impl.cc 387 FilePath app_path = GetPath().Append(chrome::kIsolatedAppStateDirname); local
393 app_path);
    [all...]
  /external/chromium/chrome/browser/
shell_integration_win.cc 293 FilePath app_path; local
294 if (!PathService::Get(base::FILE_EXE, &app_path)) {
338 GetShortPathName(app_path.value().c_str(),
  /development/testrunner/test_defs/
instrumentation_test.py 247 manifest_parser = android_manifest.AndroidManifest(app_path=

Completed in 454 milliseconds