HomeSort by relevance Sort by last modified time
    Searched full:setting (Results 126 - 150 of 6118) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libnfc-nci/src/adaptation/
config.cpp 405 ** Description: get a string value of a setting
407 ** Returns: true if setting exists
408 ** false if setting does not exist
432 ** Description: get a long numerical value of a setting
434 ** Returns: true if setting exists
435 ** false if setting does not exist
456 ** Description: get a short numerical value of a setting
458 ** Returns: true if setting exists
459 ** false if setting does not exist
480 ** Description: search if a setting exist in the setting arra
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Settings.java 28 /** Sent by servers only. The peer requests this setting persisted for future connections. */
85 /** Returns true if a value has been assigned for the setting {@code id}. */
91 /** Returns the value for the setting {@code id}, or 0 if unset. */
96 /** Returns the flags for the setting {@code id}, or 0 if unset. */
150 * Returns true if this user agent should use this setting in future SPDY
158 /** Returns true if this setting was persisted. */
165 * Writes {@code other} into this. If any setting is populated by this and
  /external/webkit/Source/WebKit/cf/WebCoreSupport/
WebInspectorClientCF.cpp 80 return CFStringCreateWithFormat(0, 0, CFSTR("WebKit Web Inspector Setting - %@"), keyCFString.get());
83 static void populateSetting(const String& key, String* setting)
93 *setting = static_cast<String>(static_cast<CFStringRef>(value.get()));
95 *setting = static_cast<bool>(CFBooleanGetValue(static_cast<CFBooleanRef>(value.get()))) ? "true" : "false";
97 *setting = "";
100 static void storeSetting(const String& key, const String& setting)
103 objectToStore.adoptCF(setting.createCFString());
  /packages/apps/Gallery/res/values/
strings.xml 73 <string name="wallpaper">Setting wallpaper\u2026</string>
172 <!-- Settings screen, setting summary text -->
177 <!-- Title of dialog that appears after selecting Picture size setting option -->
179 <!-- Options in dialog that appears after selecting Picture size setting option -->
186 <!-- Option values in dialog that appears after selecting Picture size setting option -->
191 <!-- Default option value in dialog that appears after selecting Picture size setting option -->
193 <!-- Settings screen, setting option name -->
195 <!-- Settings screen, setting summary text -->
197 <!-- Title of dialog that appears after selecting Picture sort setting option -->
199 <!-- Options in dialog that appears after selecting Picture sort setting option --
    [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;
  /external/chromium/chrome/browser/geolocation/
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/chromium/chrome/browser/chromeos/
metrics_cros_settings_provider.cc 42 // to modify the setting.
46 VLOG(1) << "Setting cros stats/crash metric reporting to " << enabled;
63 // will start when the setting is already set up. Other ChromeOS
wm_overview_favicon.h 31 // Setting the favicon sets the bounds to the size of the given
  /external/chromium/chrome/common/
logging_chrome.h 25 // setting levels in the future.
28 // setting delete_old_log_file, but the renderer processes should not, or
32 // Setting suppress_error_dialogs to true disables any dialogs that would
  /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;
  /frameworks/base/core/tests/coretests/src/android/view/
SetTagsTest.java 85 assertTrue("Setting a tag with a framework id did not throw an exception", result);
96 assertTrue("Setting a tag with an id with no package did not throw an exception", result);
112 assertTrue("Setting a tag with an id with app package did not throw an exception", result);
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingItem.java 29 * A one-line camera setting could be one of three types: knob, switch or restore
30 * preference button. The setting includes a title for showing the preference
35 * Other setting popup window includes several InLineSettingItem items with
  /packages/apps/Gallery2/src/com/android/camera/ui/
InLineSettingItem.java 29 * A one-line camera setting could be one of three types: knob, switch or restore
30 * preference button. The setting includes a title for showing the preference
35 * Other setting popup window includes several InLineSettingItem items with
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingItem.java 29 * A one-line camera setting could be one of three types: knob, switch or restore
30 * preference button. The setting includes a title for showing the preference
35 * Other setting popup window includes several InLineSettingItem items with
  /system/extras/tests/bionic/libc/bionic/
libdlclosetest1.cpp 53 fprintf(stderr, "%s: setting x to 1\n", __FUNCTION__);
72 fprintf(stderr, "%s: setting y(%p) to 2 !\n", __FUNCTION__, to_y);
81 fprintf(stderr, "%s: setting to_y=%p\n", __FUNCTION__, y);
libdlclosetest2.c 46 fprintf(stderr, "%s: setting x to 1\n", __FUNCTION__);
66 fprintf(stderr, "%s: setting y(%p) to 2!\n", __FUNCTION__, to_y);
72 fprintf(stderr, "%s: setting to_y=%p\n", __FUNCTION__, y);
  /frameworks/base/docs/html/design/patterns/
settings.jd 37 <h4 id="what-to-make-a-setting">Avoid the temptation to make everything a setting</h4>
51 "just make it a setting". For each control you're considering adding to Settings, make sure it
147 Try to combine them into one setting, using the design patterns described later in this section.
149 setting.</li>
176 <p>Use this pattern for a setting that is either selected or not selected.</p>
190 <p>Use this pattern for a setting that needs to present a discrete set of options, from which the
205 <p>Use this pattern for a setting where the range of values are not discrete and fall along a
220 <p>Use this pattern for a setting that needs to collect a date and/or time from the user.</p>
255 <p>Use this pattern for a setting or category of settings that contains a list of equivalent items
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SettingNotFoundExceptionTest.java 25 new SettingNotFoundException("Setting not found exception.");
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsRootDeviceSetup.java 32 * for setting up a device for CTS testing.
39 * a {@link DeviceSetup} which will enable the 'Stay Awake' setting and verify that external
55 CLog.i("Setting up %s to run CTS tests", device.getSerialNumber());
69 // This is chrome specific setting to disable the first screen.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
ConfigurableProvider.java 7 * Implemented by the BC provider. This allows setting of hidden parameters,
  /external/chromium/base/allocator/
win_allocator.cc 20 // NOTE: Setting LFH may fail. Vista already has it enabled.
  /external/chromium/base/
auto_reset.h 11 // AutoResetValue is useful for setting a variable to some value only
  /external/chromium/chrome/browser/search_engines/
template_url_fetcher_callbacks.h 19 // Performs the confirmation step for setting the default search engine
  /external/chromium/chrome/browser/ui/search_engines/
search_engine_tab_helper_delegate.h 18 // Shows a confirmation dialog box for setting the default search engine
  /external/dhcpcd/dhcpcd-hooks/
95-configured 3 # know that setting up the interface is complete.

Completed in 817 milliseconds

1 2 3 4 56 7 8 91011>>