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

  /prebuilts/misc/windows/sdl2/test/
testime.c 30 static SDL_Rect textRect, markedRect;
91 textRect.x = textRect.y = 100;
92 textRect.w = DEFAULT_WINDOW_WIDTH - 2 * textRect.x;
93 textRect.h = 50;
96 markedRect = textRect;
113 int w = 0, h = textRect.h;
117 SDL_RenderFillRect(renderer,&textRect);
123 SDL_Rect dest = {textRect.x, textRect.y, textSur->w, textSur->h }
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureFloatingTextDrawingPreview.java 80 final Rect textRect = new Rect();
81 textPaint.getTextBounds(TEXT_HEIGHT_REFERENCE_CHAR, 0, 1, textRect);
82 mGesturePreviewTextHeight = textRect.height();
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYGraphWidget.java 686 RectF textRect = new RectF(FontUtils.getStringDimensions(text,
688 textRect.offsetTo(x, y - textRect.height());
690 if (textRect.right > paddedGridRect.right) {
691 textRect.offset(-(textRect.right - paddedGridRect.right), 0);
694 if (textRect.top < paddedGridRect.top) {
695 textRect.offset(0, paddedGridRect.top - textRect.top);
698 canvas.drawText(text, textRect.left, textRect.bottom,
    [all...]

Completed in 1143 milliseconds