Searched refs:property (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Settings/src/com/android/settings/ |
D | LanguageSettings.java | 89 private boolean isSystemIme(InputMethodInfo property) { in isSystemIme() argument 90 return (property.getServiceInfo().applicationInfo.flags in isSystemIme() 108 InputMethodInfo property = mInputMethodProperties.get(i); in onCreateIMM() local 109 String prefKey = property.getId(); in onCreateIMM() 111 CharSequence label = property.loadLabel(getPackageManager()); in onCreateIMM() 112 boolean systemIME = isSystemIme(property); in onCreateIMM() 124 if (null != property.getSettingsActivity()) { in onCreateIMM() 126 String settingsActivity = property.getSettingsActivity(); in onCreateIMM() 128 settingsActivity = property.getPackageName() + "/" + settingsActivity; in onCreateIMM() 191 final InputMethodInfo property = mInputMethodProperties.get(i); in onPause() local [all …]
|
D | DeviceInfoSettings.java | 137 String preference, String property ) { in removePreferenceIfPropertyMissing() argument 138 if (SystemProperties.get(property).equals("")) in removePreferenceIfPropertyMissing() 144 Log.d(TAG, "Property '" + property + "' missing and no '" in removePreferenceIfPropertyMissing() 159 private void setValueSummary(String preference, String property) { in setValueSummary() argument 162 SystemProperties.get(property, in setValueSummary()
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
D | ICalendarTest.java | 97 ICalendar.Property property = component.getFirstProperty("DTSTART"); in testParseQuotedParam() local 98 assertEquals(2, property.getParameterNames().size()); in testParseQuotedParam() 99 assertEquals("GMT+03:00", property.getFirstParameter("TZID").value); in testParseQuotedParam() 100 final List<ICalendar.Parameter> testParameters = property.getParameters("TEST"); in testParseQuotedParam()
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
D | Status.java | 281 private void setSummary(String preference, String property, String alt) { in setSummary() argument 284 SystemProperties.get(property, alt)); in setSummary()
|
/packages/apps/Tag/src/com/android/vcard/ |
D | VCardEntry.java | 819 public void addProperty(final Property property) { in addProperty() argument 820 final String propName = property.mPropertyName; in addProperty() 821 final Map<String, Collection<String>> paramMap = property.mParameterMap; in addProperty() 822 final List<String> propValueList = property.mPropertyValueList; in addProperty() 823 byte[] propBytes = property.mPropertyBytes; in addProperty()
|