Searched refs:dependency (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/preference/
H A DOnDependencyChangeListener.java31 void onDependencyChanged(Preference dependency, boolean disablesDependent); argument
H A DPreference.java1214 * dependency.
1233 * Called when the dependency changes.
1235 * @param dependency The Preference that this Preference depends on.
1238 public void onDependencyChanged(Preference dependency, boolean disableDependent) { argument
1266 // Unregister the old dependency, if we had one
1275 * Returns the key of the dependency on this Preference.
1277 * @return The key of the dependency.
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java41 * should be avoided, and the dependency flow of animations should only be in one direction.
60 * dependency information is added for an Animator, we want to add it
76 * on the dependency relationships of the nodes.
240 * tells the <code>Builder</code> the animation that is the dependency for
250 * <code>Builder</code> the animation upon which the dependency is created,
253 * as the dependency of the other animations. For example, calling
255 * and <code>a3</code> when a1 ends; it does not set up a dependency between
258 * @param anim The animation that is the dependency used in later calls to the
444 * the dependency relationships that have been set up between the animations.
489 Dependency dependency
930 addDependency(Dependency dependency) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java52 * Note that you cannot have a circular dependency between the size of the RelativeLayout and the
1256 * and view A needs view B to be processed first, the dependency graph
1292 * Finds the roots of the graph. A root is a node with no dependency and
1327 final Node dependency = keyNodes.get(rule);
1329 if (dependency == null || dependency == node) {
1333 dependency.dependents.add(node);
1334 // Add a dependency to the current node
1335 node.dependencies.put(rule, dependency);
1353 * Prints the dependency grap
[all...]

Completed in 114 milliseconds