HomeSort by relevance Sort by last modified time
    Searched full:defaults (Results 451 - 475 of 4080) sorted by null

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_field.cc 51 // Subclasses whose instances may need saved defaults will override this
58 // Subclasses whose instances may need saved defaults will override this
110 // for a message field because they have no defaults and Nano uses 'null'
  /external/skia/tests/
LayerDrawLooperTest.cpp 48 // Add the front layer, with the defaults.
88 // Add the back layer, with the defaults.
128 // Add the back layer, with the defaults.
  /frameworks/base/core/java/android/preference/
SwitchPreference.java 66 * the view. Can be 0 to not look for defaults.
70 * to not look for defaults.
95 * the view. Can be 0 to not look for defaults.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cfgparser.py 35 def newconfig(self, defaults=None):
36 if defaults is None:
39 self.cf = self.config_class(defaults,
43 def fromstring(self, string, defaults=None):
44 cf = self.newconfig(defaults)
154 defaults={"key":"value"})
166 "could not locate option, expecting case-insensitive defaults")
343 defaults={"getname": "%(__name__)s"})
352 defaults={"default": "<default>"})
583 def newconfig(self, defaults=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cfgparser.py 35 def newconfig(self, defaults=None):
36 if defaults is None:
39 self.cf = self.config_class(defaults,
43 def fromstring(self, string, defaults=None):
44 cf = self.newconfig(defaults)
154 defaults={"key":"value"})
166 "could not locate option, expecting case-insensitive defaults")
343 defaults={"getname": "%(__name__)s"})
352 defaults={"default": "<default>"})
583 def newconfig(self, defaults=None)
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
tabs.json 46 "description": "The soonest that the JavaScript or CSS will be injected into the tab. Defaults to \"document_idle\"."
184 "description": "Defaults to the <a href='windows#current-window'>current window</a>."
206 "description": "Defaults to the <a href='windows#current-window'>current window</a>."
230 "description": "The window to create the new tab in. Defaults to the <a href='windows#current-window'>current window</a>."
241 "description": "The URL to navigate the tab to initially. Fully-qualified URLs must include a scheme (i.e. 'http://www.google.com', not 'www.google.com'). Relative URLs will be relative to the current page within the extension. Defaults to the New Tab Page."
246 "description": "Whether the tab should become the active tab in the window. Does not affect whether the window is focused (see $(ref:windows.update)). Defaults to <var>true</var>."
252 "description": "Whether the tab should become the selected tab in the window. Defaults to <var>true</var>"
257 "description": "Whether the tab should be pinned. Defaults to <var>false</var>"
439 "description": "Defaults to the selected tab of the <a href='windows#current-window'>current window</a>."
515 "description": "Defaults to the window the tab is currently in.
    [all...]
  /frameworks/base/core/java/android/content/
AbstractThreadedSyncAdapter.java 66 * <li><code>android:userVisible</code> defaults to true and controls whether or not this sync
68 * <li><code>android:supportsUploading</code> defaults
73 * <li><code>android:allowParallelSyncs</code> defaults to false and if true indicates that
77 * <li><code>android:isAlwaysSyncable</code> defaults to false and if true tells the SyncManager
79 * <li><code>android:syncAdapterSettingsAction</code> defaults to null and if supplied it
  /system/core/init/
readme.txt 78 It defaults to the service security context, as specified by seclabel or
83 Currently defaults to root. (??? probably should default to nobody)
92 Currently defaults to root. (??? probably should default to nobody)
99 If not specified and no transition is defined in policy, defaults to the init context.
258 currently defaults to five seconds.
  /external/chromium_org/chrome/installer/mac/
dmgdiffer.sh 161 if ! old_app_version="$(defaults read "${old_app_plist}" \
173 if ! old_app_bundleid="$(defaults read "${old_app_plist}" \
181 if ! old_ks_version="$(defaults read "${old_ks_plist}" \
190 if ! new_app_version="$(defaults read "${new_app_plist}" \
203 if ! new_ks_version="$(defaults read "${new_ks_plist}" \
210 if ! new_ks_product="$(defaults read "${new_app_plist}" \
223 new_ks_channel="$(defaults read "${new_app_plist}" \
  /external/e2fsprogs/e2fsck/
e2fsck.conf.5.in 88 of 32. This setting defaults to false.
110 boolean value of false. This setting defaults to true.
143 defaults to true.
148 be doubled if the system is running on battery. This setting defaults to
158 higher, more efficient level. This relation defaults to 20
309 defaults to true.
314 defaults to true.
  /external/e2fsprogs/misc/
mke2fs.conf.5.in 72 .I [defaults]
76 In general, these defaults may be overridden by a definition in the
81 Contains relations which define defaults that should be used for specific
87 .SH THE [defaults] STANZA
89 .I [defaults]
217 [defaults]
282 the configuration relation defaults.base_features would enable an
414 stanza names device name so that per-device defaults can be specified.
  /external/eigen/cmake/
EigenTesting.cmake 227 message(STATUS "SSE2: Using architecture defaults")
233 message(STATUS "SSE3: Using architecture defaults")
239 message(STATUS "SSSE3: Using architecture defaults")
245 message(STATUS "SSE4.1: Using architecture defaults")
251 message(STATUS "SSE4.2: Using architecture defaults")
257 message(STATUS "Altivec: Using architecture defaults")
263 message(STATUS "ARM NEON: Using architecture defaults")
  /libcore/luni/src/main/java/java/util/
Properties.java 84 protected Properties defaults; field in class:Properties
103 defaults = properties;
158 if (property == null && defaults != null) {
159 property = defaults.getProperty(name);
179 if (property == null && defaults != null) {
180 property = defaults.getProperty(name);
216 Properties def = defaults;
219 def = def.defaults;
462 if (defaults != null) {
463 defaults.selectProperties(selectProperties, isStringOnly)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 801 ArgSpec = namedtuple('ArgSpec', 'args varargs keywords defaults')
806 A tuple of four things is returned: (args, varargs, varkw, defaults).
809 'defaults' is an n-tuple of the default values of the last n arguments.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 801 ArgSpec = namedtuple('ArgSpec', 'args varargs keywords defaults')
806 A tuple of four things is returned: (args, varargs, varkw, defaults).
809 'defaults' is an n-tuple of the default values of the last n arguments.
    [all...]
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_to_expectations.py 67 images; if not specified, defaults to a "file:///" URL representation
355 help='Directory containing all actual-result JSON files; defaults to '
359 help='Directory containing all expected-result JSON files; defaults to '
364 'ignore failures for any tests listed in the file; defaults to '
371 help='Which result types to include. Defaults to \'%(default)s\'; '
378 'defaults to \'%(default)s\' .')
  /external/skia/gm/rebaseline_server/
compare_to_expectations.py 67 images; if not specified, defaults to a "file:///" URL representation
355 help='Directory containing all actual-result JSON files; defaults to '
359 help='Directory containing all expected-result JSON files; defaults to '
364 'ignore failures for any tests listed in the file; defaults to '
371 help='Which result types to include. Defaults to \'%(default)s\'; '
378 'defaults to \'%(default)s\' .')
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
unordered_map.h 246 * @param Hash Hashing function object type, defaults to hash<Value>.
247 * @param Pred Predicate function object type, defaults to equal_to<Value>.
248 * @param Alloc Allocator type, defaults to allocator<Key>.
314 * @param Hash Hashing function object type, defaults to hash<Value>.
315 * @param Pred Predicate function object type, defaults to equal_to<Value>.
316 * @param Alloc Allocator type, defaults to allocator<Key>.
unordered_set.h 241 * @param Hash Hashing function object type, defaults to hash<Value>.
242 * @param Pred Predicate function object type, defaults to equal_to<Value>.
243 * @param Alloc Allocator type, defaults to allocator<Key>.
306 * @param Hash Hashing function object type, defaults to hash<Value>.
307 * @param Pred Predicate function object type, defaults to equal_to<Value>.
308 * @param Alloc Allocator type, defaults to allocator<Key>.
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
unordered_map.h 246 * @param Hash Hashing function object type, defaults to hash<Value>.
247 * @param Pred Predicate function object type, defaults to equal_to<Value>.
248 * @param Alloc Allocator type, defaults to allocator<Key>.
314 * @param Hash Hashing function object type, defaults to hash<Value>.
315 * @param Pred Predicate function object type, defaults to equal_to<Value>.
316 * @param Alloc Allocator type, defaults to allocator<Key>.
unordered_set.h 241 * @param Hash Hashing function object type, defaults to hash<Value>.
242 * @param Pred Predicate function object type, defaults to equal_to<Value>.
243 * @param Alloc Allocator type, defaults to allocator<Key>.
306 * @param Hash Hashing function object type, defaults to hash<Value>.
307 * @param Pred Predicate function object type, defaults to equal_to<Value>.
308 * @param Alloc Allocator type, defaults to allocator<Key>.
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
unordered_map.h 252 * @param Hash Hashing function object type, defaults to hash<Value>.
253 * @param Pred Predicate function object type, defaults to equal_to<Value>.
254 * @param Alloc Allocator type, defaults to allocator<Key>.
320 * @param Hash Hashing function object type, defaults to hash<Value>.
321 * @param Pred Predicate function object type, defaults to equal_to<Value>.
322 * @param Alloc Allocator type, defaults to allocator<Key>.
unordered_set.h 271 * @param Hash Hashing function object type, defaults to hash<Value>.
272 * @param Pred Predicate function object type, defaults to equal_to<Value>.
273 * @param Alloc Allocator type, defaults to allocator<Key>.
336 * @param Hash Hashing function object type, defaults to hash<Value>.
337 * @param Pred Predicate function object type, defaults to equal_to<Value>.
338 * @param Alloc Allocator type, defaults to allocator<Key>.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
unordered_map.h 246 * @param Hash Hashing function object type, defaults to hash<Value>.
247 * @param Pred Predicate function object type, defaults to equal_to<Value>.
248 * @param Alloc Allocator type, defaults to allocator<Key>.
314 * @param Hash Hashing function object type, defaults to hash<Value>.
315 * @param Pred Predicate function object type, defaults to equal_to<Value>.
316 * @param Alloc Allocator type, defaults to allocator<Key>.

Completed in 637 milliseconds

<<11121314151617181920>>