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

  /external/chromium_org/chrome/browser/resources/instant/
instant.js 90 * @param {string} prefName The name of the preference value being requested.
92 function getPreferenceValue(prefName) {
93 chrome.send('getPreferenceValue', [prefName]);
98 * @param {string} prefName The name of the requested preference value.
99 * @param {value} value The current value associated with prefName.
101 function getPreferenceValueResult(prefName, value) {
102 if ($(prefName).type == 'checkbox')
103 $(prefName).checked = value;
105 $(prefName).value = value;
109 * Set a preference setting's value stored in the element with prefName
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
stub_cros_settings_provider_unittest.cc 42 void AssertPref(const std::string& prefName, const base::Value* value) {
43 const base::Value* pref = provider_->Get(prefName);
48 void ExpectObservers(const std::string& prefName, int count) {
49 EXPECT_EQ(observer_count_[prefName], count);
  /external/chromium_org/chrome/browser/resources/
gesture_config.js 121 * @param {string} prefName The name of the preference value being requested.
123 updatePreferenceValue: function(prefName) {
124 chrome.send('updatePreferenceValue', [this.prefix + prefName]);
129 * @param {string} prefName The name of the preference value being set.
130 * @param {value} value The value to be associated with prefName.
132 setPreferenceValue: function(prefName, value) {
134 [this.prefix + prefName, parseFloat(value)]);
140 * @param {string} prefName The name of the requested preference.
142 resetPreferenceValue: function(prefName) {
143 chrome.send('resetPreferenceValue', [this.prefix + prefName]);
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
ComboPreferences.java 54 String prefName = context.getPackageName() + "_preferences_" + cameraId;
59 prefName, Context.MODE_PRIVATE);
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 120 String prefName = getLocalSharedPreferencesName(context, cameraId);
125 prefName, Context.MODE_PRIVATE);

Completed in 291 milliseconds