HomeSort by relevance Sort by last modified time
    Searched full:posx (Results 1 - 17 of 17) sorted by null

  /external/skia/gm/
androidfallback.cpp 45 SkScalar posX[strLength];
49 posX[i] = SkIntToScalar(i * 24);
50 posXY[i].fX = posX[i];
59 canvas->drawPosTextH(unicodeStr, strByteLength, posX, 0, paint);
  /external/jmonkeyengine/engine/src/core/com/jme3/input/event/
TouchEvent.java 43 * Touch down event, fields: posX, posY, pressure
47 * Move/Drag event, fields: posX, posY, deltaX, deltaY, pressure
51 * Touch up event, fields: posX, posY, pressure
69 * Two finger scale event start, fields: posX/posY = getFocusX/Y, scaleFactor, scaleSpan
73 * Two finger scale event, fields: posX/posY = getFocusX/Y, scaleFactor, scaleSpan
77 * Two finger scale event end, fields: posX/posY = getFocusX/Y, scaleFactor, scaleSpan
94 private float posX;
121 this.posX = x;
144 return posX;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCurves.java 261 float posX = e.getX();
262 if (posX < margin) {
263 posX = margin;
269 if (posX > getWidth() - margin) {
270 posX = getWidth() - margin;
275 posX = (posX - margin) / (getWidth() - 2 * margin);
303 pick = pickControlPoint(posX, posY);
305 mCurrentControlPoint = new ControlPoint(posX, posY);
314 if (spline.isPointContained(posX, pick))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemevents.c 330 int posx, posy; local
333 posx = mx - x2;
334 if (posx<0) posx = 0;
335 if (posx>w2) posx = w2-1;
340 SDL_PrivateMouseMotion(0, 0, posx, posy);
  /external/ganymed-ssh2/examples/
SwingShell.java 188 int posx = 0; field in class:SwingShell.TerminalDialog.RemoteConsumer
198 if (posx < 0)
200 posx--;
206 posx = 0;
230 if (posx >= x)
232 posx = 0;
252 lines[posy][posx] = c;
253 posx++;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
ImageViewer.java 326 int posX = getLogicalPositionX(event.x);
332 if (posX < 0) {
333 posX = 0;
335 if (posX >= width) {
336 posX = width - 1;
365 for (; x != posX; x += (x > posX) ? -1 : 1) {
369 mCursorPoint.x = posX;
376 if (posX >= 0 && posY >= 0
377 && posX <= mNinePatchedImage.getWidth(
    [all...]
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
fbosync.rs 172 static void drawOffscreenResult(int posX, int posY, rs_allocation texture) {
180 float startX = posX, startY = posY;
fbotest.rs 171 static void drawOffscreenResult(int posX, int posY) {
179 float startX = posX, startY = posY;
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
rsbench.rs 152 static void drawOffscreenResult(int posX, int posY, int width, int height) {
164 float startX = posX, startY = posY;
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
shaderstest.rs 162 static void drawOffscreenResult(int posX, int posY, float width, float height) {
169 float startX = posX, startY = posY;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
HandleView.java 256 final int posX = getContainerPositionX() + (int) mHotspotX;
259 return posX >= clip.left && posX <= clip.right &&
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Folder_Actions_Suite.py 206 which = 'posx'
277 'posx' : _Prop_POSIX_path,
Disk_Folder_File_Suite.py 79 which = 'posx'
365 'posx' : _Prop_POSIX_path,
  /external/chromium_org/cc/base/
tiling_data_unittest.cc 84 int PosX(
598 EXPECT_EQ(0, PosX(gfx::Size(3, 3), gfx::Size(1, 1), false, 0));
600 EXPECT_EQ(0, PosX(gfx::Size(3, 3), gfx::Size(1, 100), false, 0));
602 EXPECT_EQ(0, PosX(gfx::Size(3, 3), gfx::Size(3, 1), false, 0));
604 EXPECT_EQ(0, PosX(gfx::Size(3, 3), gfx::Size(3, 100), false, 0));
    [all...]
  /external/qemu/
console.h 226 void vga_fill_rect (DisplayState *ds, int posx, int posy,
console.c 272 void vga_fill_rect(DisplayState *ds, int posx, int posy,
280 ds_get_linesize(ds) * posy + bpp * posx;
    [all...]
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs     [all...]

Completed in 494 milliseconds