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

  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 449 Coordinate newHead = new Coordinate(1, 1);
455 newHead = new Coordinate(head.x + 1, head.y);
459 newHead = new Coordinate(head.x - 1, head.y);
463 newHead = new Coordinate(head.x, head.y - 1);
467 newHead = new Coordinate(head.x, head.y + 1);
474 if ((newHead.x < 1) || (newHead.y < 1) || (newHead.x > mXTileCount - 2)
475 || (newHead.y > mYTileCount - 2)) {
485 if (c.equals(newHead)) {
    [all...]
  /external/webkit/WebCore/html/
HTMLTableElement.cpp 91 void HTMLTableElement::setTHead(PassRefPtr<HTMLTableSectionElement> newHead, ExceptionCode& ec)
100 insertBefore(newHead, child, ec);

Completed in 1283 milliseconds