HomeSort by relevance Sort by last modified time
    Searched full:newtop (Results 1 - 25 of 44) sorted by null

1 2

  /external/valgrind/main/none/tests/
shorts.c 10 short newtop = w->nt; local
13 if (newtop < oldtop) { fprintf(stderr,"case1\n");
14 // FillArea(w, newtop, XawMin(newbot, oldtop), 1);
16 if (newtop > oldtop) { fprintf(stderr,"case2\n");
17 // FillArea(w, oldtop, XawMin(newtop, oldbot), 0);
23 // FillArea(w, XawMax(newtop, oldbot), newbot, 1);
  /frameworks/base/core/tests/coretests/src/android/view/
VisibilityTest.java 81 int newTop = mVictim.getTop();
82 assertEquals(oldTop, newTop);
116 int newTop = mVictim.getTop();
117 assertEquals(oldTop, newTop);
136 int newTop = mVictim.getTop();
137 assertEquals(oldTop, newTop);
150 int newTop = mVictim.getTop();
151 assertEquals(oldTop, newTop);
156 newTop = mVictim.getTop();
157 assertEquals(oldTop, newTop);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 161 int newTop = mTop + dir * MATRIX_SIZE;
162 if (newTop < 0) {
165 if (newTop + MATRIX_SIZE > mMatrix.length) {
  /external/quake/quake/src/QW/client/
r_edge.c 353 goto newtop;
361 goto newtop;
384 newtop:
483 goto newtop;
500 goto newtop;
508 goto newtop;
555 newtop:
r_edgea.s 393 // goto newtop;
432 // goto newtop;
522 // goto newtop;
690 // goto newtop;
711 // goto newtop;
  /external/quake/quake/src/WinQuake/
r_edge.cpp 353 goto newtop;
361 goto newtop;
384 newtop:
483 goto newtop;
500 goto newtop;
508 goto newtop;
555 newtop:
r_edgea.s 393 // goto newtop;
432 // goto newtop;
522 // goto newtop;
690 // goto newtop;
711 // goto newtop;
  /external/icu4c/tools/makeconv/
genmbcs.cpp 566 uint32_t blockSize, newTop, i, nextOffset, newBlock, min;
598 newTop=newBlock+MBCS_STAGE_2_BLOCK_SIZE;
600 if(newTop>MBCS_MAX_STAGE_2_TOP) {
610 mbcsData->stage2Top=newTop;
632 newTop=newBlock+blockSize;
634 if(newTop>MBCS_STAGE_3_SBCS_SIZE) {
640 while(newBlock<newTop) {
644 mbcsData->stage3Top=newTop; /* ==newBlock */
685 uint32_t blockSize, newTop, i, nextOffset, newBlock, min, overlap, maxOverlap;
728 newTop=newBlock+MBCS_STAGE_2_BLOCK_SIZE
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 461 int newTop = header.y + header.height;
462 if (newTop > top) {
463 top = newTop;
  /external/icu4c/common/
utrie2_builder.cpp 475 int32_t newBlock, newTop;
478 newTop=newBlock+UTRIE2_INDEX_2_BLOCK_LENGTH;
479 if(newTop>LENGTHOF(trie->index2)) {
487 trie->index2Length=newTop;
514 int32_t newBlock, newTop;
523 newTop=newBlock+UTRIE2_DATA_BLOCK_LENGTH;
524 if(newTop>trie->dataCapacity) {
550 trie->dataLength=newTop;
    [all...]
utrie.cpp 175 int32_t newBlock, newTop;
178 newTop=newBlock+UTRIE_DATA_BLOCK_LENGTH;
179 if(newTop>trie->dataCapacity) {
183 trie->dataLength=newTop;
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Rect.java 286 * @param newTop The new "top" coordinate for the rectangle
288 public void offsetTo(int newLeft, int newTop) {
290 bottom += newTop - top;
292 top = newTop;
RectF.java 250 * @param newTop The new "top" coordinate for the rectangle
252 public void offsetTo(float newLeft, float newTop) {
254 bottom += newTop - top;
256 top = newTop;
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller_unittest.mm 556 CGFloat newTop = [menuWindow frame].origin.y + NSHeight([menuWindow frame]);
557 EXPECT_CGFLOAT_EQ(oldTop, newTop);
562 oldTop = newTop;
573 newTop = [menuWindow frame].origin.y + NSHeight([menuWindow frame]);
574 EXPECT_NE(oldTop, newTop);
575 oldTop = newTop;
578 newTop = [menuWindow frame].origin.y + NSHeight([menuWindow frame]);
579 EXPECT_CGFLOAT_EQ(oldTop, newTop);
590 newTop = [menuWindow frame].origin.y + NSHeight([menuWindow frame]);
591 EXPECT_CGFLOAT_EQ(oldTop - bookmarks::kScrollWindowVerticalMargin, newTop);
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 542 private void push(JsonScope newTop) {
543 stack.add(newTop);
549 private void replaceTop(JsonScope newTop) {
550 stack.set(stack.size() - 1, newTop);
    [all...]
  /frameworks/base/core/java/android/util/
JsonReader.java 571 private void push(JsonScope newTop) {
572 stack.add(newTop);
578 private void replaceTop(JsonScope newTop) {
579 stack.set(stack.size() - 1, newTop);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 656 void RenderListBox::setScrollTop(int newTop)
659 int index = newTop / itemHeight();
RenderTextControlSingleLine.cpp     [all...]
  /packages/apps/Nfc/src/com/android/nfc/
SendUi.java 604 int newTop = statusBarHeight;
622 bitmap = Bitmap.createBitmap(bitmap, newLeft, newTop, newWidth, newHeight);
  /external/skia/legacy/src/core/
SkCanvas.cpp 653 MCRec* newTop = (MCRec*)fMCStack.push_back();
654 new (newTop) MCRec(fMCRec, flags); // balanced in restore()
656 newTop->fNext = fMCRec;
657 fMCRec = newTop;
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 738 MCRec* newTop = (MCRec*)fMCStack.push_back();
739 new (newTop) MCRec(fMCRec, flags); // balanced in restore()
741 newTop->fNext = fMCRec;
742 fMCRec = newTop;
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 481 void Element::setScrollTop(int newTop)
485 rend->setScrollTop(static_cast<int>(newTop * rend->style()->effectiveZoom()));
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java     [all...]
  /bionic/libc/upstream-dlmalloc/
malloc.c 4857 mchunkptr newtop = chunk_plus_offset(p, nb); local
    [all...]
  /external/eigen/unsupported/test/mpreal/
dlmalloc.c 4332 mchunkptr newtop = chunk_plus_offset(oldp, nb); local
    [all...]

Completed in 1240 milliseconds

1 2