Home
last modified time | relevance | path

Searched refs:cursorX (Results 1 – 8 of 8) sorted by relevance

/external/libvncserver/libvncserver/
Dmain.c315 int x = cl->cursorX - cl->screen->cursor->xhot; in rfbScheduleCopyRegion()
642 if (x != s->cursorX || y != s->cursorY) { in rfbDefaultPtrAddEvent()
644 s->cursorX = x; in rfbDefaultPtrAddEvent()
904 screen->cursorX=screen->cursorY=screen->underCursorBufferLen=0; in rfbGetScreen()
973 if (screen->cursorX >= width) in rfbNewFramebuffer()
974 screen->cursorX = width - 1; in rfbNewFramebuffer()
Dcursor.c191 rect.r.x = Swap16IfLE(cl->screen->cursorX); in rfbSendCursorPos()
485 x1=cl->cursorX-c->xhot; in rfbHideCursor()
537 x1=cl->cursorX-c->xhot; in rfbShowCursor()
688 x = cl->cursorX-c->xhot; in rfbRedrawAfterHideCursor()
Drfbserver.c440 cl->cursorX = rfbScreen->cursorX; in rfbNewTCPOrUDPClient()
2850 (cl->cursorX == cl->screen->cursorX && cl->cursorY == cl->screen->cursorY)) && in rfbSendFramebufferUpdate()
2905 if(cl->cursorX != cl->screen->cursorX || cl->cursorY != cl->screen->cursorY) { in rfbSendFramebufferUpdate()
2908 cl->cursorX = cl->screen->cursorX; in rfbSendFramebufferUpdate()
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DVDUBuffer.java61 protected int cursorX, cursorY; field in VDUBuffer
610 cursorX = c; in setCursorPosition()
618 return cursorX; in getCursorColumn()
/external/libvncserver/rfb/
Drfb.h318 int cursorX, cursorY,underCursorBufferLen; member
631 int cursorX,cursorY; /**< the coordinates of the cursor, member
708 ((cl)->cursorX != (cl)->screen->cursorX || \
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
DTextArea.java256 cursorPatch.draw(batch, x + textOffset + fontOffset + font.getData().cursorX, in drawCursor()
354 return textOffset + fontOffset + style.font.getData().cursorX; in getCursorX()
DTextField.java143 …x -= textOffset + fontOffset - style.font.getData().cursorX - glyphPositions.get(visibleTextStart); in letterUnderCursor()
264 selectionWidth = maxX - minX - style.font.getData().cursorX; in calculateOffsets()
352 …Positions.get(cursor) - glyphPositions.get(visibleTextStart) + fontOffset + font.getData().cursorX, in drawCursor()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
DBitmapFont.java450 public float cursorX; field in BitmapFont.BitmapFontData