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.java250 final Object callerValue = callerValues.get(key); in computeConfigDelta() local
252 if ((callerValue != null && systemValue != null && !callerValue.equals(systemValue)) || in computeConfigDelta()
253 (callerValue != null && systemValue == null) || in computeConfigDelta()
254 (callerValue == null && systemValue != null)) { in computeConfigDelta()
255 if (callerValue == null || callerValue instanceof String) { in computeConfigDelta()
256 delta.putString(key, (String) callerValue); in computeConfigDelta()
257 } else if (callerValue instanceof Integer) { in computeConfigDelta()
258 delta.putInt(key, (Integer) callerValue); in computeConfigDelta()
259 } else if (callerValue instanceof Boolean) { in computeConfigDelta()
260 delta.putBoolean(key, (Boolean) callerValue); in computeConfigDelta()