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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
overrides.css 32 .overrides-view .tabbed-pane {
36 .overrides-view .tabbed-pane-header {
42 .overrides-view .tabbed-pane-content {
49 .overrides-view .tabbed-pane-header-contents {
53 .overrides-view .tabbed-pane-header-tabs {
60 .overrides-view .tabbed-pane-header-tab {
72 .overrides-view .tabbed-pane-header-tab:not(.selected) {
76 .overrides-view .tabbed-pane-header-tab.selected {
82 .overrides-view fieldset {
87 .overrides-view fieldset p
    [all...]
  /external/jsoncpp/
Android.mk 8 chromium-overrides/src/lib_json/json_value.cpp \
12 $(LOCAL_PATH)/chromium-overrides/include \
17 $(LOCAL_PATH)/chromium-overrides/include \
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
settings_overrides_handler.cc 42 scoped_ptr<GURL> ParseHomepage(const ChromeSettingsOverrides& overrides,
44 if (!overrides.homepage)
46 scoped_ptr<GURL> manifest_url = CreateManifestURL(*overrides.homepage);
49 manifest_errors::kInvalidHomepageOverrideURL, *overrides.homepage);
54 std::vector<GURL> ParseStartupPage(const ChromeSettingsOverrides& overrides,
57 if (!overrides.startup_pages)
61 overrides.startup_pages->begin(); i != overrides.startup_pages->end();
76 ChromeSettingsOverrides* overrides,
78 if (!overrides->search_provider
    [all...]
  /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/chromium_org/chrome/browser/search_engines/
template_url_prepopulate_data_unittest.cc 123 base::ListValue* overrides = new base::ListValue; local
132 overrides->Append(entry->DeepCopy());
133 prefs_.SetUserPref(prefs::kSearchProviderOverrides, overrides);
162 overrides = new base::ListValue;
163 overrides->Append(entry->DeepCopy());
164 prefs_.SetUserPref(prefs::kSearchProviderOverrides, overrides);
186 overrides = new base::ListValue;
187 overrides->Append(entry->DeepCopy());
192 overrides->Append(entry->DeepCopy());
197 overrides->Append(entry->DeepCopy())
209 base::ListValue* overrides = new base::ListValue; local
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_host.h 45 void PatchNPNetscapeFuncs(NPNetscapeFuncs* overrides);
plugin_host.cc 170 void PluginHost::PatchNPNetscapeFuncs(NPNetscapeFuncs* overrides) {
175 if (overrides->invoke)
176 host_funcs_.invoke = overrides->invoke;
178 if (overrides->invokeDefault)
179 host_funcs_.invokeDefault = overrides->invokeDefault;
181 if (overrides->evaluate)
182 host_funcs_.evaluate = overrides->evaluate;
184 if (overrides->getproperty)
185 host_funcs_.getproperty = overrides->getproperty;
187 if (overrides->setproperty
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 178 // -- setup the required attributes overrides --
183 // -- setup the various attribute format overrides --
188 Map<String, ITextAttributeCreator> overrides = new HashMap<String, ITextAttributeCreator>(); local
190 overrides.put("*/icon", ReferenceAttributeDescriptor.CREATOR); //$NON-NLS-1$
192 overrides.put("*/theme", ThemeAttributeDescriptor.CREATOR); //$NON-NLS-1$
193 overrides.put("*/permission", ListAttributeDescriptor.CREATOR); //$NON-NLS-1$
194 overrides.put("*/targetPackage", ManifestPkgAttrDescriptor.CREATOR); //$NON-NLS-1$
196 overrides.put("uses-library/name", ListAttributeDescriptor.CREATOR); //$NON-NLS-1$
197 overrides.put("action,category,uses-permission/" + ANDROID_NAME_ATTR, //$NON-NLS-1$
200 overrideClassName(overrides, "application", //$NON-NLS-1
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_web_ui.h 51 // Register and unregister a dictionary of one or more overrides.
55 const extensions::URLOverrides::URLOverrideMap& overrides);
57 const extensions::URLOverrides::URLOverrideMap& overrides);
extension_web_ui.cc 187 // chrome:// URL overrides
205 const base::DictionaryValue* overrides = local
210 if (!overrides || !overrides->GetList(url_host, &url_list))
257 // If no other non-component overrides were found, use the first known
271 const base::DictionaryValue* overrides = local
273 if (!overrides)
280 for (base::DictionaryValue::Iterator it(*overrides); !it.IsAtEnd();
305 Profile* profile, const URLOverrides::URLOverrideMap& overrides) {
306 if (overrides.empty()
    [all...]
extension_override_apitest.cc 26 const base::DictionaryValue* overrides = local
31 if (!overrides->GetList("history", &values))
  /external/chromium_org/tools/gn/
args.h 29 // Specifies overrides of the build arguments. These are normally specified
32 void AddArgOverrides(const Scope::KeyValueMap& overrides);
38 // Gets all overrides set on the build.
42 // flags, then any overrides stored in this object, then applies any
43 // toolchain overrides specified in the argument.
51 // they will not override the system defaults or the current overrides.
60 // Checks to see if any of the overrides ever used were never declared as
64 // Like VerifyAllOverridesUsed but takes the lists of overrides specified and
67 const Scope::KeyValueMap& overrides,
92 // Maintains a list of all overrides we've ever seen. This is the mai
    [all...]
args.cc 35 " toolchain overrides are applied. These are specified in the\n"
89 void Args::AddArgOverrides(const Scope::KeyValueMap& overrides) {
92 for (Scope::KeyValueMap::const_iterator i = overrides.begin();
93 i != overrides.end(); ++i) {
177 const Scope::KeyValueMap& overrides,
180 for (Scope::KeyValueMap::const_iterator i = overrides.begin();
181 i != overrides.end(); ++i) {
183 // Get a list of all possible overrides for help with error finding.
  /external/chromium_org/tools/gyp/test/assembly/src/
override_asm.asm 5 ; This is a placeholder. It should not be referenced if overrides work
  /external/chromium_org/base/
path_service.cc 116 PathMap overrides; // Track path overrides. member in struct:__anon6990::PathData
162 // Tries to find |key| in the overrides map. |path_data| should be locked by the
166 PathMap::const_iterator it = path_data->overrides.find(key);
167 if (it != path_data->overrides.end()) {
277 path_data->overrides[key] = file_path;
289 if (path_data->overrides.find(key) == path_data->overrides.end())
296 path_data->overrides.erase(key);
  /external/wpa_supplicant_8/src/utils/
radiotap_iter.h 46 * @overrides: override standard radiotap fields
47 * @n_overrides: number of overrides
74 const struct radiotap_override *overrides; member in struct:ieee80211_radiotap_iterator
radiotap.c 120 iterator->overrides = NULL;
190 if (!iterator->overrides)
194 if (iterator->_arg_index == iterator->overrides[i].field) {
195 *align = iterator->overrides[i].align;
196 *size = iterator->overrides[i].size;
  /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/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...]
  /external/chromium_org/tools/gyp/pylib/gyp/
mac_tool.py 281 substitutions, overrides = self._InstallProvisioningProfile(
284 entitlements, substitutions, overrides)
324 to overrides when generating the entitlements file.
457 def _InstallEntitlements(self, entitlements, substitutions, overrides):
468 overrides: dictionary, values to add to the entitlements
484 if overrides:
485 for key in overrides:
487 data[key] = overrides[key]
  /external/chromium_org/jingle/
jingle_glue.target.darwin-arm64.mk 121 $(LOCAL_PATH)/third_party/libjingle/overrides \
123 $(LOCAL_PATH)/third_party/webrtc/overrides \
229 $(LOCAL_PATH)/third_party/libjingle/overrides \
231 $(LOCAL_PATH)/third_party/webrtc/overrides \
jingle_glue.target.linux-arm64.mk 121 $(LOCAL_PATH)/third_party/libjingle/overrides \
123 $(LOCAL_PATH)/third_party/webrtc/overrides \
229 $(LOCAL_PATH)/third_party/libjingle/overrides \
231 $(LOCAL_PATH)/third_party/webrtc/overrides \
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
input_helpers.cc 26 "flag's argument. There can be several comma-separated overrides specified:"
27 " Overrides are specified as \"title=option text\" for choices and "
122 OverrideRegistry::OverrideRegistry(const std::string& overrides) {
123 std::vector<std::string> all_overrides = Split(overrides, ",");
input_helpers.h 70 // Keeps track of overrides for any input points. Overrides are passed in the
74 OverrideRegistry(const std::string& overrides);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations_unittest.py 81 def parse_exp(self, expectations, overrides=None, is_lint_mode=False):
84 if overrides:
85 expectations_dict['overrides'] = overrides
96 def assert_bad_expectations(self, expectations, overrides=None):
97 self.assertRaises(ParseError, self.parse_exp, expectations, is_lint_mode=True, overrides=overrides)
316 def check(self, expectations, overrides, skips, lint=False, expected_results=[WONTFIX, SKIP, FAIL]):
321 if overrides:
322 expectations_dict['overrides'] = override
    [all...]

Completed in 6095 milliseconds

1 2 3 4 5 6 7 8 91011>>