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

  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
PathParser.java 121 * @param nodesFrom The source 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) {
134 for (int i = 0; i < nodesFrom.length; i++) {
135 if (nodesFrom[i].type != nodesTo[i].type
136 || nodesFrom[i].params.length != nodesTo[i].params.length) {
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 211 * @param nodesFrom The source 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) {
224 for (int i = 0; i < nodesFrom.length; i ++) {
225 if (nodesFrom[i].mType != nodesTo[i].mType
226 || nodesFrom[i].mParams.length != nodesTo[i].mParams.length) {
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 298 PathParser.PathData nodesFrom = fromString == null
303 if (nodesFrom != null || nodesTo != null) {
304 if (nodesFrom != null) {
307 if (!PathParser.canMorph(nodesFrom, nodesTo)) {
312 nodesFrom, nodesTo);
315 (Object) nodesFrom);
    [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 84 milliseconds