OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lastheight
(Results
1 - 7
of
7
) sorted by null
/external/chromium-trace/catapult/tracing/third_party/css-element-queries/src/
ResizeSensor.js
89
var lastWidth,
lastHeight
;
99
lastHeight
= element.offsetHeight;
119
if (element.offsetWidth > lastWidth || element.offsetHeight >
lastHeight
) {
126
if (element.offsetWidth < lastWidth || element.offsetHeight <
lastHeight
) {
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglAWTCanvas.java
74
int
lastHeight
;
238
lastHeight
= Math.max(1, graphics.getHeight());
239
listener.resize(lastWidth,
lastHeight
);
255
if (lastWidth != width ||
lastHeight
!= height) {
257
lastHeight
= height;
258
Gdx.gl.glViewport(0, 0, lastWidth,
lastHeight
);
LwjglApplication.java
151
int
lastHeight
= graphics.getHeight();
186
if (lastWidth != width ||
lastHeight
!= height) {
188
lastHeight
= height;
189
Gdx.gl.glViewport(0, 0, lastWidth,
lastHeight
);
190
listener.resize(lastWidth,
lastHeight
);
LwjglCanvas.java
204
int
lastHeight
= Math.max(1, graphics.getHeight());
220
if (lastWidth != width ||
lastHeight
!= height) {
222
lastHeight
= height;
223
Gdx.gl.glViewport(0, 0, lastWidth,
lastHeight
);
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtApplication.java
75
private int
lastHeight
;
178
lastHeight
= graphics.getHeight();
217
if (Gdx.graphics.getWidth() != lastWidth || Gdx.graphics.getHeight() !=
lastHeight
) {
220
lastHeight
= graphics.getHeight();
221
Gdx.gl.glViewport(0, 0, lastWidth,
lastHeight
);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DumbTextComponent.java
63
private transient int
lastHeight
= 10;
441
return new Dimension(lastWidth,
lastHeight
);
445
return new Dimension(lastWidth,
lastHeight
);
449
return new Dimension(
lastHeight
,
lastHeight
);
546
lastHeight
= y + yInset - lineHeight + yInset;
/external/pdfium/core/src/fpdftext/
fpdf_text.cpp
206
FX_FLOAT
lastheight
= -1;
local
284
if (
lastheight
>= 0) {
286
if (dy >= (pBaseLine->m_MaxFontSizeV) * 1.5 || dy >=
lastheight
* 1.5) {
290
lastheight
= pBaseLine->m_MaxFontSizeV;
Completed in 2053 milliseconds