HomeSort by relevance Sort by last modified time
    Searched refs:registry (Results 226 - 250 of 625) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 67 if sys.platform[:4] == "java" and sys.registry.containsKey(_key):
68 default_parser_list = sys.registry.getProperty(_key).split(",")
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 60 // global registry, which is where flags defined via DEFINE_foo()
62 // different registry you create. (In practice, multiple registries
68 // CommandLineFlag owned by that registry must acquire the
86 // GetCommandLineOption is just a hook into registry routines to
465 // should acquire the FlagRegistry lock for the registry that owns
600 // FooLocked(), you must own the registry lock before calling
618 // Store a flag in this registry. Takes ownership of the given pointer.
644 static FlagRegistry* GlobalRegistry(); // returns a singleton registry
663 static FlagRegistry* global_registry_; // a singleton registry
1328 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1410 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1524 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1537 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1561 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1704 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1844 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
    [all...]
  /external/open-vcdiff/gflags/src/
gflags.cc 60 // global registry, which is where flags defined via DEFINE_foo()
62 // different registry you create. (In practice, multiple registries
68 // CommandLineFlag owned by that registry must acquire the
86 // GetCommandLineOption is just a hook into registry routines to
465 // should acquire the FlagRegistry lock for the registry that owns
600 // FooLocked(), you must own the registry lock before calling
618 // Store a flag in this registry. Takes ownership of the given pointer.
644 static FlagRegistry* GlobalRegistry(); // returns a singleton registry
663 static FlagRegistry* global_registry_; // a singleton registry
1328 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1401 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1515 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1528 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1552 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1695 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1835 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UISourceCode.js 411 var registry = WebInspector.Revision._revisionHistoryRegistry(); variable
412 var historyItems = registry[this.url];
444 var registry = WebInspector.Revision._revisionHistoryRegistry(); variable
445 var historyItems = registry[this.url];
448 delete registry[this.url];
449 window.localStorage["revision-history"] = JSON.stringify(registry);
967 var registry = WebInspector.Revision._revisionHistoryRegistry();
969 for (var url in registry) {
970 var historyItems = registry[url];
1078 var registry = WebInspector.Revision._revisionHistoryRegistry() variable
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
variations_service_unittest.cc 126 VariationsService::RegisterPrefs(prefs.registry());
180 VariationsService::RegisterPrefs(prefs.registry());
199 VariationsService::RegisterPrefs(prefs.registry());
214 VariationsService::RegisterPrefs(prefs.registry());
272 VariationsService::RegisterPrefs(prefs.registry());
299 VariationsService::RegisterPrefs(prefs.registry());
320 VariationsService::RegisterPrefs(prefs.registry());
337 VariationsService::RegisterPrefs(prefs.registry());
369 VariationsService::RegisterPrefs(prefs.registry());
  /external/chromium_org/chrome_frame/test/reliability/
page_load_test.cc 433 PrefService* GetLocalState(PrefRegistry* registry) {
441 return builder.Create(registry);
447 scoped_refptr<PrefRegistrySimple> registry = new PrefRegistrySimple();
448 registry->RegisterBooleanPref(prefs::kStabilityExitedCleanly, false);
449 registry->RegisterIntegerPref(prefs::kStabilityLaunchCount, -1);
450 registry->RegisterIntegerPref(prefs::kStabilityPageLoadCount, -1);
451 registry->RegisterIntegerPref(prefs::kStabilityCrashCount, 0);
452 registry->RegisterIntegerPref(prefs::kStabilityRendererCrashCount, 0);
454 scoped_ptr<PrefService> local_state(GetLocalState(registry));
  /external/chromium_org/base/prefs/
pref_change_registrar_unittest.cc 132 PrefRegistrySimple* registry = pref_service_->registry(); local
133 registry->RegisterStringPref(kHomePage, "http://google.com");
134 registry->RegisterBooleanPref(kHomePageIsNewTabPage, false);
135 registry->RegisterStringPref(kApplicationLocale, std::string());
pref_service_unittest.cc 27 prefs.registry()->RegisterStringPref(pref_name, std::string());
69 prefs.registry()->RegisterStringPref(path, std::string());
83 prefs.registry()->RegisterStringPref(pref_name, std::string());
137 prefs.registry()->RegisterIntegerPref(kPrefName, kTestValue);
157 prefs.registry()->RegisterIntegerPref(kPrefName, kDefaultValue);
247 prefs_.registry()->RegisterStringPref(kName, default_string);
269 prefs_.registry()->RegisterDictionaryPref(kName);
295 prefs_.registry()->RegisterListPref(kName);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/wayland/
native_drm.c 186 registry_handle_global(void *data, struct wl_registry *registry, uint32_t name,
192 drmdpy->wl_drm = wl_registry_bind(registry, name, &wl_drm_interface, 1);
207 drmdpy->base.registry = wl_display_get_registry(drmdpy->base.dpy);
208 wl_proxy_set_queue((struct wl_proxy *) drmdpy->base.registry,
210 wl_registry_add_listener(drmdpy->base.registry, &registry_listener, drmdpy);
  /external/mesa3d/src/gallium/state_trackers/egl/wayland/
native_drm.c 186 registry_handle_global(void *data, struct wl_registry *registry, uint32_t name,
192 drmdpy->wl_drm = wl_registry_bind(registry, name, &wl_drm_interface, 1);
207 drmdpy->base.registry = wl_display_get_registry(drmdpy->base.dpy);
208 wl_proxy_set_queue((struct wl_proxy *) drmdpy->base.registry,
210 wl_registry_add_listener(drmdpy->base.registry, &registry_listener, drmdpy);
  /external/openssh/openbsd-compat/
port-aix.c 327 * If we have setauthdb, retrieve the password registry for the user's
336 char *registry; local
343 if (getuserattr((char *)user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
344 if (setauthdb(registry, old_registry) == 0)
345 debug3("AIX/setauthdb set registry '%s'", registry);
347 debug3("AIX/setauthdb set registry '%s' failed: %s",
348 registry, strerror(errno));
357 * Restore the user's registry settings from old_registry.
367 debug3("%s: restoring old registry '%s'", __func__
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_file_system_registry_unittest.cc 76 explicit TestMediaFileSystemContext(MediaFileSystemRegistry* registry);
91 MediaFileSystemRegistry* registry() { return registry_; } function in class:chrome::TestMediaFileSystemContext
123 MediaFileSystemRegistry* registry)
124 : registry_(registry),
343 MediaFileSystemRegistry* registry() { function in class:chrome::MediaFileSystemRegistryTest
344 return test_file_system_context_->registry();
348 const MediaFileSystemRegistry* registry) const;
485 MediaFileSystemRegistry* registry = local
491 registry->GetMediaFileSystemsForExtension(
501 registry->GetMediaFileSystemsForExtension
524 MediaFileSystemRegistry* registry = local
770 MediaFileSystemRegistry* registry = local
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 95 // Obtain the registry of cookie specs
96 CookieSpecRegistry registry= (CookieSpecRegistry) context.getAttribute( local
98 if (registry == null) {
99 this.log.info("CookieSpec registry not available in HTTP context");
147 CookieSpec cookieSpec = registry.getCookieSpec(policy, request.getParams());
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 114 AuthSchemeRegistry registry = (AuthSchemeRegistry) context.getAttribute( local
116 if (registry == null) {
117 throw new IllegalStateException("AuthScheme registry not set in HTTP context");
141 authScheme = registry.getAuthScheme(id, response.getParams());
  /external/chromium_org/chrome/browser/chromeos/login/
user_manager_unittest.cc 48 UserManager::RegisterPrefs(local_state_->registry());
51 UserImageManager::RegisterPrefs(local_state_->registry());
52 WallpaperManager::RegisterPrefs(local_state_->registry());
  /external/chromium_org/chrome/browser/password_manager/
password_store_factory.cc 199 user_prefs::PrefRegistrySyncable* registry) {
201 registry->RegisterIntegerPref(
208 PasswordStoreX::RegisterProfilePrefs(registry);
  /external/chromium_org/components/user_prefs/
pref_registry_syncable.cc 220 scoped_refptr<PrefRegistrySyncable> registry(new PrefRegistrySyncable());
221 registry->defaults_ = defaults_;
222 return registry;
  /external/chromium_org/content/renderer/media/
video_destination_handler.cc 164 MediaStreamRegistryInterface* registry,
172 if (registry) {
173 stream = registry->GetMediaStream(url);
  /external/chromium_org/chrome/browser/ui/webui/ntp/
new_tab_ui.cc 260 user_prefs::PrefRegistrySyncable* registry) {
262 CoreAppLauncherHandler::RegisterProfilePrefs(registry);
263 NewTabPageHandler::RegisterProfilePrefs(registry);
265 SuggestionsHandler::RegisterProfilePrefs(registry);
267 MostVisitedHandler::RegisterProfilePrefs(registry);
268 browser_sync::ForeignSessionHandler::RegisterProfilePrefs(registry);
  /external/chromium_org/chrome/browser/chromeos/
preferences.h 46 static void RegisterPrefs(PrefRegistrySimple* registry);
47 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
  /external/chromium_org/chrome/browser/extensions/
default_apps.cc 53 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
54 registry->RegisterIntegerPref(
  /external/chromium_org/chrome/browser/geolocation/
chrome_access_token_store.cc 101 void ChromeAccessTokenStore::RegisterPrefs(PrefRegistrySimple* registry) {
102 registry->RegisterDictionaryPref(prefs::kGeolocationAccessToken);
  /external/chromium_org/chrome/browser/net/
pref_proxy_config_tracker_impl.h 126 static void RegisterPrefs(PrefRegistrySimple* registry);
127 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_api.cc 340 ExtensionFunctionRegistry* registry = local
342 registry->RegisterFunction<ExtensionTtsEngineSendTtsEventFunction>();
343 registry->RegisterFunction<TtsGetVoicesFunction>();
344 registry->RegisterFunction<TtsIsSpeakingFunction>();
345 registry->RegisterFunction<TtsSpeakFunction>();
346 registry->RegisterFunction<TtsStopSpeakingFunction>();
347 registry->RegisterFunction<TtsPauseFunction>();
348 registry->RegisterFunction<TtsResumeFunction>();
  /external/chromium_org/chrome/browser/ui/startup/
autolaunch_prompt_win.cc 172 void RegisterAutolaunchUserPrefs(user_prefs::PrefRegistrySyncable* registry) {
173 registry->RegisterIntegerPref(

Completed in 893 milliseconds

1 2 3 4 5 6 7 8 91011>>