Searched refs:property (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DDeviceInfoSettings.java97 // Remove selinux information if property is not present
215 String preference, String property ) {
216 if (SystemProperties.get(property).equals("")) {
221 Log.d(LOG_TAG, "Property '" + property + "' missing and no '"
245 private void setValueSummary(String preference, String property) { argument
248 SystemProperties.get(property,
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DICalendarTest.java40 // properties should be listed in insertion order, by property name.
98 ICalendar.Property property = component.getFirstProperty("DTSTART");
99 assertEquals(2, property.getParameterNames().size());
100 assertEquals("GMT+03:00", property.getFirstParameter("TZID").value);
101 final List<ICalendar.Parameter> testParameters = property.getParameters("TEST");
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DInputMethodAndSubtypeUtil.java371 public static boolean isSystemIme(InputMethodInfo property) { argument
372 return (property.getServiceInfo().applicationInfo.flags
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStatus.java360 * @param property The system property to fetch
361 * @param alt The default value, if the property doesn't exist
363 private void setSummary(String preference, String property, String alt) { argument
366 SystemProperties.get(property, alt));

Completed in 181 milliseconds