HomeSort by relevance Sort by last modified time
    Searched defs:features (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /ndk/tests/device/test-cpufeatures/jni/
test_cpufeatures.c 16 #include <cpu-features.h>
35 uint64_t features = android_getCpuFeatures(); local
36 printf( "Supported ARM features:\n");
37 if ((features & ANDROID_CPU_ARM_FEATURE_ARMv7) != 0) {
40 if ((features & ANDROID_CPU_ARM_FEATURE_VFPv3) != 0) {
43 if ((features & ANDROID_CPU_ARM_FEATURE_NEON) != 0) {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 32 * The easiest way to test validity of features to set is to use
42 * This Map contains explicitly set features that can be succesfully
50 private HashMap features = null; field in class:SAXFactoryImpl
67 return SAXParserImpl.newInstance(features);
87 if (features == null) {
89 features = new LinkedHashMap();
91 features.put(name, value ? Boolean.TRUE : Boolean.FALSE);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 34 = "http://xml.org/sax/features/namespaces";
37 = "http://xml.org/sax/features/validation";
39 private Map<String, Boolean> features = new HashMap<String, Boolean>(); field in class:SAXParserFactoryImpl
47 if (!name.startsWith("http://xml.org/sax/features/")) {
51 return Boolean.TRUE.equals(features.get(name));
80 return new SAXParserImpl(features);
92 if (!name.startsWith("http://xml.org/sax/features/")) {
97 features.put(name, Boolean.TRUE);
99 // This is needed to disable features that are enabled by default.
100 features.put(name, Boolean.FALSE)
    [all...]
  /external/icu4c/layout/
HanLayoutEngine.cpp 39 #define features (loclFeatureMask) macro
75 // flag from the language tag lookups, so we can use these features
78 glyphStorage.setAuxData(i, features, success);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 25 package com.android.cts.verifier.features;
80 * A list of all features added in Eclair (API=7).
95 * A list of all features added in FroYo (API=8) and Gingerbread (API=9).
136 // features
141 // get list of all features device thinks it has, & store in a HashMap
151 // roll over all known features & check whether device reports them
154 ArrayList<Feature> features = new ArrayList<Feature>(); local
157 Collections.addAll(features, ALL_ECLAIR_FEATURES);
160 Collections.addAll(features, ALL_FROYO_FEATURES);
163 Collections.addAll(features, ALL_GINGERBREAD_FEATURES)
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 67 // features are kept there
68 protected HashMap features = new HashMap(); field in class:XmlPullParserFactory
81 * Set the features to be set when XML Pull Parser is created by this factory.
82 * <p><b>NOTE:</b> factory features are not used for XML Serializer.
91 features.put(name, new Boolean(state));
97 * <p><b>NOTE:</b> factory features are not used for XML Serializer.
101 * Unknown features are <string>always</strong> returned as false
105 Boolean value = (Boolean) features.get(name);
119 features.put (XmlPullParser.FEATURE_PROCESS_NAMESPACES, new Boolean (awareness));
146 features.put (XmlPullParser.FEATURE_VALIDATION, new Boolean (validating))
    [all...]
  /external/webkit/WebCore/page/
ContextMenuController.cpp 140 WindowFeatures features; local
141 if (Page* newPage = oldPage->chrome()->createWindow(frame, FrameLoadRequest(ResourceRequest(urlToLoad, frame->loader()->outgoingReferrer())), features))
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
isSupported12.java 73 java.util.List features = new java.util.ArrayList(); local
74 features.add("Core");
75 features.add("XML");
76 features.add("HTML");
77 features.add("Views");
78 features.add("StyleSheets");
79 features.add("CSS");
80 features.add("CSS2");
81 features.add("Events");
82 features.add("UIEvents")
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 39 private Set<String> features = new HashSet<String>(); field in class:MockFilter
51 return features.contains(name);
63 features.add(name);
65 features.remove(name);
MockReader.java 51 private Set<String> features = new HashSet<String>(); field in class:MockReader
79 return features.contains(name);
113 features.add(name);
115 features.remove(name);
  /external/e2fsprogs/lib/ext2fs/
openfs.c 78 * features aren't supported.
89 __u32 features; local
203 features = fs->super->s_feature_incompat;
206 features &= !EXT2_LIB_SOFTSUPP_INCOMPAT;
208 if (features & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) {
213 features = fs->super->s_feature_ro_compat;
216 features &= !EXT2_LIB_SOFTSUPP_RO_COMPAT;
219 (features & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)) {
  /development/ndk/samples/hello-neon/jni/
helloneon.c 21 #include <cpu-features.h>
84 uint64_t features; local
120 features = android_getCpuFeatures();
121 if ((features & ANDROID_CPU_ARM_FEATURE_ARMv7) == 0) {
128 if ((features & ANDROID_CPU_ARM_FEATURE_NEON) == 0) {
  /external/iproute2/ip/
ipmaddr.c 68 char *features; member in struct:ma_info
115 ma->features = "static";
223 if (list->features)
224 fprintf(fp, " %s", list->features);
  /frameworks/base/core/java/android/ddm/
DdmHandleHello.java 146 * Handle request for list of supported features.
149 // TODO: query the VM to ensure that support for these features
151 final String[] features = Debug.getVmFeatureList(); local
156 int size = 4 + 4 * features.length;
157 for (int i = features.length-1; i >= 0; i--)
158 size += features[i].length() * 2;
162 out.putInt(features.length);
163 for (int i = features.length-1; i >= 0; i--) {
164 out.putInt(features[i].length());
165 putString(out, features[i])
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 206 List<String> features = new ArrayList<String>(); local
207 features.add("Core");
208 features.add("XML");
209 features.add("HTML");
210 features.add("Views");
211 features.add("StyleSheets");
212 features.add("CSS");
213 features.add("CSS2");
214 features.add("Events");
215 features.add("UIEvents")
    [all...]
  /ndk/sources/android/cpufeatures/
cpu-features.c 46 #include <machine/cpu-features.h>
49 #include "cpu-features.h"
191 char* features = NULL; local
224 * in the future. Unfortunately, there is no 'Features' field to
262 /* Extract the list of CPU features from 'Features' field */
264 char* cpuFeatures = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "Features");
278 * in their features list. However, ARM mandates
  /cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java 49 * Test for checking that the {@link PackageManager} is reporting the correct features.
83 * Check for features improperly prefixed with "android." that are not defined in
207 * Check that the sensor features reported by the PackageManager correspond to the sensors
233 Set<String> features = new HashSet<String>(); local
238 features.add(feature);
241 return features;
272 * @param featuresLeft to check in order to make sure the test covers all sensor features
278 assertTrue("Features left " + featuresLeft + " to check did not include "
299 * Check that the {@link TelephonyManager#getPhoneType()} matches the reported features.
333 // TODO: Add tests for the other touchscreen features
    [all...]
  /external/bluetooth/bluez/audio/
telephony-dummy.c 416 uint32_t features = AG_FEATURE_REJECT_A_CALL | local
431 telephony_ready_ind(features, dummy_indicators, response_and_hold,
  /external/bluetooth/bluez/src/
adapter.h 65 uint8_t features[8]; member in struct:hci_dev
  /external/bluetooth/hcidump/parser/
csr.c 134 unsigned char features[8]; local
137 memcpy(features, frm->ptr, 8);
140 printf("%s: features", str);
142 printf(" 0x%02x", features[i]);
  /external/grub/stage2/
smp-imps.h 149 unsigned features; member in struct:imps_processor
  /external/qemu/distrib/sdl-1.2.12/src/cpuinfo/
SDL_cpuinfo.c 148 int features = 0; local
158 " cpuid # Get family/model/stepping/features\n"
162 : "=m" (features)
174 cpuid ; Get family/model/stepping/features
175 mov features, edx local
196 return features;
201 int features = 0; local
214 : "=m" (features)
226 mov features,edx local
247 return features;
    [all...]
  /external/srec/srec/ca/
cnfd_scr.c 131 static int CA_ConfScorerGetFeatures(CA_Recog* recog, CA_NBestList *nbestlist, float* features, int *num_features,
137 float features[12]; local
150 rc = CA_ConfScorerGetFeatures(recog, nbestlist, features, &num_features, current_choice, num_choices_left);
169 features[i]) + hConfidenceScorer->one_nbest.offset[i]));
179 features[i]) + hConfidenceScorer->many_nbest.offset[i]));
193 PLogMessage("confidence %d features ", (int)final_value);
195 PLogMessage(" %s %f", conf_feature_names[i], features[i]);
201 int CA_ConfScorerGetFeatures(CA_Recog* recog, CA_NBestList *nbestlist, float* features, int *num_features,
217 ASSERT(features);
233 features[CONF_FEATURE_ABSOLUTE_SCORE] = ((float)(speech_cost0))
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/
loc_api.h 60 rpc_uint32 features; member in struct:rpc_loc_api_rpc_glue_code_info_remote_rets
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/
loc_api.h 60 rpc_uint32 features; member in struct:rpc_loc_api_rpc_glue_code_info_remote_rets

Completed in 871 milliseconds

1 2 3 4