HomeSort by relevance Sort by last modified time
    Searched full:defaults (Results 76 - 100 of 3746) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/page/
page_measurement_unittest_base.py 38 defaults = temp_parser.get_default_values()
39 for k, v in defaults.__dict__.items():
  /external/chromium_org/v8/tools/
tick-processor.html 83 ArgumentsProcessor.DEFAULTS = {
104 new (entriesProviders[ArgumentsProcessor.DEFAULTS.platform])(
105 ArgumentsProcessor.DEFAULTS.nm,
106 ArgumentsProcessor.DEFAULTS.targetRootFS),
107 ArgumentsProcessor.DEFAULTS.separateIc,
108 ArgumentsProcessor.DEFAULTS.callGraphSize,
109 ArgumentsProcessor.DEFAULTS.ignoreUnknown,
110 ArgumentsProcessor.DEFAULTS.stateFilter,
  /external/clang/test/FixIt/
fixit-missing-method-return-type.m 13 - initWithFoo:(id)foo; // expected-warning {{method has no return type specified; defaults to 'id' [-Wmissing-method-return-type]}}
19 - initWithFoo:(id)foo { return 0; } // expected-warning {{method has no return type specified; defaults to 'id' [-Wmissing-method-return-type]}}
  /external/clang/test/Modules/
method_pool.m 23 [object method4]; // expected-warning{{instance method '-method4' not found (return type defaults to 'id')}}
41 [object method3]; // expected-warning{{instance method '-method3' not found (return type defaults to 'id')}}
  /external/clang/test/Sema/
invalid-decl.c 9 typedef xtype (*x)(void* handle); // expected-error {{function cannot return function type}} expected-warning {{type specifier missing, defaults to 'int'}} expected-warning {{type specifier missing, defaults to 'int'}}
  /external/clang/test/SemaObjC/
class-message-protocol-lookup.m 21 Class<TestProtocol> c = [c alloc]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}}
30 Class<TestProtocol> c = [c alloc]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}}
  /external/dnsmasq/contrib/Suse/
dnsmasq-SuSE.patch 7 -as. The defaults to "dip", if available, to facilitate access to
8 +as. The defaults to "dialout", if available, to facilitate access to
  /external/emma/core/res/com/vladium/emma/instr/
instr_usage.res 15 "metadata output file (defaults to 'coverage.em')";
25 "output mode (defaults to 'copy')";
  /external/markdown/docs/extensions/
HTML_Tidy.txt 16 [options][] for a full list of the available options. The defaults are set to
17 most closely match Markdowns defaults with the exception that you get much
  /external/skia/dm/
README 23 once. --cpuThreads defaults to the number of cores on the machine.
24 --gpuThreads defaults to 1, but you may find 2 or 4 runs a little faster.
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_controller_android.cc 276 const base::DictionaryValue* defaults = local
278 if (defaults) {
279 defaults->GetString(kLastUsedAccountName, &last_used_account_name);
280 defaults->GetBoolean(kLastUsedChoiceIsAutofill,
282 defaults->GetString(kLastUsedBillingAddressGuid, &last_used_billing);
283 defaults->GetString(kLastUsedShippingAddressGuid, &last_used_shipping);
284 defaults->GetString(kLastUsedCreditCardGuid, &last_used_credit_card);
372 base::DictionaryValue* defaults = updater.Get(); local
373 if (defaults) {
375 defaults->SetString(kLastUsedAccountName, last_used_account_name)
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
location.idl 60 // Minimum distance between location updates, in meters. Defaults to 0 - any
64 // Minimum time interval between location updates, in milliseconds. Defaults
71 // Defaults to 0.
80 // |name| : Optional name to identify this request. Defaults to the empty
87 // |name| : Optional name to identify the request to remove. Defaults to the
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 133 void defaults(int x = []{ return T(); }()) { }; // expected-error{{cannot initialize a parameter of type 'int' with an rvalue of type 'int *'}} \ function in namespace:NonLocalLambdaInstantation
137 defaults<int>();
138 defaults<float>();
139 defaults<int*>(); // expected-note{{in instantiation of default function argument expression for 'defaults<int *>' required here}}
  /external/llvm/docs/CommandGuide/
llvm-symbolizer.rst 54 Print function names as well as source file/line locations. Defaults to true.
59 in debug info sections. Defaults to true.
63 Print demangled function names. Defaults to true.
68 inlnied frames. Defaults to true.
76 address will not be symbolized. Defaults to empty string.
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_xml.properties 21 # Specify defaults when method="xml". These defaults serve as a base for
22 # other defaults, such as output_html and output_text.
  /external/chromium_org/third_party/WebKit/public/platform/
WebContentLayer.h 43 // Defaults to false.
47 // be rasterized based on the layer's hierarchy and transform. This defaults
54 // Defaults to false.
WebExternalTextureLayer.h 52 // Sets whether every pixel in this layer is opaque. Defaults to false.
55 // Sets whether this layer's texture has premultiplied alpha or not. Defaults to true.
59 // at draw time. Defaults to false.
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_button_cell.h 23 // color provided by the ThemeService defaults.
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread.py 46 args: list of positional arguments for callable, defaults to empty.
47 kwargs: dictionary of keyword arguments for callable, defaults to empty.
48 name: thread name, defaults to Thread-N.
79 threads: a list of ReraiserThread objects; defaults to empty.
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_button_cell.h 17 // color provided by the ThemeService defaults.
  /external/chromium_org/extensions/common/manifest_handlers/
offline_enabled_info.h 22 // Defaults to false, except for platform apps which are offline by default.
  /external/chromium_org/net/cookies/
cookie_constants.h 25 // Defaults to COOKIE_PRIORITY_DEFAULT for empty or unrecognized strings.
  /external/chromium_org/third_party/openssl/
openssl-chromium.config 1 # Configuration defaults for import_from_android.sh
  /external/clang/test/Parser/
declarators.c 9 int f4(*XX)(void); /* expected-error {{cannot return}} expected-warning {{type specifier missing, defaults to 'int'}} */
63 static f; // expected-warning {{type specifier missing, defaults to 'int'}}
64 static g = 4; // expected-warning {{type specifier missing, defaults to 'int'}}
65 static h // expected-warning {{type specifier missing, defaults to 'int'}}
objc-forcollection-neg-2.m 27 static i;// expected-warning {{type specifier missing, defaults to 'int'}}

Completed in 3987 milliseconds

1 2 34 5 6 7 8 91011>>