OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endVals
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/transition/
ChangeText.java
163
Map<String, Object>
endVals
= endValues.values;
166
final CharSequence endText =
endVals
.get(PROPNAME_TEXT) != null ?
167
(CharSequence)
endVals
.get(PROPNAME_TEXT) : "";
174
endSelectionStart =
endVals
.get(PROPNAME_TEXT_SELECTION_START) != null ?
175
(Integer)
endVals
.get(PROPNAME_TEXT_SELECTION_START) : -1;
176
endSelectionEnd =
endVals
.get(PROPNAME_TEXT_SELECTION_END) != null ?
177
(Integer)
endVals
.get(PROPNAME_TEXT_SELECTION_END) : endSelectionStart;
208
endColor = (Integer)
endVals
.get(PROPNAME_TEXT_COLOR);
Crossfade.java
175
Map<String, Object>
endVals
= endValues.values;
177
Rect endBounds = (Rect)
endVals
.get(PROPNAME_BOUNDS);
179
Bitmap endBitmap = (Bitmap)
endVals
.get(PROPNAME_BITMAP);
181
final BitmapDrawable endDrawable = (BitmapDrawable)
endVals
.get(PROPNAME_DRAWABLE);
Completed in 275 milliseconds