Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/android/support/v7/mms/
DMmsManager.java241 final Object callerValue = callerValues.get(key); in computeConfigDelta() local
243 if ((callerValue != null && systemValue != null && !callerValue.equals(systemValue)) || in computeConfigDelta()
244 (callerValue != null && systemValue == null) || in computeConfigDelta()
245 (callerValue == null && systemValue != null)) { in computeConfigDelta()
246 if (callerValue == null || callerValue instanceof String) { in computeConfigDelta()
247 delta.putString(key, (String) callerValue); in computeConfigDelta()
248 } else if (callerValue instanceof Integer) { in computeConfigDelta()
249 delta.putInt(key, (Integer) callerValue); in computeConfigDelta()
250 } else if (callerValue instanceof Boolean) { in computeConfigDelta()
251 delta.putBoolean(key, (Boolean) callerValue); in computeConfigDelta()