OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:startparent
(Results
1 - 6
of
6
) sorted by null
/frameworks/support/transition/ics/android/support/transition/
VisibilityPort.java
98
visInfo.
startParent
= (ViewGroup) startValues.values.get(PROPNAME_PARENT);
101
visInfo.
startParent
= null;
112
visInfo.
startParent
== visInfo.endParent) {
124
} else if (visInfo.
startParent
!= visInfo.endParent) {
128
} else if (visInfo.
startParent
== null) {
160
if (isTarget || ((visInfo.
startParent
!= null || visInfo.endParent != null))) {
226
ViewGroup
startParent
;
ChangeBoundsPort.java
118
ViewGroup
startParent
= (ViewGroup) startParentVals.get(PROPNAME_PARENT);
120
if (
startParent
== null || endParent == null) {
124
boolean parentsEqual = (
startParent
== endParent) ||
125
(
startParent
.getId() == endParent.getId());
FadePort.java
214
View
startParent
= (View) startView.getParent();
215
int id =
startParent
.getId();
/frameworks/base/core/java/android/transition/
Visibility.java
82
ViewGroup
startParent
;
193
visInfo.
startParent
= (ViewGroup) startValues.values.get(PROPNAME_PARENT);
196
visInfo.
startParent
= null;
207
visInfo.
startParent
== visInfo.endParent) {
219
} else if (visInfo.
startParent
!= visInfo.endParent) {
223
} else if (visInfo.
startParent
== null) {
244
&& (visInfo.
startParent
!= null || visInfo.endParent != null)) {
373
View
startParent
= (View) startView.getParent();
374
TransitionValues startParentValues = getTransitionValues(
startParent
, true);
375
TransitionValues endParentValues = getMatchedTransitionValues(
startParent
,
[
all
...]
ChangeBounds.java
260
private boolean parentMatches(View
startParent
, View endParent) {
263
TransitionValues endValues = getMatchedTransitionValues(
startParent
, true);
265
parentMatches =
startParent
== endParent;
281
ViewGroup
startParent
= (ViewGroup) startParentVals.get(PROPNAME_PARENT);
283
if (
startParent
== null || endParent == null) {
287
if (parentMatches(
startParent
, endParent)) {
ChangeTransform.java
232
ViewGroup
startParent
= (ViewGroup) startValues.values.get(PROPNAME_PARENT);
234
boolean handleParentChange = mReparent && !parentsMatch(
startParent
, endParent);
352
private boolean parentsMatch(ViewGroup
startParent
, ViewGroup endParent) {
354
if (!isValidTarget(
startParent
) || !isValidTarget(endParent)) {
355
parentsMatch =
startParent
== endParent;
357
TransitionValues endValues = getMatchedTransitionValues(
startParent
, true);
Completed in 718 milliseconds