HomeSort by relevance Sort by last modified time
    Searched refs:nodesTo (Results 1 - 5 of 5) sorted by null

  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
PathParser.java 122 * @param nodesTo The target path represented in an array of PathDataNode
123 * @return whether the <code>nodesFrom</code> can morph into <code>nodesTo</code>
125 public static boolean canMorph(PathDataNode[] nodesFrom, PathDataNode[] nodesTo) {
126 if (nodesFrom == null || nodesTo == null) {
130 if (nodesFrom.length != nodesTo.length) {
135 if (nodesFrom[i].type != nodesTo[i].type
136 || nodesFrom[i].params.length != nodesTo[i].params.length) {
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 300 PathParser.PathData nodesTo = toString == null
303 if (nodesFrom != null || nodesTo != null) {
306 if (nodesTo != null) {
307 if (!PathParser.canMorph(nodesFrom, nodesTo)) {
312 nodesFrom, nodesTo);
317 } else if (nodesTo != null) {
320 (Object) nodesTo);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 212 * @param nodesTo The target path represented in an array of PathDataNode
213 * @return whether the <code>nodesFrom</code> can morph into <code>nodesTo</code>
215 public static boolean canMorph(PathDataNode[] nodesFrom, PathDataNode[] nodesTo) {
216 if (nodesFrom == null || nodesTo == null) {
220 if (nodesFrom.length != nodesTo.length) {
225 if (nodesFrom[i].mType != nodesTo[i].mType
226 || nodesFrom[i].mParams.length != nodesTo[i].mParams.length) {
    [all...]
  /prebuilts/sdk/current/support/graphics/drawable/libs/
android-support-vectordrawable.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 40 milliseconds