OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yAdjust
(Results
1 - 6
of
6
) sorted by null
/sdk/emulator/opengl/tests/ut_renderer/
X11Windowing.cpp
51
int
yAdjust
= X11_wmYAdjust;
66
x, y, x+xAdjust, y+
yAdjust
);
67
XMoveWindow(disp, win, x + xAdjust, y +
yAdjust
);
72
X11_wmYAdjust =
yAdjust
= y - yNew;
74
__FUNCTION__, xNew, yNew, xAdjust,
yAdjust
, x+xAdjust, y+
yAdjust
);
75
XMoveWindow(disp, win, x + xAdjust, y +
yAdjust
);
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
TrackingInputHandler.java
156
float
yAdjust
= 0;
169
// Apply similar logic for
yAdjust
.
171
yAdjust
= -(bottomDelta + topDelta) / 2;
173
yAdjust
= -Math.min(topDelta, bottomDelta);
175
yAdjust
= Math.min(-topDelta, -bottomDelta);
178
mRenderData.transform.postTranslate(xAdjust,
yAdjust
);
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11wm.c
341
int
yAdjust
= X11_wmYAdjust;
362
x, y, x+xAdjust, y+
yAdjust
);
363
XMoveWindow(SDL_Display, WMwindow, x + xAdjust, y +
yAdjust
);
368
X11_wmYAdjust =
yAdjust
= y - yNew;
370
__FUNCTION__, xNew, yNew, xAdjust,
yAdjust
, x+xAdjust, y+
yAdjust
);
371
XMoveWindow(SDL_Display, WMwindow, x + xAdjust, y +
yAdjust
);
/external/icu4c/layout/
LEGlyphStorage.h
422
* @param
yAdjust
the adjustment to the glyph's Y position
427
void adjustPosition(le_int32 glyphIndex, float xAdjust, float
yAdjust
, LEErrorCode &success);
OpenTypeLayoutEngine.cpp
494
float xAdjust = 0,
yAdjust
= 0;
507
yAdjust
+= yKerning;
517
glyphStorage.adjustPosition(i, xAdjust + xPlacement, -(
yAdjust
+ yPlacement), success);
520
yAdjust
+= fFontInstance->yUnitsToPoints(yAdvance);
523
glyphStorage.adjustPosition(glyphCount, xAdjust, -
yAdjust
, success);
LEGlyphStorage.cpp
441
void LEGlyphStorage::adjustPosition(le_int32 glyphIndex, float xAdjust, float
yAdjust
, LEErrorCode &success)
453
fPositions[glyphIndex * 2 + 1] +=
yAdjust
;
Completed in 250 milliseconds