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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/intl/break-iterator/
default-locale.js 33 var options = iterator.resolvedOptions(); variable
36 assertFalse(options.locale === 'und');
37 assertFalse(options.locale === '');
38 assertFalse(options.locale === undefined);
41 assertEquals(options.locale, %GetDefaultICULocale());
44 assertEquals(options.locale, iteratorNone.resolvedOptions().locale);
48 assertEquals(options.locale, iteratorBraket.resolvedOptions().locale);
  /external/chromium_org/v8/test/intl/collator/
default-locale.js 33 var options = collator.resolvedOptions(); variable
36 assertFalse(options.locale === 'und');
37 assertFalse(options.locale === '');
38 assertFalse(options.locale === undefined);
41 assertEquals(options.locale, %GetDefaultICULocale());
44 assertEquals(options.locale, collatorNone.resolvedOptions().locale);
48 assertEquals(options.locale, collatorBraket.resolvedOptions().locale);
  /external/chromium_org/v8/test/intl/date-format/
default-locale.js 33 var options = dtf.resolvedOptions(); variable
36 assertFalse(options.locale === 'und');
37 assertFalse(options.locale === '');
38 assertFalse(options.locale === undefined);
41 assertEquals(options.locale, %GetDefaultICULocale());
44 assertEquals(options.locale, dtfNone.resolvedOptions().locale);
  /external/chromium_org/v8/test/intl/number-format/
default-locale.js 33 var options = nf.resolvedOptions(); variable
36 assertFalse(options.locale === 'und');
37 assertFalse(options.locale === '');
38 assertFalse(options.locale === undefined);
41 assertEquals(options.locale, %GetDefaultICULocale());
44 assertEquals(options.locale, nfNone.resolvedOptions().locale);
  /external/chromium_org/v8/test/mozilla/
mozilla-shell-emulation.js 31 // Options are generally ignored (not set, if anybody asks).
33 function options(aOptionName) { function
34 // Returns comma-separated list of options set.
  /external/chromium_org/chrome/browser/ui/webui/options/
font_settings_utils_linux.cc 5 #include "chrome/browser/ui/webui/options/font_settings_utils.h"
7 namespace options { namespace
14 } // namespace options
font_settings_utils_win.cc 5 #include "chrome/browser/ui/webui/options/font_settings_utils.h"
7 namespace options { namespace
14 } // namespace options
advanced_options_utils.h 14 namespace options { namespace
16 // Chrome advanced options utility methods.
29 } // namespace options
automatic_settings_reset_handler.h 9 #include "chrome/browser/ui/webui/options/options_ui.h"
11 namespace options { namespace
32 } // namespace options
easy_unlock_handler.h 10 #include "chrome/browser/ui/webui/options/options_ui.h"
12 namespace options { namespace
41 } // namespace options
font_settings_utils.h 12 namespace options { namespace
14 // Chrome advanced options utility methods.
23 } // namespace options
geolocation_options_handler.h 9 #include "chrome/browser/ui/webui/options/options_ui.h"
11 namespace options { namespace
13 // Handles processing of the geolocation options on settings page load.
28 } // namespace options
help_overlay_handler.h 10 #include "chrome/browser/ui/webui/options/options_ui.h"
12 namespace options { namespace
16 class HelpOverlayHandler : public ::options::OptionsPageUIHandler {
32 } // namespace options
language_options_handler.h 8 #include "chrome/browser/ui/webui/options/language_options_handler_common.h"
10 namespace options { namespace
12 // Language options UI page handler for non-Chrome OS platforms. For Chrome OS,
45 } // namespace options
options_handlers_helper.h 16 namespace options { namespace
30 } // namespace options
options_ui_browsertest.h 17 namespace options { namespace
50 } // namespace options
  /external/oprofile/pp/
opannotate_options.h 3 * Options for opannotate tool
23 namespace options { namespace
45 void handle_options(options::spec const & spec);
oparchive_options.h 3 * Options for oparchive tool
20 namespace options { namespace
37 void handle_options(options::spec const & spec);
opgprof_options.h 3 * Options for opgprof tool
19 namespace options { namespace
34 void handle_options(options::spec const & spec);
opreport_options.h 3 * Options for opreport tool
26 namespace options { namespace
56 void handle_options(options::spec const & spec);
  /external/chromium_org/v8/test/intl/overrides/
date.js 45 // Specify locale, default options for toLocaleXXXString
58 // Specify locale and options for toLocaleXXXString
60 var options = {year: 'numeric', month: 'long', day: 'numeric',
62 var dtf = new Intl.DateTimeFormat(locale, options);
63 assertEquals(dtf.format(date), date.toLocaleString(locale, options));
64 assertEquals(dtf.format(date), date.toLocaleDateString(locale, options));
65 assertEquals(dtf.format(date), date.toLocaleTimeString(locale, options));
string.js 48 var collator = new Intl.Collator(locale, options);
51 return a.localeCompare(b, locale, options)
58 var options = undefined; variable
62 // Specify locale, keep default options.
63 options = undefined;
67 // Specify locale and options.
68 options = {caseFirst: 'upper'};
  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
background.js 14 var options = {
22 options,
  /external/chromium_org/chrome/browser/resources/
sync_setup_overlay.js 5 cr.exportPath('options');
53 options.DataTypeSelection = {
59 cr.define('options', function() {
71 // options in the main drop-down menu. Reset when the dialog is closed.
77 // closed. Used to restore checkbox state while switching between the options
229 * @param {options.DataTypeSelection} selectedIndex Index of user's
234 if (selectedIndex == options.DataTypeSelection.CHOOSE_WHAT_TO_SYNC) {
240 selectedIndex == options.DataTypeSelection.SYNC_EVERYTHING);
311 options.DataTypeSelection.SYNC_EVERYTHING;
313 options.DataTypeSelection.SYNC_NOTHING
    [all...]
  /external/chromium_org/chrome/browser/resources/options/chromeos/
display_options.js 5 cr.exportPath('options');
25 options.DisplayInfo;
32 options.SecondaryDisplayLayout = {
39 cr.define('options', function() {
74 * @return {options.SecondaryDisplayLayout} The position of the calculated
86 return options.SecondaryDisplayLayout.BOTTOM;
88 return options.SecondaryDisplayLayout.LEFT;
91 return options.SecondaryDisplayLayout.RIGHT;
93 return options.SecondaryDisplayLayout.TOP;
105 'display-options-page')
    [all...]

Completed in 365 milliseconds

1 2 3 4 5 6 7 8 91011>>