OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startVals
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/transition/
ChangeText.java
162
Map<String, Object>
startVals
= startValues.values;
164
final CharSequence startText =
startVals
.get(PROPNAME_TEXT) != null ?
165
(CharSequence)
startVals
.get(PROPNAME_TEXT) : "";
170
startSelectionStart =
startVals
.get(PROPNAME_TEXT_SELECTION_START) != null ?
171
(Integer)
startVals
.get(PROPNAME_TEXT_SELECTION_START) : -1;
172
startSelectionEnd =
startVals
.get(PROPNAME_TEXT_SELECTION_END) != null ?
173
(Integer)
startVals
.get(PROPNAME_TEXT_SELECTION_END) : startSelectionStart;
207
startColor = (Integer)
startVals
.get(PROPNAME_TEXT_COLOR);
Crossfade.java
174
Map<String, Object>
startVals
= startValues.values;
176
Rect startBounds = (Rect)
startVals
.get(PROPNAME_BOUNDS);
178
Bitmap startBitmap = (Bitmap)
startVals
.get(PROPNAME_BITMAP);
180
final BitmapDrawable startDrawable = (BitmapDrawable)
startVals
.get(PROPNAME_DRAWABLE);
Completed in 4272 milliseconds