Home
last modified time | relevance | path

Searched refs:LINE (Results 1 – 3 of 3) sorted by relevance

/development/tools/findunused/
Dremoveunusedresources26 read LINE NUM
27 while [ "$LINE" != "" ]
29 if [ "Z$LINE" = "Z-----------------------------------------------------------" ]
33 elif [ "$LINE" = "$app" ]
39 find res | grep -w $LINE | {
48 echo WARNING unexpected result for $LINE
53 grep -Rwl $LINE res | {
60 echo REMOVING STRING $LINE from $RESLINE
61 … xmlstarlet ed -P -S -d "/resources/string[@name='$LINE']" $RESLINE > tf$$
65 echo REMOVING $LINE from $RESLINE
[all …]
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
DPathPoint.java31 public static final int LINE = 1; field in PathPoint
83 return new PathPoint(LINE, x, y); in lineTo()
DPathEvaluator.java40 } else if (endValue.mOperation == PathPoint.LINE) { in evaluate()