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

1 2 3 4 5 6 7 8 9

  /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/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
61 * Parse the specified extended feature
73 * Print out extended feature statistics in oprofiled.log file
  /external/harfbuzz_ng/src/
main.cc 135 printf (" No required feature\n");
138 printf (" %d feature(s) found in language system\n", num_features);
140 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
147 printf (" %d feature(s) found in table\n", num_features);
149 const Feature &feature = g.get_feature (n_feature); local
150 printf (" Feature %2d of %2d: %.4s; %d lookup(s)\n", n_feature, num_features,
152 feature.get_lookup_count());
154 int num_lookups = feature.get_lookup_count ();
155 printf (" %d lookup(s) found in feature\n", num_lookups)
    [all...]
hb-ot-shape.cc 121 const hb_feature_t *feature = &user_features[i]; local
122 map->add_feature (feature->tag, feature->value,
123 (feature->start == 0 && feature->end == (unsigned int) -1) ?
328 const hb_feature_t *feature = &c->user_features[i]; local
329 if (!(feature->start == 0 && feature->end == (unsigned int)-1)) {
331 hb_mask_t mask = map->get_mask (feature->tag, &shift);
332 c->buffer->set_masks (feature->value << shift, mask, feature->start, feature->end)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/provider/
DiscoverInfoProvider.java 39 DiscoverInfo.Feature feature = null; local
57 else if (parser.getName().equals("feature")) {
74 if (parser.getName().equals("feature")) {
75 // Create a new feature and add it to the discovered info.
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
LocationStatsAggregator.java 120 HashMap<String,String> feature = new HashMap<String,String>(); local
131 feature.put(CURRENT_LOCATION, mFakeLocation);
133 feature.put(CURRENT_LOCATION, location);
137 return (Map) feature;
TimeStatsAggregator.java 78 HashMap<String,String> feature = new HashMap<String,String>(); local
83 feature.put(featureName, features.get(featureName));
85 Log.e(TAG, "There is no Time feature called " + featureName);
87 return (Map)feature;
  /external/e2fsprogs/lib/e2p/
feature.c 2 * feature.c --- convert between features and strings
22 struct feature { struct
28 static struct feature feature_list[] = {
80 static struct feature jrnl_feature_list[] = {
93 struct feature *f;
124 struct feature *f;
167 struct feature *f;
198 struct feature *f;
253 * Edit a feature set array as requested by the user. The ok_array,
256 * then use it tell whether or not it is OK to clear a filesystem feature
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FetchValidator.java 21 * Uses an ElementParser to read a list of feature.xml files and to determine
50 "org.eclipse.platform-feature,org.eclipse.platform.win32-feature,org.eclipse.platform.linux.motif-feature";
95 "feature",
123 String feature = (String) enumeration.nextElement(); local
124 if (new File(install + "/features/" + feature).exists())
127 missingFeatures.add(feature);
UnpackUpdateJars.java 69 File feature = features[i]; local
70 if (feature.getName().endsWith(".jar")) {
71 String fileName = feature.getName();
74 unzip(feature, unPackedFeature);
75 getUnpackedPluginList(new File(unPackedFeature,"feature.xml"));
179 // Get feature attributes
  /bionic/libc/kernel/common/linux/
uhid.h 102 struct uhid_feature_req feature; member in union:uhid_event::__anon577
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 48 * Simple storage class for data about an Android feature.
50 static class Feature {
52 * The name of the feature. Should be one of the PackageManager.FEATURE*
74 public Feature(String name, boolean required) {
84 } else if (o == null || !(o instanceof Feature)) {
87 Feature feature = (Feature) o; local
88 return name.equals(feature.name)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java 71 for (FeatureInfo feature : mPackageManager.getSystemAvailableFeatures()) {
72 mAvailableFeatures.add(feature.name);
237 /** Get a list of feature constants in PackageManager matching a prefix. */
244 String feature = (String) field.get(null); local
245 features.add(feature);
275 * Check that if the PackageManager declares a sensor feature that the device has at least
276 * one sensor that matches that feature. Also check that if a PackageManager does not declare
367 private void assertAvailable(String feature) {
368 assertTrue("PackageManager#hasSystemFeature should return true for " + feature,
369 mPackageManager.hasSystemFeature(feature));
    [all...]
  /external/bison/src/
getargs.h 137 enum feature enum
139 feature_none = 0, /**< No additional feature. */
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilder.java 23 import com.google.common.collect.testing.features.Feature;
104 private Set<Feature<?>> features;
110 public B withFeatures(Feature<?>... features) {
114 public B withFeatures(Iterable<? extends Feature<?>> features) {
119 protected Set<Feature<?>> getFeatures() {
245 Set<Feature<?>> missingFeatures =
256 Set<Feature<?>> unwantedFeatures =
331 protected static String formatFeatureSet(Set<? extends Feature<?>> features) {
333 for (Feature<?> feature : features)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 56 public static Set<Feature<?>> addImpliedFeatures(Set<Feature<?>> features) {
71 public static Set<Feature<?>> impliedFeatures(Set<Feature<?>> features) {
72 Set<Feature<?>> implied = new LinkedHashSet<Feature<?>>();
73 for (Feature<?> feature : features) {
74 implied.addAll(feature.getImpliedFeatures());
220 final Feature<?>[] presentFeatures
    [all...]
  /external/kernel-headers/original/linux/
uhid.h 99 struct uhid_feature_req feature; member in union:uhid_event::__anon10012
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 46 private final List<Feature> features = new CopyOnWriteArrayList<Feature>();
67 for (Feature f : d.features) {
81 * Adds a new feature to the discovered information.
83 * @param feature the discovered feature
85 public void addFeature(String feature) {
86 addFeature(new Feature(feature));
96 for (String feature : featuresToAdd)
    [all...]
  /external/wpa_supplicant_8/src/ap/
hw_features.c 2 * hostapd / Hardware feature query and different modes
72 struct hostapd_hw_modes *feature = &modes[i]; local
75 for (j = 0; j < feature->num_channels; j++) {
83 if (feature->channels[j].flag &
87 feature->channels[j].flag |=
89 if (feature->channels[j].flag & HOSTAPD_CHAN_DISABLED)
93 feature->mode,
94 feature->channels[j].chan,
95 feature->channels[j].freq,
96 feature->channels[j].max_tx_power)
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 222 * Return a summary of the device's feature as a semi-colon-delimited list of colon separated
263 * @return list of feature names from sdk
271 String feature = (String) field.get(null); local
272 features.add(feature);
307 // Null feature name means this feature is the open gl es version feature.
313 return "No feature for Open GL ES version.";
  /external/qemu/hw/
bt-hid.c 98 } dataother, datain, dataout, feature, intrdataout; member in struct:bt_hid_device_s
120 s->feature.len = 0;
283 s->feature.buffer, MIN(rlen, s->feature.len));
300 s->feature.len = len - 1;
301 memcpy(s->feature.buffer, data + 1, s->feature.len);
364 memcpy(s->feature.buffer + s->feature.len, data + 1, len - 1);
365 s->feature.len += len - 1
    [all...]
  /external/expat/amiga/include/libraries/
expat.h 536 enum XML_FeatureEnum feature; member in struct:__anon8037
  /external/expat/lib/
expat.h 1025 enum XML_FeatureEnum feature; member in struct:__anon8043
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
VPPTest.c 497 int feature; /*Feature selected, only scaling, zoom, contrast, frosted glass effect, cropping, mirror and rotation*/ local
528 printf("usage: %S <input.yuv><file_desc><Inp. Width><Inp. Height><Inp. color><0:no overlay/1:overlay><Out. Width><Out Height><yuv color><rgb color><0 :Internal 1 :external allocation><Feature [0-8]>\n",
532 printf("usage: %s <input.yuv><file_desc><Inp. Width><Inp. Height><Inp. color><0:no overlay/1:overlay><Out. Width><Out Height><yuv color><rgb color><0 :Internal 1 :external allocation><Feature [0-8]>\n",
551 feature= (_wtoi(argv[12])& (0x00FF); /*Use only lower byte*/
567 feature=atoi(argv[12]) & (0x00FF); /*Use only lower byte*/
599 /* Assign Parameters according to feature selected*/
600 switch (feature) /*Assign feature selected feature parameters*
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 9