Searched refs:pref (Results 126 - 150 of 274) sorted by relevance

1234567891011

/external/chromium_org/apps/ui/views/
H A Dapp_window_frame_view.cc240 gfx::Size pref = widget_->client_view()->GetPreferredSize(); local
241 gfx::Rect bounds(0, 0, pref.width(), pref.height());
/external/chromium_org/ash/frame/
H A Dcustom_frame_view_ash.cc506 gfx::Size pref = frame_->client_view()->GetPreferredSize(); local
507 gfx::Rect bounds(0, 0, pref.width(), pref.height());
/external/chromium_org/chrome/browser/background/
H A Dbackground_contents_service_unittest.cc54 // Returns the stored pref URL for the passed app id.
56 const base::DictionaryValue* pref = GetPrefs(profile); local
57 EXPECT_TRUE(pref->HasKey(base::UTF16ToUTF8(appid)));
59 pref->GetDictionaryWithoutPathExpansion(base::UTF16ToUTF8(appid), &value);
H A Dbackground_contents_service.cc373 // Do not register in the pref if the extension has a manifest-specified
437 // app, then blow away registered urls in the pref.
683 base::DictionaryValue* pref = update.Get(); local
686 if (pref->GetDictionaryWithoutPathExpansion(base::UTF16ToUTF8(appid),
695 pref->SetWithoutPathExpansion(base::UTF16ToUTF8(appid), dict);
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_preferences_unittest.cc55 explicit MockGalleryChangeObserver(MediaGalleriesPreferences* pref) argument
56 : pref_(pref),
64 virtual void OnPermissionAdded(MediaGalleriesPreferences* pref,
67 EXPECT_EQ(pref_, pref);
71 virtual void OnPermissionRemoved(MediaGalleriesPreferences* pref,
74 EXPECT_EQ(pref_, pref);
78 virtual void OnGalleryAdded(MediaGalleriesPreferences* pref,
80 EXPECT_EQ(pref_, pref);
84 virtual void OnGalleryRemoved(MediaGalleriesPreferences* pref,
86 EXPECT_EQ(pref_, pref);
[all...]
/external/chromium_org/chrome/browser/prefs/
H A Dbrowser_prefs.cc222 // The sync promo error message preference has been removed; this pref will
566 // Copy pref values which have been migrated to user_prefs from local_state,
589 const PrefService::Preference* pref = local
591 DCHECK(pref);
593 *(pref->GetValue()));
/external/chromium_org/components/search_engines/
H A Ddefault_search_manager.cc292 const PrefService::Preference* pref = local
294 DCHECK(pref);
295 default_search_controlled_by_policy_ = pref->IsManaged();
/external/chromium_org/ppapi/generators/
H A Didl_c_header.py90 pref = ''
121 item = cgen.Define(node, releases, prefix=pref, comment=True)
125 name = '%s%s' % (pref, node.GetName())
/external/chromium_org/ui/views/controls/
H A Dscroll_view_unittest.cc34 gfx::Size pref = GetPreferredSize(); variable
35 int width = pref.width();
36 int height = pref.height();
/external/iproute2/ip/
H A Diprule.c37 fprintf(stderr, " [ iif STRING ] [ oif STRING ] [ pref NUMBER ] [ uidrange UID1-UID2 ]\n");
281 __u32 pref; local
283 if (get_u32(&pref, *argv, 0))
285 addattr32(&req.n, sizeof(req), FRA_PRIORITY, pref);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_service_unittest.cc378 base::DictionaryValue* pref; variable
382 EXPECT_TRUE(prefs_->GetDictionary(id, &pref))
389 if (pref) {
420 base::DictionaryValue* pref; variable
424 EXPECT_TRUE(prefs_->GetDictionary(id, &pref))
428 if (pref) {
439 pref->GetString("install_parameter", &parsed_install_parameter);
935 const base::DictionaryValue* pref = NULL; local
936 if (!dict->GetDictionary(extension_id, &pref)) {
938 << "extension pref doe
957 const base::DictionaryValue* pref = NULL; local
985 const base::DictionaryValue* pref = NULL; local
1006 const base::DictionaryValue* pref = NULL; local
1022 base::DictionaryValue* pref = NULL; local
1060 base::DictionaryValue* pref = NULL; local
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page.cc407 PrefService* pref = profile->GetPrefs(); local
408 pref->SetBoolean(prefs::kSafeBrowsingExtendedReportingEnabled, report);
603 bool SafeBrowsingBlockingPage::IsPrefEnabled(const char* pref) { argument
606 return profile->GetPrefs()->GetBoolean(pref);
H A Dsafe_browsing_blocking_page.h107 void UpdateReportingPref(); // Used for the transition from old to new pref.
163 // Returns the boolean value of the given |pref| from the PrefService of the
165 bool IsPrefEnabled(const char* pref);
/external/chromium_org/third_party/libxml/src/
H A Dxmlstring.c169 * @pref: the prefix of the QName
179 xmlStrQEqual(const xmlChar *pref, const xmlChar *name, const xmlChar *str) { argument
180 if (pref == NULL) return(xmlStrEqual(name, str));
185 if (*pref++ != *str) return(0);
186 } while ((*str++) && (*pref));
/external/chromium_org/third_party/webrtc/base/
H A Dnetwork.cc231 int pref = kHighestNetworkPreference; local
234 (*iter)->set_preference(pref);
235 if (pref > 0) {
236 --pref;
/external/chromium_org/ui/views/layout/
H A Dgrid_layout.h196 gfx::Size* pref) const;
/external/ipsec-tools/src/libipsec/
H A Dpfkey_dump.c695 str_prefport(family, pref, port, ulp)
696 u_int family, pref, port, ulp;
714 if (pref == plen)
717 snprintf(prefbuf, sizeof(prefbuf), "/%u", pref);
/external/libxml2/
H A Dxmlstring.c169 * @pref: the prefix of the QName
179 xmlStrQEqual(const xmlChar *pref, const xmlChar *name, const xmlChar *str) { argument
180 if (pref == NULL) return(xmlStrEqual(name, str));
185 if (*pref++ != *str) return(0);
186 } while ((*str++) && (*pref));
/external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
H A Dgallery_watch_state_tracker.cc121 void GalleryWatchStateTracker::OnGalleryRemoved(MediaGalleriesPreferences* pref, argument
128 RemoveGalleryWatch(it->first, gallery_id, pref);
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_metrics.cc188 // DailyContentLengthUpdate maintains a data saving pref. The pref is a list
193 DailyContentLengthUpdate(const char* pref, argument
195 : update_(pref_service->GetList(pref)) {
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnmdptst.c893 UEnumeration *pref, *all; local
908 pref = NULL;
911 pref = ucurr_getKeywordValuesForLocale("currency", loc, TRUE, &status);
915 size = uenum_count(pref, &status);
920 if ((value = uenum_next(pref, &valueLength, &status)) != NULL && U_SUCCESS(status)) {
941 uenum_close(pref);
/external/icu/icu4c/source/test/cintltst/
H A Dcnmdptst.c893 UEnumeration *pref, *all; local
908 pref = NULL;
911 pref = ucurr_getKeywordValuesForLocale("currency", loc, TRUE, &status);
915 size = uenum_count(pref, &status);
920 if ((value = uenum_next(pref, &valueLength, &status)) != NULL && U_SUCCESS(status)) {
941 uenum_close(pref);
/external/chromium_org/components/metrics/
H A Dmetrics_service.cc675 void MetricsService::GetUptimes(PrefService* pref, argument
692 pref->GetInt64(metrics::prefs::kUninstallMetricsUptimeSec);
694 pref->SetInt64(metrics::prefs::kUninstallMetricsUptimeSec, metrics_uptime);
1192 // Redundant hack to write pref ASAP.
1218 void MetricsService::RecordCurrentState(PrefService* pref) { argument
1219 pref->SetInt64(metrics::prefs::kStabilityLastTimestampSec,
/external/chromium_org/third_party/libxslt/libxslt/
H A Dattributes.c900 xmlChar *pref = xmlStrdup(BAD_CAST "ns_1"); local
902 ns = xsltGetSpecialNamespace(ctxt, inst, nsName, BAD_CAST pref,
905 xmlFree(pref);
/external/chromium_org/remoting/webapp/
H A Dformat_iq.js305 var pref = candidate.getAttribute('preference');
315 ' pref:' + pref +

Completed in 2595 milliseconds

1234567891011