Searched refs:overrides (Results 1 - 25 of 36) sorted by relevance

12

/external/emma/core/java12/com/vladium/emma/
H A DProcessor.java74 * @param overrides [may be null (unsets the previous overrides)]
76 public synchronized final void setPropertyOverrides (final Properties overrides) argument
78 m_propertyOverrides = EMMAProperties.wrap (overrides);
83 * @param overrides [may be null (unsets the previous overrides)]
85 public synchronized final void setPropertyOverrides (final IProperties overrides) argument
87 m_propertyOverrides = overrides;
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dtest_expectations.py87 def check_test_expectations(self, expectations_str, tests=None, overrides=None):
94 is_lint_mode=True, overrides=overrides)
113 overrides = self._port_obj.test_expectations_overrides()
117 overrides=overrides)
H A Dtest_expectations_unittest.py72 def process_expectations(self, expectations, overrides=None):
81 overrides=None)
/external/chromium/chrome/browser/extensions/
H A Dextension_web_ui.cc147 // For chrome:// overrides, some of the defaults are a little different.
232 // chrome:// URL overrides
244 const DictionaryValue* overrides = local
248 if (!overrides || !overrides->GetList(page, &url_list))
302 Profile* profile, const Extension::URLOverrideMap& overrides) {
303 if (overrides.empty())
312 Extension::URLOverrideMap::const_iterator iter = overrides.begin();
313 for (; iter != overrides.end(); ++iter) {
386 Profile* profile, const Extension::URLOverrideMap& overrides) {
301 RegisterChromeURLOverrides( Profile* profile, const Extension::URLOverrideMap& overrides) argument
385 UnregisterChromeURLOverrides( Profile* profile, const Extension::URLOverrideMap& overrides) argument
[all...]
H A Dextension_web_ui.h62 // Register and unregister a dictionary of one or more overrides.
66 const Extension::URLOverrideMap& overrides);
68 const Extension::URLOverrideMap& overrides);
H A Dextension_override_apitest.cc21 const DictionaryValue* overrides = local
26 if (!overrides->GetList("history", &values))
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js367 * @param {Object} [overrides] additional properties/methods to add to the
372 extend: function(subc, superc, overrides) {
386 if (overrides) {
387 for (var i in overrides) {
388 subc.prototype[i]=overrides[i];
391 org.antlr.lang._IEEnumFix(subc.prototype, overrides);
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_prepopulate_data_unittest.cc99 ListValue* overrides = new ListValue; local
111 overrides->Append(entry);
112 prefs.SetUserPref(prefs::kSearchProviderOverrides, overrides);
/external/emma/core/java12/com/vladium/util/
H A DProperty.java48 * independently from 'overrides' or 'base', so this method
51 * @param overrides [null is equivalent to empty]
56 public static Properties combine (final Properties overrides, final Properties base) argument
62 if (overrides == null)
65 return overrides;
70 if (overrides == null) return base;
72 // [assertion: both 'overrides' and 'base' are not null]
77 // into possible bases inside 'overrides'
79 for (Enumeration overrideNames = overrides.propertyNames (); overrideNames.hasMoreElements (); )
82 final String v = overrides
[all...]
H A DIProperties.java103 * Combines two property sets by creating a property set that chains 'overrides'
104 * to 'base' for property delegation. Note that 'overrides' are cloned
107 * @param overrides [may be null]
112 public static IProperties combine (final IProperties overrides, final IProperties base) argument
114 final IProperties result = overrides != null
115 ? overrides.copy ()
/external/chromium/base/
H A Dpath_service.cc97 PathMap overrides; // Track path overrides. member in struct:__anon1574::PathData
150 PathMap::const_iterator it = path_data->overrides.find(key);
151 if (it != path_data->overrides.end()) {
235 path_data->overrides[key] = file_path;
/external/okhttp/src/main/java/libcore/net/
H A DMimeUtils.java404 // Get the appropriate InputStream to read overrides from, if any.
413 Properties overrides = new Properties();
414 overrides.load(stream);
416 for (Map.Entry<Object, Object> entry : overrides.entrySet()) {
/external/clang/tools/scan-view/
H A DScanView.py672 overrides = { 'ScanView' : {},
677 overrides['ScanView']['reporter'] = i
679 overrides['Radar']['Component'] = 'llvm - checker'
680 overrides['Radar']['Component Version'] = 'X'
681 return self.send_report(None, overrides)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DCompositeGrammar.java402 Set<String> overrides = new HashSet<String>();
410 overrides.add(r.name);
414 //System.out.println("overridden rule for "+p.grammar.name+": "+overrides);
415 p.grammar.overriddenRules = overrides;
/external/kernel-headers/original/asm-mips/
H A Dcpu-features.h14 #include <cpu-feature-overrides.h>
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_expectations_unittest.py111 def parse_exp(self, expectations, overrides=None, is_lint_mode=False):
118 overrides=overrides)
312 self.get_basic_expectations(), overrides="""
H A Dtest_expectations.py89 is_lint_mode, overrides=None):
100 overrides: test expectations that are allowed to override any
107 overrides=overrides)
303 test_config, is_lint_mode, overrides=None):
312 self._overrides = overrides
345 # List of tests that are in the overrides file (used for checking for
346 # duplicates inside the overrides file itself). Note that just because
352 if overrides:
732 # in the overrides an
[all...]
/external/e2fsprogs/debian/
H A Drules382 # lintian overrides
383 for i in $$(cd debian && echo *.lintian-overrides); do \
384 pkg=$${i%.lintian-overrides} ;\
385 $(INSTALL) -m 0644 -D -p debian/$$i ${debdir}/$${pkg}/usr/share/lintian/overrides/$${pkg} ;\
/external/chromium/chrome/common/extensions/
H A Dextension.cc2331 // Chrome URL overrides (optional)
2333 DictionaryValue* overrides = NULL; local
2334 if (!source.GetDictionary(keys::kChromeURLOverrides, &overrides)) {
2339 // Validate that the overrides are all strings
2340 for (DictionaryValue::key_iterator iter = overrides->begin_keys();
2341 iter != overrides->end_keys(); ++iter) {
2354 !overrides->GetStringWithoutPathExpansion(*iter, &val)) {
2363 if (overrides->size() > 1) {
/external/chromium/
H A DAndroid.mk399 third_party/libjingle/overrides/talk/xmllite/qname.cc \
429 $(LOCAL_PATH)/third_party/libjingle/overrides \
/external/compiler-rt/make/platform/
H A Dclang_darwin.mk89 # never depend on the environmental overrides. We simply set them to minimum
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jar ... publisherInfo private java.util.Properties buildProperties protected String overrides protected java.util.List contextMetadataRepositories protected java. ...
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dchromium.py276 is_lint_mode=False, overrides=overrides_str)
/external/clang/tools/scan-build/
H A Dscan-build1041 know what compiler your project normally uses. Instead, it simply overrides
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp2570 /// overrides.
2637 // A method in a protocol declaration overrides declarations from
2643 // A method in a category declaration overrides declarations from
2651 // declaration overrides declarations from the category
2658 // Otherwise it overrides declarations from the class.
2665 // A method in a class declaration overrides declarations from
2683 // A method in a class implementation overrides declarations from
2722 OverrideSearch overrides(*this, ObjCMethod);
2723 // Keep track if the method overrides any method in the class's base classes,
2730 i = overrides
[all...]

Completed in 243 milliseconds

12