Home | History | Annotate | Download | only in getinfo

Lines Matching defs:features

137         // features
138 String features = getFeatures();
139 addResult(FEATURES, features);
263 StringBuilder features = new StringBuilder();
272 addFeature(features, featureName, "sdk", hasFeature);
279 addFeature(features, featureInfo.name, "other", true);
284 Log.e(TAG, "Error getting features: " + exception.getMessage(), exception);
287 return features.toString();
290 private static void addFeature(StringBuilder features, String name, String type,
292 features.append(name).append(':').append(type).append(':').append(available).append(';');
296 * Use reflection to get the features defined by the SDK. If there are features that do not fit
298 * "Other Features" section.
304 List<String> features = new ArrayList<String>();
309 features.add(feature);
312 return features;