/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMImplementationHasFeature.java | 12 * The "feature" parameter in the "hasFeature(feature,version)" method is the 13 * package name of the feature. Legal values are XML and HTML and CORE. (Test 14 * for feature core, lower case) 17 * This should create a DOMImplementation object whose "hasFeature(feature, 18 * version)" method is invoked with feature equal to "core". The method should
|
IsSupported.java | 12 * The "feature" parameter in the isSupported(feature,version)" method is the 13 * name of the feature and the version is the version number of the feature to 14 * test. XXX is NOT a legal value for the feature parameter. The method should 15 * return "false" since XXX is not a valid feature. 19 * "isSupported(feature,version)" method is invoked with "feature" equal to 21 * XXX is not a valid feature.
|
/external/qemu/gdb-xml/ |
arm-vfp.xml | 7 <!DOCTYPE feature SYSTEM "gdb-target.dtd"> 8 <feature name="org.gnu.gdb.arm.vfp"> 29 </feature>
|
power-spe.xml | 8 <!DOCTYPE feature SYSTEM "gdb-target.dtd"> 9 <feature name="org.gnu.gdb.power.spe"> 45 </feature>
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothTetheringDataTracker.java | 153 * begin using the named feature. The interpretation of {@code feature} 155 * @param feature the name of the feature to be used 160 * implementation+feature combination, except that the value {@code -1} 164 public int startUsingNetworkFeature(String feature, int callingPid, int callingUid) { 170 * using the named feature. The interpretation of {@code feature} 172 * @param feature the name of the feature that is no longer needed [all...] |
/frameworks/base/opengl/tests/gl2_cameraeye/ |
AndroidManifest.xml | 25 <uses-feature android:name="android.hardware.camera" /> 26 <uses-feature android:name="android.hardware.camera.autofocus" /> 27 <uses-feature android:glEsVersion="0x00020000" />
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestIncompatibleException.java | 50 public static DOMTestIncompatibleException incompatibleFeature(String feature, 53 "Implementation does not support feature \""); 54 buf.append(feature);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
manifest-expected-completion16.txt | 12 uses-feature : The "uses-feature" tag specifies a specific feature used by the application.
|
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/testdata/ |
AndroidManifest-testapp.xml | 25 <uses-feature android:glEsVersion="0x00020001" /> 26 <uses-feature android:name="com.foo.feature" />
|
/development/samples/BluetoothHDP/ |
_index.html | 1 <p>A sample application that demonstrates how to communicate with a Bluetooth Health Device Profile (HDP) device. This feature is available on Android 4.0 (API level 14) or above platforms.</p>
|
/external/clang/test/CodeGen/ |
avx-shuffle-builtins.c | 1 // RUN: %clang_cc1 %s -O3 -triple=x86_64-apple-darwin -target-feature +avx -emit-llvm -o - | FileCheck %s
|
/external/e2fsprogs/tests/f_big_sparse/ |
expect.1 | 8 Filesystem has feature flag(s) set, but is a revision 0 filesystem. Fix? yes
|
/external/kernel-headers/original/asm-x86/ |
alternative_32.h | 47 #define alternative(oldinstr, newinstr, feature) \ 53 " .byte %c0\n" /* feature bit */ \ 59 ".previous" :: "i" (feature) : "memory") 71 #define alternative_input(oldinstr, newinstr, feature, input...) \ 77 " .byte %c0\n" /* feature bit */ \ 83 ".previous" :: "i" (feature), ##input) 86 #define alternative_io(oldinstr, newinstr, feature, output, input...) \ 92 " .byte %c[feat]\n" /* feature bit */ \ 98 ".previous" : output : [feat] "i" (feature), ##input)
|
/external/llvm/include/llvm/MC/ |
SubtargetFeature.h | 31 /// SubtargetFeatureKV - Used to provide key value pairs for feature and 66 /// A comma separates each feature from the next (all lowercase.) 67 /// The first feature is always the CPU subtype (eg. pentiumm). If the CPU 70 /// that feature should be enabled or disabled contrary to the cpu 85 /// ToggleFeature - Toggle a feature and returns the newly updated feature 91 /// Get feature bits of a CPU. 102 /// Print feature string. 105 // Dump feature info.
|
/external/webkit/Source/WebCore/bindings/objc/ |
DOMImplementationFront.cpp | 52 bool DOMImplementationFront::hasFeature(const String& feature, const String& version) const 54 return reinterpret_cast<const DOMImplementation*>(this)->hasFeature(feature, version); 67 DOMImplementationFront* DOMImplementationFront::getInterface(const String& feature) 69 return reinterpret_cast<DOMImplementationFront*>(reinterpret_cast<DOMImplementation*>(this)->getInterface(feature));
|
/external/webkit/Source/WebKit/qt/examples/platformplugin/ |
README | 12 This plugin can provide popups for <select multiple> elements but to use this feature QtWebKit must be
|
/external/webkit/Tools/QtTestBrowser/ |
webpage.h | 60 void requestPermission(QWebFrame* frame, QWebPage::Feature feature); 61 void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::Feature feature);
|
webpage.cpp | 53 connect(this, SIGNAL(featurePermissionRequested(QWebFrame*, QWebPage::Feature)), this, SLOT(requestPermission(QWebFrame*, QWebPage::Feature))); 54 connect(this, SIGNAL(featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)), this, SLOT(featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature))); 176 void WebPage::requestPermission(QWebFrame* frame, QWebPage::Feature feature) 178 setFeaturePermission(frame, feature, PermissionGrantedByUser); 181 void WebPage::featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
nodeissupported03.java | 47 * The method "isSupported(feature,version)" Tests whether the DOM implementation 48 * implements a specific feature and that feature is supported by this node. 50 * Call the isSupported method specifying empty strings for feature and version on a docType
|
nodeissupported04.java | 34 * The method "isSupported(feature,version)" Tests whether the DOM implementation 35 * implements a specific feature and that feature is supported by this node. 37 * Call the isSupported method specifying empty strings for feature and version on a
|
nodeissupported05.java | 47 * The method "isSupported(feature,version)" Tests whether the DOM implementation 48 * implements a specific feature and that feature is supported by this node. 50 * Call the isSupported method specifying bad values for feature and version on a new
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathFactory.java | 208 * <p>Set a feature for this <code>XPathFactory</code> and <code>XPath</code>s created by this factory.</p> 211 * Feature names are fully qualified {@link java.net.URI}s. 214 * it creates cannot support the feature. 215 * It is possible for an <code>XPathFactory</code> to expose a feature value but be unable to change its state. 219 * All implementations are required to support the {@link javax.xml.XMLConstants#FEATURE_SECURE_PROCESSING} feature. 220 * When the feature is <code>true</code>, any reference to an external function is an error. 225 * @param name Feature name. 226 * @param value Is feature state <code>true</code> or <code>false</code>. 229 * it creates cannot support this feature. 236 * <p>Get the state of the named feature.</p [all...] |
/libcore/luni/src/main/java/javax/xml/validation/ |
ValidatorHandler.java | 73 * This spec defines the following feature that must be recognized 78 * This feature controls how a {@link ValidatorHandler} introduces 81 * When this feature is set to true, it must make 97 * Note that this feature does <em>NOT</em> affect the way 101 * <p>This feature is set to <code>false</code> by default.</p> 327 * Look up the value of a feature flag. 329 * <p>The feature name is any fully-qualified URI. It is 330 * possible for a {@link ValidatorHandler} to recognize a feature name but 332 * Some feature values may be available only in specific 338 * @param name The feature name, which is a non-null fully-qualified URI [all...] |
/external/icu4c/layout/ |
Features.cpp | 30 * Note: according to the OpenType Spec. v 1.4, the entries in the Feature 31 * List Table are sorted alphabetically by feature tag; however, there seem
|
/external/lohit-fonts/lohit-devanagari-ttf/ |
ChangeLog | 8 - removed script tag from single subst feature, patch from Bernard Massot <bmassot@free.fr> 16 - added local feature for Nepali Language
|