/bionic/libc/kernel/arch-x86/asm/ |
alternative_32.h | 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") 30 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input) 31 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)
|
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/ |
alternative_32.h | 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") 30 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input) 31 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)
|
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/ |
alternative_32.h | 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") 30 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input) 31 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)
|
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/ |
DOMImplementationImpl.java | 52 public boolean hasFeature(String feature, String version) { 54 if (feature.startsWith("+")) { 55 feature = feature.substring(1); 62 if (feature.equalsIgnoreCase("Core")) { 64 } else if (feature.equalsIgnoreCase("XML")) { 66 } else if (feature.equalsIgnoreCase("XMLVersion")) { 87 public Object getFeature(String feature, String version) { 88 return hasFeature(feature, version) ? this : null;
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
JTidyDOMImplementation.java | 29 * Test if the DOM implementation implements a specific feature. 30 * @param feature The name of the feature to test (case-insensitive). The 36 * @param version This is the version number of the feature to test. In 38 * not specified, supporting any version of the feature causes the 40 * @return <code>true</code> if the feature is implemented in the 43 public boolean hasFeature(String feature, 45 if (feature.equals("Core")) { 69 * not support the <code>"XML"</code> feature, if they choose not to 73 * the feature to see if it requires this method [all...] |
DOMTestIncompatibleException.java | 50 public static DOMTestIncompatibleException incompatibleFeature(String feature, 53 "Implementation does not support feature \""); 54 buf.append(feature);
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
DOMImplementation.java | 23 * Test if the DOM implementation implements a specific feature and 25 * @param feature The name of the feature to test. 26 * @param version This is the version number of the feature to test. 27 * @return <code>true</code> if the feature is implemented in the 30 public boolean hasFeature(String feature, 49 * support the feature "XML" and the language exposed through the 95 * <code>"XML"</code> feature but a non-null namespace URI was 101 * support the feature "XML" and the language exposed through the 112 * specialized APIs of the specified feature and version, as specified [all...] |
/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)
|
/dalvik/tests/052-verifier-fun/src/ |
Main.java | 96 BlahFeature feature = null; // interface ref local 100 feature = new BlahOne(); 103 feature = new BlahTwo(); 107 feature.doStuff();
|
/external/webkit/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));
|
DOMImplementationFront.h | 48 bool hasFeature(const String& feature, const String& version) const; 51 DOMImplementationFront* getInterface(const String& feature);
|
/external/webkit/WebKit/chromium/public/ |
WebDevToolsAgentClient.h | 51 // Notifies host upon runtime feature being enabled/disabled. 52 virtual void runtimeFeatureStateChanged(const WebString& feature, bool enabled) { }
|
WebDevToolsAgent.h | 62 virtual void setRuntimeFeatureEnabled(const WebString& feature, bool enabled) = 0;
|
/frameworks/base/core/java/android/net/ |
IConnectivityManager.aidl | 43 int startUsingNetworkFeature(int networkType, in String feature, 46 int stopUsingNetworkFeature(int networkType, in String feature);
|
ConnectivityManager.java | 265 * begin using the named feature. The interpretation of {@code feature} 268 * @param feature the name of the feature to be used 271 * implementation+feature combination, except that the value {@code -1} 274 public int startUsingNetworkFeature(int networkType, String feature) { 276 return mService.startUsingNetworkFeature(networkType, feature, 285 * using the named feature. The interpretation of {@code feature} 288 * @param feature the name of the feature that is no longer neede [all...] |
/external/icu4c/layout/ |
LookupProcessor.cpp | 184 // one feature. 185 for (le_int32 feature = 0; feature < featureCount; feature += 1) { 186 le_uint16 featureIndex = SWAPW(langSysTable->featureIndexArray[feature]); 207 // If this is the required feature, add its lookups 213 // If we added lookups from the required feature, sort them 218 for (le_uint16 feature = 0; feature < featureCount; feature += 1) [all...] |
/external/webkit/WebCore/dom/ |
DOMImplementation.cpp | 74 static bool isSVG10Feature(const String &feature) 96 return svgFeatures.contains(feature); 99 static bool isSVG11Feature(const String &feature) 104 // Sadly, we cannot claim to implement any of the SVG 1.1 generic feature sets 169 return svgFeatures.contains(feature); 173 bool DOMImplementation::hasFeature(const String& feature, const String& version) 175 String lower = feature.lower(); 194 if ((version.isEmpty() || version == "1.1") && feature.startsWith("http://www.w3.org/tr/svg11/feature#", false)) { 195 if (isSVG11Feature(feature.right(feature.length() - 35)) [all...] |
DOMImplementation.h | 46 static bool hasFeature(const String& feature, const String& version); 50 DOMImplementation* getInterface(const String& feature);
|
DOMImplementation.idl | 27 [OldStyleObjC] boolean hasFeature(in DOMString feature,
|
/external/oprofile/daemon/ |
opd_extended.h | 3 * OProfile Extended Feature 23 * OProfile Extended Feature Table Entry 26 // Feature name 27 const char* feature; member in struct:opd_ext_feature 28 // Feature handlers 59 * Parse the specified extended feature 64 * Print out extended feature statistics in oprofiled.log file
|
opd_extended.c | 3 * OProfile Extended Feature 19 * if extended feature is enabled */ 25 * OProfile Extended Feature Table 43 for (i = 0 ; ext_feature_table[i].feature != NULL ; i++ ) { 44 if(!strncmp(name, ext_feature_table[i].feature, 45 strlen(ext_feature_table[i].feature))) { 79 * <feature name>:<param1>:<param2>:<param3>:..... 95 /* Parse feature name*/ 107 fprintf(stderr,"opd_ext_initialize: Invalid extended feature option: %s\n", value); 116 printf("\n-- OProfile Extended-Feature Statistics --\n") [all...] |
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
DOMDocumentBuilderFactory.java | 51 public boolean hasFeature(String feature, String version) { 52 return builder.getDOMImplementation().hasFeature(feature, version);
|
/external/webkit/WebKitTools/Scripts/webkitperl/ |
features.pm | 78 die "Unknown feature: $featureName" unless $symbolName; 84 my ($feature, $required) = @_; 87 my $hasFeature = hasFeature($feature, $path);
|
/external/e2fsprogs/lib/e2p/ |
feature.c | 2 * feature.c --- convert between features and strings 19 struct feature { struct 25 static struct feature feature_list[] = { 75 struct feature *f; 106 struct feature *f; 162 * Edit a feature set array as requested by the user. The ok_array, 165 * then use it tell whether or not it is OK to clear a filesystem feature.
|
/external/webkit/WebKit/gtk/webkit/ |
webkitsoupauthdialog.h | 44 GtkWidget* (*current_toplevel) (WebKitSoupAuthDialog* feature, SoupMessage* message);
|