Home | History | Annotate | Download | only in compose

Lines Matching defs:entryValue

2571                 final Object entryValue = entry.getValue();
2573 if (entryValue instanceof String) {
2574 methodExtras.putString(key, (String)entryValue);
2575 } else if (entryValue instanceof Boolean) {
2576 methodExtras.putBoolean(key, (Boolean)entryValue);
2577 } else if (entryValue instanceof Integer) {
2578 methodExtras.putInt(key, (Integer)entryValue);
2579 } else if (entryValue instanceof Long) {
2580 methodExtras.putLong(key, (Long)entryValue);
2583 entryValue.getClass().getName());