Searched defs:newTop (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/cmds/runtime/
H A DSignalHandler.cpp214 int32_t oldTop, newTop; local
220 newTop = oldTop + 1;
221 if (newTop >= COMMAND_QUEUE_SIZE) {
222 newTop = 0;
225 if (newTop == self->mCommandBottom) {
229 LOGE("Command buffer overflow! newTop=%d\n", newTop);
235 } while(android_atomic_cmpxchg(oldTop, newTop, &(self->mCommandTop)));
/frameworks/base/graphics/java/android/graphics/
H A DRect.java272 * @param newTop The new "top" coordinate for the rectangle
274 public void offsetTo(int newLeft, int newTop) { argument
276 bottom += newTop - top;
278 top = newTop;
H A DRectF.java193 * @param newTop The new "top" coordinate for the rectangle
195 public void offsetTo(float newLeft, float newTop) { argument
197 bottom += newTop - top;
199 top = newTop;

Completed in 36 milliseconds