Searched defs:defaults (Results 1 - 25 of 60) sorted by relevance

123

/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dmodel.js26 // operator. In either case, clear the operand and the defaults.
32 // operator and operands used as defaults, or if there is no current
36 var operator = this.operator || this.defaults.operator;
37 var operand = this.operator ? this.operand : this.defaults.operand;
39 var defaults = {operator: operator, operand: this.operand};
40 return this.reset_({accumulator: result, defaults: defaults});
74 this.defaults = {operator: null, operand: null};
90 this.defaults = ifDefined(state && state.defaults, thi
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dcss_properties.py11 defaults = { variable in class:CSSProperties
H A Dmake_element_factory.py41 defaults = dict(MakeQualifiedNamesWriter.default_parameters, **{ variable in class:MakeElementFactoryWriter
H A Dmake_element_lookup_trie.py91 defaults = { variable in class:ElementLookupTrieWriter
H A Dmake_element_type_helpers.py24 defaults = { variable in class:MakeElementTypeHelpersWriter
H A Dmake_media_features.py15 defaults = { variable in class:MakeMediaFeaturesWriter
H A Dmake_mediaquery_tokenizer_codepoints.py62 defaults = { variable in class:MakeMediaQueryTokenizerCodePointsWriter
H A Dmake_names.py47 defaults = { variable in class:MakeNamesWriter
H A Dmake_qualified_names.py48 defaults = { variable in class:MakeQualifiedNamesWriter
68 self.tags_in_file = InFile.load_from_files([in_file_paths.pop(0)], self.defaults, self.valid_values, self.default_parameters)
72 self.attrs_in_file = InFile.load_from_files([in_file_paths.pop()], self.defaults, self.valid_values, self.default_parameters)
H A Dmake_runtime_features.py44 # FIXME: valid_values and defaults should probably roll into one object.
48 defaults = { variable in class:RuntimeFeatureWriter
H A Dmake_settings.py58 defaults = { variable in class:MakeSettingsWriter
H A Din_generator.py40 defaults = None variable in class:Writer
48 self.in_file = InFile.load_from_files(in_files, self.defaults, self.valid_values, self.default_parameters)
H A Dmake_css_value_keywords.py105 defaults = { variable in class:CSSValueKeywordsWriter
H A Dmake_event_factory.py60 defaults = { variable in class:EventFactoryWriter
/external/apache-http/src/org/apache/http/params/
H A DDefaultedHttpParams.java54 private final HttpParams defaults; field in class:DefaultedHttpParams
56 public DefaultedHttpParams(final HttpParams local, final HttpParams defaults) { argument
62 this.defaults = defaults;
70 return new DefaultedHttpParams(clone, this.defaults);
80 if (obj == null && this.defaults != null) {
81 obj = this.defaults.getParameter(name);
103 return this.defaults;
/external/apache-http/src/org/apache/http/protocol/
H A DDefaultedHttpContext.java52 private final HttpContext defaults; field in class:DefaultedHttpContext
54 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) { argument
60 this.defaults = defaults;
66 return this.defaults.getAttribute(id);
81 return this.defaults;
/external/chromium_org/base/prefs/
H A Dpref_registry.cc19 scoped_refptr<PrefStore> PrefRegistry::defaults() { function in class:PrefRegistry
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_components_factory_impl_unittest.cc88 std::vector<syncer::ModelType> defaults = DefaultDatatypes(); local
90 for (iter = defaults.begin(); iter != defaults.end(); ++iter) {
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DTiming.h56 static const Timing& defaults() function in struct:blink::Timing
/external/skia/tests/
H A DRecordOptsTest.cpp109 const SkPaint defaults; local
111 REPORTER_ASSERT(r, bounded->minY <= SK_Scalar1 - defaults.getTextSize());
112 REPORTER_ASSERT(r, bounded->maxY >= SK_Scalar1 + defaults.getTextSize());
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java43 * 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) argument
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, recursivel
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertiesFactory.java240 * Creates an empty OutputProperties with the property key/value defaults specified by
250 * @return Properties object that holds the defaults for the given method.
343 * @param defaults Default properties, which may be null.
347 Properties defaults)
355 Properties props = new Properties(defaults);
385 if (defaults == null)
396 //"Could not load '"+resourceName+"' (check CLASSPATH), now using just the defaults ", ioe);
402 if (defaults == null)
413 //"Could not load '"+resourceName+"' (check CLASSPATH, applet security), now using just the defaults ", se);
345 loadPropertiesFile( final String resourceName, Properties defaults) argument
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dtemplates.cpp133 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/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationUtils.java87 * @param defaults {@code non-null;} the defaults, itself as an annotation
90 public static Annotation makeAnnotationDefault(Annotation defaults) { argument
93 result.put(new NameValuePair(VALUE_STRING, new CstAnnotation(defaults)));
/external/guava/guava-testlib/src/com/google/common/testing/
H A DNullPointerTester.java65 private final Map<Class<?>, Object> defaults = Maps.newHashMap(); field in class:NullPointerTester
110 defaults.put(type, value);
294 params[i] = defaults.get(types[i]);

Completed in 1829 milliseconds

123