Home
last modified time | relevance | path

Searched refs:last (Results 1 – 11 of 11) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DGLFace.java51 int last = mVertexList.size() - 1; in setColor() local
52 if (last < 2) { in setColor()
55 GLVertex vertex = mVertexList.get(last); in setColor()
61 mVertexList.remove(last + 1); in setColor()
62 vertex = mVertexList.get(last); in setColor()
77 int last = mVertexList.size() - 1; in putIndices() local
80 GLVertex vn = mVertexList.get(last); in putIndices()
83 for (int i = 1; i < last; i++) { in putIndices()
/development/tools/idegen/src/
DStopwatch.java22 long last = System.currentTimeMillis(); field in Stopwatch
26 Log.info(label + ": " + (now - last) + "ms"); in reset()
27 last = now; in reset()
/development/apps/Development/src/com/android/development/
DMediaScannerActivity.java236 String last = getRandomWord(3); in getRandomName()
239 if (!last.startsWith("Di")) { in getRandomName()
240 last = "di " + last; in getRandomName()
244 last = "van " + last; in getRandomName()
247 last = "de " + last; in getRandomName()
250 return first + " " + last; in getRandomName()
/development/tools/axl/
Dchewperf.py33 last = 0
39 out.append("%s %d" % (line, (tm - last)))
40 last = tm
/development/vndk/tools/header-checker/src/dumper/
Dfixed_argv.h73 const char *last = GetLastArg(expected, others...); in IsLastArgEqualFirstOption() local
76 return last == expected; in IsLastArgEqualFirstOption()
/development/tools/checkcolor/
Dbuild.gradle19 …// the build server does not pass the build number so we infer it from the last folder of the dist…
/development/tools/idegen/
DREADME76 root doesn't match any of the expressions in the file, it will come last,
81 of the "path-precedence" file. To make source roots under ./out come last,
/development/tools/repo_diff/
DREADME.md70 and diffing, the last stage is to iterate
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DPduParser.java1700 int last = len - (thisStartPos - thisEndPos); in parsePartHeaders() local
1701 byte[] temp = new byte[last]; in parsePartHeaders()
1702 pduDataStream.read(temp, 0, last); in parsePartHeaders()
/development/cmds/monkey/
DREADME.NETWORK.txt55 will add the KEYCODE part). Do note that this last part doesn't work
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
DInteractiveLineGraphView.java486 double last = Math.nextUp(Math.floor(stop / interval) * interval); in computeAxisStops() local
491 for (f = first; f <= last; f += interval) { in computeAxisStops()