Home | History | Annotate | Download | only in getinfo

Lines Matching refs:features

48     private static final String FEATURES = "features";
149 // features
150 String features = getFeatures();
151 addResult(FEATURES, features);
243 StringBuilder features = new StringBuilder();
252 addFeature(features, featureName, "sdk", hasFeature);
259 addFeature(features, featureInfo.name, "other", true);
264 Log.e(TAG, "Error getting features: " + exception.getMessage(), exception);
267 return features.toString();
270 private static void addFeature(StringBuilder features, String name, String type,
272 features.append(name).append(':').append(type).append(':').append(available).append(';');
276 * Use reflection to get the features defined by the SDK. If there are features that do not fit
278 * "Other Features" section.
284 List<String> features = new ArrayList<String>();
289 features.add(feature);
292 return features;