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

1 2

  /external/chromium_org/chrome/test/functional/
codesign.py 36 app_path = browser_info['child_process_path']
37 app_path = app_path[:app_path.find(app_name)]
38 app_path = app_path + app_name
39 self.assertTrue(valid_text in self._checkCodeSign(app_path))
42 framework_path = glob.glob(os.path.join(app_path, 'Contents', 'Versions',
secure_shell.py 35 app_path = files[0]
38 logging.debug('Using Secure shell app %s' % app_path)
39 self._app_id = self.InstallExtension(app_path, from_webstore=True)
  /external/chromium_org/chrome/installer/mac/
sign_app.sh.in 28 echo "usage: ${ME} app_path codesign_keychain codesign_id" >& 2
32 app_path="${1}"
40 versioned_dir="${app_path}/Contents/Versions/@VERSION@"
42 browser_app="${app_path}"
sign_versioned_dir.sh.in 27 echo "usage: ${ME} app_path codesign_keychain codesign_id" >& 2
31 app_path="${1}"
35 versioned_dir="${app_path}/Contents/Versions/@VERSION@"
  /external/chromium_org/chrome/common/importer/
firefox_importer_utils.h 55 base::FilePath* app_path);
81 bool IsDefaultHomepage(const GURL& homepage, const base::FilePath& app_path);
92 string16 GetFirefoxImporterName(const base::FilePath& app_path);
importer_data_types.h 42 base::FilePath app_path; member in struct:importer::SourceProfile
firefox_importer_utils.cc 98 base::FilePath* app_path) {
123 *app_path = base::FilePath::FromWStringHack(
145 std::string ReadBrowserConfigProp(const base::FilePath& app_path,
148 if (!ReadPrefFile(app_path.AppendASCII("browserconfig.properties"), &content))
190 bool IsDefaultHomepage(const GURL& homepage, const base::FilePath& app_path) {
195 ReadBrowserConfigProp(app_path, "browser.startup.homepage");
257 string16 GetFirefoxImporterName(const base::FilePath& app_path) {
258 const base::FilePath app_ini_file = app_path.AppendASCII("application.ini");
  /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,
  /external/chromium_org/chrome/browser/web_applications/
web_app_mac.h 63 // Updates the plist inside |app_path| with information about the app.
64 bool UpdatePlist(const base::FilePath& app_path) const;
67 bool UpdateIcon(const base::FilePath& app_path) const;
87 // Updates the InfoPlist.string inside |app_path| with the display name for
89 bool UpdateDisplayName(const base::FilePath& app_path) const;
  /development/testrunner/tests/
android_manifest_tests.py 30 self._manifest = android_manifest.AndroidManifest(app_path='.')
  /external/chromium_org/apps/
load_and_launch_browsertest.cc 45 base::FilePath app_path = test_data_dir_ local
50 app_path.value());
82 base::FilePath app_path = test_data_dir_ local
92 app_path.value());
  /external/chromium_org/chrome/browser/importer/
importer_list.cc 34 ie->app_path.clear();
51 safari->app_path.clear();
68 base::FilePath app_path; local
74 GetFirefoxVersionAndPathFromProfile(profile_path, &version, &app_path);
84 firefox->importer_name = GetFirefoxImporterName(app_path);
88 firefox->app_path = GetFirefoxInstallPathFromRegistry();
90 if (firefox->app_path.empty())
91 firefox->app_path = 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_org/chrome/browser/extensions/api/storage/
sync_or_local_value_store_cache.cc 105 const base::FilePath app_path = profile_path.AppendASCII( local
112 factory, app_path, syncer::APP_SETTINGS,
  /external/chromium_org/chrome/utility/importer/
firefox_importer.cc 42 // Loads the default bookmarks in the Firefox installed at |app_path|,
44 void LoadDefaultBookmarks(const base::FilePath& app_path,
46 base::FilePath file = app_path.AppendASCII("defaults")
104 app_path_ = source_profile.app_path;
404 base::FilePath app_path = app_path_.AppendASCII("searchplugins");
423 file = app_path.AppendASCII(engine.substr(index + kAppPrefix.length()));
445 base::FilePath locale_app_path = app_path.AppendASCII(locale_);
446 base::FilePath default_locale_app_path = app_path.AppendASCII("en-US");
448 app_path = locale_app_path;
450 app_path = default_locale_app_path
    [all...]
  /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_org/base/
file_version_info_win.cc 45 FilePath app_path(system_buffer);
46 return CreateFileVersionInfo(app_path);
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.h 40 const FilePath& app_path);

Completed in 693 milliseconds

1 2