HomeSort by relevance Sort by last modified time
    Searched defs:defaults (Results 26 - 50 of 517) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkTypeface.cpp 99 static sk_sp<SkTypeface> defaults[4]; local
105 defaults[style] = t ? t : SkEmptyTypeface::Make();
107 return defaults[style].get();
  /external/skqp/src/core/
SkTypeface.cpp 99 static sk_sp<SkTypeface> defaults[4]; local
105 defaults[style] = t ? t : SkEmptyTypeface::Make();
107 return defaults[style].get();
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationBuilderTest.java 424 // defaults
425 int defaults = 0; local
427 defaults |= Notification.DEFAULT_SOUND;
430 defaults |= Notification.DEFAULT_VIBRATE;
433 defaults |= Notification.DEFAULT_LIGHTS;
435 b.setDefaults(defaults);
  /frameworks/data-binding/compiler/src/test/java/android/databinding/
BindingExpressionParserTest.java 252 BindingExpressionParser.DefaultsContext defaults = syntax local
260 assertEquals("@id/foo_bar", defaults.constantValue().ResourceReference().getText());
  /packages/apps/Messaging/src/com/android/messaging/receiver/
SmsReceiver.java 284 int defaults = Notification.DEFAULT_LIGHTS; local
286 defaults |= Notification.DEFAULT_VIBRATE;
288 notification.defaults = defaults;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ConfigParser.py 17 Intrinsic defaults can be specified by passing them into the
27 __init__(defaults=None)
28 create the parser and specify a dictionary of intrinsic defaults. The
52 The filename defaults to fp.name; it is only used in error
57 expanded in the return values, based on the defaults passed into the
60 contents override any pre-existing defaults.
232 def __init__(self, defaults=None, dict_type=_default_dict,
241 if defaults:
242 for key, value in defaults.items():
245 def defaults(self) member in class:RawConfigParser
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ConfigParser.py 17 Intrinsic defaults can be specified by passing them into the
27 __init__(defaults=None)
28 create the parser and specify a dictionary of intrinsic defaults. The
52 The filename defaults to fp.name; it is only used in error
57 expanded in the return values, based on the defaults passed into the
60 contents override any pre-existing defaults.
232 def __init__(self, defaults=None, dict_type=_default_dict,
241 if defaults:
242 for key, value in defaults.items():
245 def defaults(self) member in class:RawConfigParser
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ConfigParser.py 17 Intrinsic defaults can be specified by passing them into the
27 __init__(defaults=None)
28 create the parser and specify a dictionary of intrinsic defaults. The
52 The filename defaults to fp.name; it is only used in error
57 expanded in the return values, based on the defaults passed into the
60 contents override any pre-existing defaults.
232 def __init__(self, defaults=None, dict_type=_default_dict,
241 if defaults:
242 for key, value in defaults.items():
245 def defaults(self) member in class:RawConfigParser
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ConfigParser.py 17 Intrinsic defaults can be specified by passing them into the
27 __init__(defaults=None)
28 create the parser and specify a dictionary of intrinsic defaults. The
52 The filename defaults to fp.name; it is only used in error
57 expanded in the return values, based on the defaults passed into the
60 contents override any pre-existing defaults.
232 def __init__(self, defaults=None, dict_type=_default_dict,
241 if defaults:
242 for key, value in defaults.items():
245 def defaults(self) member in class:RawConfigParser
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplateWizardState.java 63 /** Configured defaults for the parameters, by id */
64 public final Map<String, String> defaults = new HashMap<String, String>(); field in class:NewTemplateWizardState
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
funcobject.c 104 PyFunction_SetDefaults(PyObject *op, PyObject *defaults)
110 if (defaults == Py_None)
111 defaults = NULL;
112 else if (defaults && PyTuple_Check(defaults)) {
113 Py_INCREF(defaults);
120 ((PyFunctionObject *) op) -> func_defaults = defaults;
370 PyObject *defaults = Py_None; local
381 &name, &defaults, &closure))
388 if (defaults != Py_None && !PyTuple_Check(defaults)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
funcobject.c 104 PyFunction_SetDefaults(PyObject *op, PyObject *defaults)
110 if (defaults == Py_None)
111 defaults = NULL;
112 else if (defaults && PyTuple_Check(defaults)) {
113 Py_INCREF(defaults);
120 ((PyFunctionObject *) op) -> func_defaults = defaults;
370 PyObject *defaults = Py_None; local
381 &name, &defaults, &closure))
388 if (defaults != Py_None && !PyTuple_Check(defaults)) {
    [all...]
  /external/python/cpython2/Objects/
funcobject.c 104 PyFunction_SetDefaults(PyObject *op, PyObject *defaults)
110 if (defaults == Py_None)
111 defaults = NULL;
112 else if (defaults && PyTuple_Check(defaults)) {
113 Py_INCREF(defaults);
119 Py_XSETREF(((PyFunctionObject *)op)->func_defaults, defaults);
368 PyObject *defaults = Py_None; local
379 &name, &defaults, &closure))
386 if (defaults != Py_None && !PyTuple_Check(defaults))
    [all...]
  /external/robolectric-shadows/annotations/src/main/java/org/robolectric/annotation/
Config.java 71 * If not specified, Robolectric defaults to {@code AndroidManifest.xml}.
102 * If not specified, Robolectric defaults to the {@code applicationId}.
135 * If not specified, Robolectric defaults to {@code res}.
144 * If not specified, Robolectric defaults to {@code assets}.
153 * If not specified, Robolectric defaults to {@code build}.
508 public static Builder defaults() { method in class:Config.Builder
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScoringParams.java 239 String defaults = self.toString(); local
245 self.update(defaults);
  /libcore/ojluni/src/main/java/java/util/
Properties.java 47 * "defaults"; this second property list is searched if
129 protected Properties defaults; field in class:Properties
139 * Creates an empty property list with the specified defaults.
141 * @param defaults the defaults.
143 public Properties(Properties defaults) {
144 this.defaults = defaults;
725 * Properties from the defaults table of this {@code Properties}
782 * Properties from the defaults table of this {@code Properties
    [all...]
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 155 int defaults = 0; local
159 defaults |= Notification.DEFAULT_SOUND;
165 defaults |= Notification.DEFAULT_VIBRATE;
167 bigText.setDefaults(defaults);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintActivity.java 1174 PrintAttributes defaults = capabilities.getDefaults(); local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-cmap-table.hh 355 const DefaultUVS &defaults = base+defaultUVS; local
356 i = defaults.bsearch (codepoint);
  /external/libcups/cups/
cups-private.h 207 cups_option_t *defaults; /* Default options */ member in struct:_cups_dinfo_s
  /external/python/cpython3/Lib/
configparser.py 7 Intrinsic defaults can be specified by passing them into the
17 __init__(defaults=None, dict_type=_default_dict, allow_no_value=False,
22 Create the parser. When `defaults' is given, it is initialized into the
23 dictionary or intrinsic defaults. The keys must be strings, the values
89 The filename defaults to f.name; it is only used in error
104 expanded in the return values, based on the defaults passed into the
107 contents override any pre-existing defaults. If `option' is a key in
362 def before_get(self, parser, section, option, value, defaults):
392 def before_get(self, parser, section, option, value, defaults):
394 self._interpolate_some(parser, option, L, value, section, defaults, 1
641 def defaults(self): member in class:RawConfigParser
    [all...]
  /external/python/cpython3/Objects/
funcobject.c 33 op->func_kwdefaults = NULL; /* No keyword only defaults */
115 PyFunction_SetDefaults(PyObject *op, PyObject *defaults)
121 if (defaults == Py_None)
122 defaults = NULL;
123 else if (defaults && PyTuple_Check(defaults)) {
124 Py_INCREF(defaults);
130 Py_XSETREF(((PyFunctionObject *)op)->func_defaults, defaults);
145 PyFunction_SetKwDefaults(PyObject *op, PyObject *defaults)
151 if (defaults == Py_None
445 PyObject *defaults = Py_None; local
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 348 BindingExpressionParser.DefaultsContext defaults = root local
356 if (defaults != null) {
357 BindingExpressionParser.ConstantValueContext constantValue = defaults
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CalendarTest.java 574 int[] defaults = new int[count]; local
583 defaults[0] = 1970;
584 defaults[1] = 0;
585 defaults[2] = 1;
586 defaults[3] = 0;
587 defaults[4] = 0;
588 defaults[5] = 0;
607 + defaults[i] + ".", defaults[i], calendar.get(index));
619 + defaults[i] + ".", defaults[i], calendar.get(index))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
__init__.py 237 return sum(1 for d in self.defaults())
488 def defaults(self): member in class:SELinuxPolicy

Completed in 1390 milliseconds

12 3 4 5 6 7 8 91011>>