/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
selfxhtml.js | 361 HTMLBuilder.prototype.hasFeature = function(feature, version) { 362 return document.implementation.hasFeature(feature, version); 531 function checkFeature(feature, version) 533 if (!builder.hasFeature(feature, version)) 538 builder.initializationError = "builder does not support feature " + feature + " version " + version;
|
/external/webkit/LayoutTests/dom/xhtml/level2/events/ |
selfxhtml.js | 361 HTMLBuilder.prototype.hasFeature = function(feature, version) { 362 return document.implementation.hasFeature(feature, version); 531 function checkFeature(feature, version) 533 if (!builder.hasFeature(feature, version)) 538 builder.initializationError = "builder does not support feature " + feature + " version " + version;
|
createEvent03.js | 81 Only applicable if implementation supports the "UIEvents" feature.
|
createEvent04.js | 81 Only applicable if implementation supports the "UIEvents" feature.
|
createEvent05.js | 81 Only applicable if implementation supports the "HTMLEvents" feature.
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
selfxhtml.js | 361 HTMLBuilder.prototype.hasFeature = function(feature, version) { 362 return document.implementation.hasFeature(feature, version); 531 function checkFeature(feature, version) 533 if (!builder.hasFeature(feature, version)) 538 builder.initializationError = "builder does not support feature " + feature + " version " + version;
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
selfxhtml.js | 361 HTMLBuilder.prototype.hasFeature = function(feature, version) { 362 return document.implementation.hasFeature(feature, version); 531 function checkFeature(feature, version) 533 if (!builder.hasFeature(feature, version)) 538 builder.initializationError = "builder does not support feature " + feature + " version " + version;
|
domimplementationgetfeature01.js | 78 Invoke getFeature method on this DOMImplementation with the value of the feature parameter
|
domimplementationgetfeature02.js | 78 Invoke getFeature method on this DOMImplementation with the value of the feature parameter
|
domimplementationgetfeature03.js | 78 Invoke getFeature method on this DOMImplementation with the value of the feature parameter
|
domimplementationgetfeature05.js | 78 Invoke getFeature method on this DOMImplementation with the value of the feature parameter
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/ |
AndroidManifestParser.java | 190 UsesFeature feature = new UsesFeature(); local 197 feature.mName = value; 207 feature.mRequired = b; 218 feature.mGlEsVersion = version; 225 mManifestData.mFeatures.add(feature);
|
ManifestData.java | 39 * Value returned by {@link #getGlEsVersion()} when there are no <uses-feature> node with the 67 /** List of all feature in use declared by the manifest */ 483 * Class representing a <code>uses-feature</code> node in the manifest. 686 * Returns the glEsVersion from a <uses-feature> or {@link #GL_ES_VERSION_NOT_SET} if not set. 689 for (UsesFeature feature : mFeatures) { 690 if (feature.mGlEsVersion > 0) { 691 return feature.mGlEsVersion;
|
/external/chromium/chrome/browser/ui/ |
browser_list.cc | 539 Browser::WindowFeature feature) { 542 p, Browser::TYPE_ANY, feature, kMatchCanSupportWindowFeature); 546 Browser::TYPE_ANY, feature,
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTM.java | 173 * Set an implementation dependent feature. 177 * @param featureId A feature URL. 178 * @param state true if this feature should be on, false otherwise. 557 * Tests whether DTM DOM implementation implements a specific feature and 558 * that feature is supported by this node. 559 * @param feature The name of the feature to test. 560 * @param version This is the version number of the feature to test. 562 * specified, supporting any version of the feature will cause the 564 * @return Returns <code>true</code> if the specified feature i [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
browser_window_controller.h | 289 // Determines whether this controller's window supports a given feature (i.e., 290 // whether a given feature is or can be shown in the window). 291 // TODO(viettrungluu): |feature| is really should be |Browser::Feature|, but I 293 - (BOOL)supportsWindowFeature:(int)feature;
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitglobals.cpp | 199 static GtkWidget* currentToplevelCallback(WebKitSoupAuthDialog* feature, SoupMessage* message, gpointer userData)
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestDocumentBuilderFactory.java | 62 public abstract boolean hasFeature(String feature, String version);
|
DOMTestFramework.java | 29 String feature,
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
NodeImpl.java | 148 public boolean isSupported(String feature, String version) { 149 return DOMImplementationImpl.getInstance().hasFeature(feature, version); 694 public final Object getFeature(String feature, String version) { 695 return isSupported(feature, version) ? this : null;
|
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
DeviceInfoInstrument.java | 211 * Return a summary of the device's feature as a semi-colon-delimited list of colon separated 252 * @return list of feature names from sdk 260 String feature = (String) field.get(null); local 261 features.add(feature); 296 // Null feature name means this feature is the open gl es version feature. 302 return "No feature for Open GL ES version.";
|
/external/v8/src/ |
platform.h | 295 static bool ArmCpuHasFeature(CpuFeature feature); 298 static bool MipsCpuHasFeature(CpuFeature feature);
|
/external/webkit/LayoutTests/dom/html/level2/events/ |
createEvent03.js | 81 Only applicable if implementation supports the "UIEvents" feature.
|
createEvent04.js | 81 Only applicable if implementation supports the "UIEvents" feature.
|
createEvent05.js | 81 Only applicable if implementation supports the "HTMLEvents" feature.
|