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

/frameworks/base/core/java/android/preference/
H A DOnDependencyChangeListener.java31 void onDependencyChanged(Preference dependency, boolean disablesDependent); argument
H A DPreference.java1225 * dependency.
1244 * Called when the dependency changes.
1246 * @param dependency The Preference that this Preference depends on.
1249 public void onDependencyChanged(Preference dependency, boolean disableDependent) { argument
1277 // Unregister the old dependency, if we had one
1286 * Returns the key of the dependency on this Preference.
1288 * @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.
67 * dependency information is added for an Animator, we want to add it
83 * on the dependency relationships of the nodes.
263 * tells the <code>Builder</code> the animation that is the dependency for
273 * <code>Builder</code> the animation upon which the dependency is created,
276 * as the dependency of the other animations. For example, calling
278 * and <code>a3</code> when a1 ends; it does not set up a dependency between
281 * @param anim The animation that is the dependency used in later calls to the
463 * the dependency relationships that have been set up between the animations.
521 Dependency dependency
962 addDependency(Dependency dependency) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterGraph.java183 Filter dependency = port.getSourceFilter();
184 if (dependency != null && !processed.contains(dependency)) {
/frameworks/base/core/tests/coretests/
H A DAndroid.mk43 # Use R_file_stamp as dependency because we want the test apks in place before the R.java is generated.
/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
1662 * and view A needs view B to be processed first, the dependency graph
1698 * Finds the roots of the graph. A root is a node with no dependency and
1733 final Node dependency = keyNodes.get(rule);
1735 if (dependency == null || dependency == node) {
1739 dependency.dependents.put(node, this);
1740 // Add a dependency to the current node
1741 node.dependencies.put(rule, dependency);
1759 * Prints the dependency grap
[all...]

Completed in 818 milliseconds