Home
last modified time | relevance | path

Searched refs:resultValue (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/widget/
DCursorFilter.java43 public CharSequence convertResultToString(Object resultValue) { in convertResultToString() argument
44 return mClient.convertToString((Cursor) resultValue); in convertResultToString()
DFilter.java174 public CharSequence convertResultToString(Object resultValue) { in convertResultToString() argument
175 return resultValue == null ? "" : resultValue.toString(); in convertResultToString()
/frameworks/ex/common/java/com/android/common/contacts/
DBaseEmailAddressAdapter.java202 public CharSequence convertResultToString(Object resultValue) { in convertResultToString() argument
203 return makeDisplayString((Cursor) resultValue); in convertResultToString()
/frameworks/opt/chips/src/com/android/ex/chips/
DBaseRecipientAdapter.java339 public CharSequence convertResultToString(Object resultValue) { in convertResultToString() argument
340 final RecipientEntry entry = (RecipientEntry)resultValue; in convertResultToString()
/frameworks/base/telephony/java/android/telephony/
DSubscriptionManager.java2303 String resultValue = null; in getSubscriptionProperty() local
2307 resultValue = iSub.getSubscriptionProperty(subId, propKey, in getSubscriptionProperty()
2313 return resultValue; in getSubscriptionProperty()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java2817 String resultValue = null; in getSubscriptionProperty() local
2848 resultValue = cursor.getString(0); in getSubscriptionProperty()
2862 if (DBG) logd("getSubscriptionProperty Query value = " + resultValue); in getSubscriptionProperty()
2863 return resultValue; in getSubscriptionProperty()