HomeSort by relevance Sort by last modified time
    Searched defs:setting (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium/chrome/browser/net/
chrome_cookie_policy.cc 67 ContentSetting setting = host_content_settings_map_->GetContentSetting( local
69 if (setting == CONTENT_SETTING_BLOCK)
71 if (setting == CONTENT_SETTING_ALLOW)
73 if (setting == CONTENT_SETTING_SESSION_ONLY)
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model.cc 19 Entry(const GURL& origin, ContentSetting setting);
23 ContentSetting setting; member in struct:NotificationExceptionsTableModel::Entry
49 if (entry->setting == CONTENT_SETTING_ALLOW) {
52 DCHECK_EQ(entry->setting, CONTENT_SETTING_BLOCK);
81 switch (entry.setting) {
129 setting(in_setting) {
  /external/chromium/chrome/browser/
plugin_exceptions_table_model.h 60 ContentSetting setting; member in struct:PluginExceptionsTableModel::SettingsEntry
content_setting_bubble_model.cc 177 ContentSetting setting = local
182 AddException(setting, std::string());
186 AddException(setting, *it);
201 // Initialize the radio group by setting the appropriate labels for the
202 // content type and setting the default value based on the content setting.
278 ContentSetting setting = map->GetContentSetting(url, local
281 if (setting == CONTENT_SETTING_BLOCK) {
285 if (setting == CONTENT_SETTING_ASK)
300 void AddException(ContentSetting setting,
304 setting); local
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_base_provider.cc 156 ContentSetting setting; local
160 setting = i->second.content_settings_for_resources.find(
163 setting = CONTENT_SETTING_DEFAULT;
166 setting = i->second.content_settings.settings[content_type];
168 if (setting != CONTENT_SETTING_DEFAULT) {
173 setting));
245 ContentSetting setting) {
246 if (setting == CONTENT_SETTING_ASK &&
252 return setting;
content_settings_mock_provider.h 18 // Create a content settings provider that provides a given setting for a
21 ContentSetting setting,
30 ContentSetting setting);
51 ContentSetting setting,
65 // The MockProvider is only able to store one content setting. So every time
117 void set_setting(ContentSetting setting) {
118 setting_ = setting;
121 ContentSetting setting() const { function in class:content_settings::MockProvider
content_settings_policy_provider.cc 45 ContentSetting setting; member in struct:__anon4007::PrefsForManagedContentSettingsMapEntry
113 // default-content-setting is managed and to hold the managed default-setting
115 // corresponding default-content-setting is managed. These preferences exist
140 ContentSetting setting) {
225 // If a pref to manage a default-content-setting was not set (NOTICE:
241 // Preferences for default content setting policies. A policy is not set of
361 kPrefsForManagedContentSettingsMap[i].setting));
content_settings_pref_provider.cc 45 // The default setting for each content type.
131 ContentSetting setting) {
135 setting != CONTENT_SETTING_ASK ||
140 // Instead, they are synced to the main profile's setting.
152 if ((setting == CONTENT_SETTING_DEFAULT) ||
153 (setting == kDefaultSettings[content_type])) {
159 default_content_settings_.settings[content_type] = setting;
161 dictionary_path, Value::CreateIntegerValue(setting));
265 int setting = CONTENT_SETTING_DEFAULT; local
267 &setting);
298 ContentSetting setting = IntToContentSetting( local
712 int setting = CONTENT_SETTING_DEFAULT; local
747 int setting = CONTENT_SETTING_DEFAULT; local
    [all...]
host_content_settings_map.cc 133 ContentSetting setting = CONTENT_SETTING_DEFAULT; local
140 setting = provided_setting;
145 CHECK_NE(CONTENT_SETTING_DEFAULT, setting);
146 return setting;
153 ContentSetting setting = GetNonDefaultContentSetting(url, local
156 if (setting == CONTENT_SETTING_DEFAULT)
158 return setting;
169 // setting is found.
190 // A managed default content setting has the highest priority and hence
251 ContentSetting setting) {
286 setting); local
    [all...]
  /external/chromium/chrome/browser/geolocation/
geolocation_content_settings_map.cc 96 int setting; local
98 embedding_origin.spec(), &setting))
99 return IntToContentSetting(setting);
100 // Check for any-embedder setting
103 "", &setting))
104 return IntToContentSetting(setting);
139 ContentSetting setting) {
144 setting == CONTENT_SETTING_DEFAULT ?
145 kDefaultSetting : setting);
151 ContentSetting setting) {
245 int setting = kDefaultSetting; local
    [all...]
geolocation_exceptions_table_model.cc 56 setting(in_setting) {
61 ContentSetting setting; member in struct:GeolocationExceptionsTableModel::Entry
82 (entry.setting == CONTENT_SETTING_DEFAULT)) {
106 entry->setting = CONTENT_SETTING_DEFAULT;
125 (entry->setting == CONTENT_SETTING_DEFAULT));
151 // dialog, it's impossible to actually have a non-default setting for some
164 switch (entry.setting) {
242 // Add the "parent" entry for the non-embedded setting.
249 // Skip the non-embedded setting which we already added above.
  /external/smack/src/org/jivesoftware/smackx/workgroup/settings/
GenericSettings.java 89 GenericSettings setting = new GenericSettings(); local
101 setting.getMap().put(name, value);
108 return setting;
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestDocumentBuilderFactory.java 105 DocumentBuilderSetting setting = settings[i]; local
109 if (newSetting.hasConflict(setting) || setting.hasConflict(newSetting)) {
115 mergedSettings.add(setting);
LSDocumentBuilderFactory.java 50 * Applies setting to LSParser
52 * @param setting setting
54 * @throws DOMTestIncompatibleException if parser does not support setting
56 public abstract void applySetting(DocumentBuilderSetting setting,
61 * Gets state of setting for parser
64 * @return state of setting
71 * Represents a fixed setting, for example, all Java implementations
82 * @param settingName setting name
90 * Apply setting. Throws exception if requested settin
145 throw new DOMTestIncompatibleException(ex.getTargetException(), setting); local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
CoreSettingsObserver.java 75 for (String setting : sCoreSettingToTypeMap.keySet()) {
76 Uri uri = Settings.Secure.getUriFor(setting);
85 String setting = entry.getKey(); local
90 setting);
91 snapshot.putString(setting, value);
94 setting);
95 snapshot.putInt(setting, value);
98 setting);
99 snapshot.putFloat(setting, value);
102 setting);
    [all...]
  /frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
FixVibrateSetting.java 68 int setting = mAudioManager.getVibrateSetting(vibrateType); local
69 switch (setting) {
  /external/chromium/chrome/browser/automation/
testing_automation_provider_chromeos.cc 55 Value* setting; local
56 if (settings_provider.Get(setting_path, &setting)) {
57 DictionaryValue* setting_dict = static_cast<DictionaryValue*>(setting);
60 delete setting;
360 Value* setting = GetProxySetting(settings[i]); local
361 if (setting)
362 return_value->Set(settings[i], setting);
  /external/chromium/chrome/browser/chromeos/
proxy_config_service_impl.cc 101 //---------- ProxyConfigServiceImpl::ProxyConfig::Setting methods --------------
103 bool ProxyConfigServiceImpl::ProxyConfig::Setting::CanBeWrittenByUser(
105 // Setting can only be written by user if user is owner and setting is not
150 // Setting can only be written by user if user is owner and setting is not
152 Setting* setting = NULL; local
157 setting = &automatic_proxy;
160 setting = &single_proxy
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
content_settings_handler.cc 33 const char* kSetting = "setting";
65 std::string ContentSettingToString(ContentSetting setting) {
66 switch (setting) {
94 NOTREACHED() << name << " is not a recognized content setting.";
107 // dialog, it's impossible to actually have a non-default setting for some
125 ContentSetting setting) {
132 new StringValue(ContentSettingToString(setting)));
141 ContentSetting setting) {
148 new StringValue(ContentSettingToString(setting)));
163 ContentSetting setting) {
566 std::string group, setting; local
614 std::string setting; local
660 std::string setting; local
    [all...]
  /frameworks/base/media/java/android/media/
RingtoneManager.java 269 "Setting filter columns should be done before querying for ringtones.");
636 String setting = getSettingForType(type); local
637 if (setting == null) return null;
638 final String uriString = Settings.System.getString(context.getContentResolver(), setting);
653 String setting = getSettingForType(type); local
654 if (setting == null) return;
655 Settings.System.putString(context.getContentResolver(), setting,
  /packages/apps/Settings/src/com/android/settings/
VoiceInputOutputSettings.java 156 // Get the current value from the secure setting.
245 String setting = (String) newValue; local
250 setting); local
253 updateSettingsLink(setting);
  /system/media/audio_route/
audio_route.c 65 struct mixer_setting *setting; member in struct:mixer_path
94 mixer_ctl_get_name(path->setting[i].ctl),
95 path->setting[i].linked ? 'y' : 'n');
96 for (j = 0; j < path->setting[i].num_values; j++)
97 ALOGE(" id=%d value=%d", j, path->setting[i].value[j]);
108 if (ar->mixer_path[i].setting) {
109 if (ar->mixer_path[i].setting->value)
110 free(ar->mixer_path[i].setting->value);
111 free(ar->mixer_path[i].setting);
159 ar->mixer_path[ar->num_mixer_paths].setting = NULL
    [all...]
  /external/chromium/net/spdy/
spdy_session.cc 525 // no more than one ping for any syn sent. To do this, we avoid ever setting
1649 const spdy::SpdySetting setting = *it; local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
AgentSession.java 48 * session within a given workgroup is expected to have from an agent's perspective -- setting
247 * @throws XMPPException if an error occurs setting the online status.
314 * @throws XMPPException if an error occurs setting the agent status.
340 * @throws XMPPException if an error occurs setting the agent status.
397 * @throws XMPPException if an error occurs setting the agent status.
1122 GenericSettings setting = new GenericSettings(); local
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
TextGraphReader.java 225 } else if (curCommand.equals("@setting")) {
324 KeyValueMap setting = readKeyValueAssignments(scanner, semicolonPattern); local
325 mSettings.putAll(setting);
452 for (String setting : mSettings.keySet()) {
453 Object value = mSettings.get(setting);
454 if (setting.equals("autoBranch")) {
455 expectSettingClass(setting, value, String.class);
463 throw new GraphIOException("Unknown autobranch setting: " + value + "!");
465 } else if (setting.equals("discardUnconnectedOutputs")) {
466 expectSettingClass(setting, value, Boolean.class)
    [all...]

Completed in 614 milliseconds

1 2 3