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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/webui/ntp/
suggestions_source_top_sites.h 45 // Gets the sorting order from the command-line arguments. Defaults to
50 // Gets the filter width from the command-line arguments. Defaults to one
  /external/chromium_org/chrome/browser/webdata/
web_intents_table.h 39 // Also manages the defaults table:
50 // The defaults are scoped by action, then type, then url prefix.
  /external/chromium_org/native_client_sdk/src/doc/doxygen/
Doxyfile.c.template 7 # Specified below are only the values that differ from the defaults. To see the
10 # doxygen -g Doxyfile.defaults
Doxyfile.cpp.template 7 # Specified below are only the values that differ from the defaults. To see the
10 # doxygen -g Doxyfile.defaults
  /external/e2fsprogs/tests/
test_one.in 57 default_script=$SRCDIR/defaults/${test_base}_script
59 . $SRCDIR/defaults/${test_base}_script
  /external/iproute2/man/man8/
tc-sfb.8 83 Defaults to 10 minutes.
97 Defaults to one minute, should be lower than
103 Further packets are dropped. Defaults to the transmit queue length of the
112 Defaults to 25.
126 to be over-used. Must be between 0 and 1.0. Defaults to 0.00050.
131 Defaults to 0.00005.
143 Defaults to 20 packets.
182 Rather, packets are enqueued to the inner qdisc (defaults to pfifo).
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
base64_codec.py 18 errors defines the error handling to apply. It defaults to
36 errors defines the error handling to apply. It defaults to
hex_codec.py 18 errors defines the error handling to apply. It defaults to
36 errors defines the error handling to apply. It defaults to
quopri_codec.py 15 errors defines the error handling to apply. It defaults to
31 errors defines the error handling to apply. It defaults to
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
base64_codec.py 18 errors defines the error handling to apply. It defaults to
36 errors defines the error handling to apply. It defaults to
hex_codec.py 18 errors defines the error handling to apply. It defaults to
36 errors defines the error handling to apply. It defaults to
quopri_codec.py 15 errors defines the error handling to apply. It defaults to
31 errors defines the error handling to apply. It defaults to
  /bionic/libc/dns/net/
nsdispatch.c 100 const char *method, const ns_src defaults[], ...)
113 assert(defaults != NULL);
114 if (database == NULL || method == NULL || defaults == NULL)
117 srclist = defaults;
129 va_start(ap, defaults);
132 if (defaults[0].flags & NS_FORCEALL)
  /external/chromium_org/chrome/common/
chrome_utility_printing_messages.h 82 // Tells the utility process to get capabilities and defaults for the specified
89 // Tells the utility process to get capabilities and defaults for the specified
119 // capabilities and defaults.
125 // semantic capabilities and defaults.
132 // capabilities and defaults.
137 // semantic capabilities and defaults.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
config.py 34 """Initialize the configuration attributes to their defaults."""
35 # Defaults for [run]
43 # Defaults for [report]
52 # Defaults for [html]
55 # Defaults for [xml]
58 # Defaults for [paths]
  /external/lldb/www/
symbols.html 35 <p>DebugSymbols.framework also has global defaults that can be modified to allow
37 find important debug symbols. The domain for the DebugSymbols.framework defaults
38 is <b>com.apple.DebugSymbols</b>, and the defaults can be read, written or modified
39 using the <b>defaults</b> shell command:
40 <code><pre><tt><b>% defaults read com.apple.DebugSymbols
41 % defaults write com.apple.DebugSymbols KEY ...
42 % defaults delete com.apple.DebugSymbols KEY</b>
45 <p>The following is a list of the defaults key value
49 <td class="hed" width="20%">Defaults Key</td>
67 <code><pre><tt><b>% defaults write com.apple.DebugSymbols DBGFileMappedPaths -string /path/to/uuidmap1</b>
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LoadUrlParams.java 69 // Initialize other fields to defaults matching defaults of the native
124 * Defaults to about:blank if null.
126 * this is ignored if baseUrl is a data: url. Defaults to about:blank
144 * Defaults to about:blank if null.
146 * this is ignored if baseUrl is a data: url. Defaults to about:blank
203 * Set load type of this load. Defaults to LOAD_TYPE_DEFAULT.
211 * Set transition type of this load. Defaults to PAGE_TRANSITION_LINK.
309 * Set user agent override option of this load. Defaults to UA_OVERRIDE_INHERIT.
353 * defaults to false
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
OutputProperties.java 43 * its "defaults"; this second property list is searched if the property key
62 * Creates an empty OutputProperties with the specified defaults.
64 * @param defaults the defaults.
66 public OutputProperties(Properties defaults)
68 m_properties = new Properties(defaults);
72 * Creates an empty OutputProperties with the defaults specified by
147 * and its defaults, recursively, are then checked. The method returns
161 * and its defaults, recursively, are then checked. The method returns
202 * and its defaults, recursively, are then checked. The method return
    [all...]
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_controller_android.cc 357 const base::DictionaryValue* defaults = local
359 if (defaults) {
360 defaults->GetString(kLastUsedAccountName, &last_used_account_name);
361 defaults->GetBoolean(kLastUsedChoiceIsAutofill,
363 defaults->GetString(kLastUsedBillingAddressGuid, &last_used_billing);
364 defaults->GetString(kLastUsedShippingAddressGuid, &last_used_shipping);
365 defaults->GetString(kLastUsedCreditCardGuid, &last_used_credit_card);
473 base::DictionaryValue* defaults = updater.Get(); local
474 if (defaults) {
476 defaults->SetString(kLastUsedAccountName, last_used_account_name)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 157 defaults = fob.func_defaults or []
158 defaults = list(map(lambda name: "=%s" % repr(name), defaults))
159 defaults = [""] * (len(real_args) - len(defaults)) + defaults
160 items = map(lambda arg, dflt: arg + dflt, real_args, defaults)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 157 defaults = fob.func_defaults or []
158 defaults = list(map(lambda name: "=%s" % repr(name), defaults))
159 defaults = [""] * (len(real_args) - len(defaults)) + defaults
160 items = map(lambda arg, dflt: arg + dflt, real_args, defaults)
  /external/chromium_org/cc/layers/
texture_layer.h 97 // Sets whether this texture should be Y-flipped at draw time. Defaults to
101 // Sets a UV transform to be used at draw time. Defaults to (0, 0) and (1, 1).
112 // Defaults to true.
116 // at draw time. Defaults to false.
121 // Requires a non-nil client. Defaults to false.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 74 charset names the character set to use to encode the header. It defaults
82 defaults to "\\n". Set this to "\\r\\n" if you are using the result of
90 with each line wrapped at, at most, maxlinelen characters (defaults to 76
128 Each line will be wrapped at, at most, maxlinelen characters (defaults to
135 Each line of encoded text will end with eol, which defaults to "\\n". Set
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 74 charset names the character set to use to encode the header. It defaults
82 defaults to "\\n". Set this to "\\r\\n" if you are using the result of
90 with each line wrapped at, at most, maxlinelen characters (defaults to 76
128 Each line will be wrapped at, at most, maxlinelen characters (defaults to
135 Each line of encoded text will end with eol, which defaults to "\\n". Set
  /bionic/libc/include/sys/
ttydefaults.h 40 * System wide defaults for terminal state.
46 * Defaults on "first" open.
55 * Control Character Defaults

Completed in 421 milliseconds

1 2 3 4 56 7 8 91011>>