Searched refs:dependencies (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java36 * <p>It is possible to set up a <code>AnimatorSet</code> with circular dependencies between
40 * circular dependencies do not make logical sense anyway), circular dependencies
299 * @return Builder The object that constructs the AnimatorSet based on the dependencies
561 // dependencies on all of the nodes. For example, we don't want to start an animation
569 if (node.dependencies == null || node.dependencies.size() == 0) {
572 int numDependencies = node.dependencies.size();
574 Dependency dependency = node.dependencies.get(j);
578 node.tmpDependencies = (ArrayList<Dependency>) node.dependencies
1011 public ArrayList<Dependency> dependencies = null; field in class:AnimatorSet.Node
[all...]
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1667 * Builds a sorted list of views. The sorting order depends on the dependencies
1691 final SparseArray<Node> dependencies = dependent.dependencies;
1693 dependencies.remove(key);
1694 if (dependencies.size() == 0) {
1701 throw new IllegalStateException("Circular dependencies cannot exist"
1711 * dependencies
1721 // all dependents and dependencies before running the algorithm
1725 node.dependencies.clear();
1728 // Builds up the dependents and dependencies fo
1789 final SparseArray<Node> dependencies = new SparseArray<Node>(); field in class:RelativeLayout.DependencyGraph.Node
[all...]
/frameworks/support/v7/cardview/
H A DAndroid.mk29 # A helper sub-library to resolve cyclic dependencies between CardView and platform dependent

Completed in 93 milliseconds