HomeSort by relevance Sort by last modified time
    Searched refs:overrides (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/emma/core/java12/com/vladium/emma/
Processor.java 74 * @param overrides [may be null (unsets the previous overrides)]
76 public synchronized final void setPropertyOverrides (final Properties overrides)
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)
87 m_propertyOverrides = overrides;
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 87 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)
test_expectations_unittest.py 72 def process_expectations(self, expectations, overrides=None):
81 overrides=None)
  /external/chromium/chrome/browser/extensions/
extension_web_ui.cc 147 // 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) {
    [all...]
extension_web_ui.h 62 // Register and unregister a dictionary of one or more overrides.
66 const Extension::URLOverrideMap& overrides);
68 const Extension::URLOverrideMap& overrides);
extension_override_apitest.cc 21 const DictionaryValue* overrides = local
26 if (!overrides->GetList("history", &values))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 179 // -- setup the required attributes overrides --
184 // -- setup the various attribute format overrides --
189 Map<String, ITextAttributeCreator> overrides = new HashMap<String, ITextAttributeCreator>(); local
191 overrides.put("*/icon", ReferenceAttributeDescriptor.CREATOR); //$NON-NLS-1$
193 overrides.put("*/theme", ThemeAttributeDescriptor.CREATOR); //$NON-NLS-1$
194 overrides.put("*/permission", ListAttributeDescriptor.CREATOR); //$NON-NLS-1$
195 overrides.put("*/targetPackage", ManifestPkgAttrDescriptor.CREATOR); //$NON-NLS-1$
197 overrides.put("uses-library/name", ListAttributeDescriptor.CREATOR); //$NON-NLS-1$
198 overrides.put("action,category,uses-permission/" + ANDROID_NAME_ATTR, //$NON-NLS-1$
201 overrides.put("application/" + ANDROID_NAME_ATTR, //$NON-NLS-1
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 367 * @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/
template_url_prepopulate_data_unittest.cc 99 ListValue* overrides = new ListValue; local
111 overrides->Append(entry);
112 prefs.SetUserPref(prefs::kSearchProviderOverrides, overrides);
  /external/emma/core/java12/com/vladium/util/
Property.java 48 * 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)
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.getProperty (n)
    [all...]
IProperties.java 103 * 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)
114 final IProperties result = overrides != null
115 ? overrides.copy ()
  /external/chromium/base/
path_service.cc 97 PathMap overrides; // Track path overrides. member in struct:__anon2725::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;
  /libcore/luni/src/main/java/libcore/net/
MimeUtils.java 404 // Get the appropriate InputStream to read overrides from, if any.
413 Properties overrides = new Properties(); local
414 overrides.load(stream);
416 for (Map.Entry<Object, Object> entry : overrides.entrySet()) {
  /bionic/libc/kernel/arch-mips/asm/
cpu-features.h 24 #include <cpu-feature-overrides.h>
  /development/ndk/platforms/android-9/arch-mips/include/asm/
cpu-features.h 24 #include <cpu-feature-overrides.h>
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
cpu-features.h 24 #include <cpu-feature-overrides.h>
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
cpu-features.h 24 #include <cpu-feature-overrides.h>
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java 402 Set<String> overrides = new HashSet<String>(); local
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/
cpu-features.h 14 #include <cpu-feature-overrides.h>
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations_unittest.py 111 def parse_exp(self, expectations, overrides=None, is_lint_mode=False):
118 overrides=overrides)
312 self.get_basic_expectations(), overrides="""
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLAppletElement06.js 78 The height attribute overrides the height.
HTMLAppletElement10.js 78 The width attribute overrides the regular width.
HTMLImageElement05.js 78 The height attribute overrides the natural "height" of the image.
HTMLImageElement12.js 78 The width attribute overrides the natural "width" of the image.
HTMLObjectElement10.js 78 The height attribute overrides the value of the actual height of the

Completed in 1255 milliseconds

1 2 3