HomeSort by relevance Sort by last modified time
    Searched defs:sx (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 126 int sx = (int) (mImgSize * mScale); local
131 int delta = mClientSize - sx;
143 if (sx < cx) {
151 int maximum = sx;
  /external/clang/test/SemaCXX/
class.cpp 9 sx = 0;
18 sx = 0;
46 sx = 0;
65 static int sx; member in class:C
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp 44 double sx = matrix.xScale(); local
52 sx = -sx;
58 m.scale(1.0 / sx, 1.0 / sy);
67 sr[0] = sx;
202 AffineTransform& AffineTransform::scale(double sx, double sy)
204 m_transform[0] *= sx;
205 m_transform[1] *= sx;
225 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy)
227 return scale(sx, sy)
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_view_tiled.c 96 Evas_Coord sx, sy, sw, sh; local
98 sx = sr->x;
106 sr->dx, sr->dy, sx, sy, sw, sh);
107 ewk_view_repaint_add(sd->_priv, sx, sy, sw, sh);
111 if (sx + sw > vw)
112 sw = vw - sx;
124 sx -= abs(sr->dx);
128 ewk_view_repaint_add(sd->_priv, sx, sy, sw, sh);
140 int sx, sy; local
142 ewk_frame_scroll_pos_get(sd->main_frame, &sx, &sy)
    [all...]
ewk_view_single.c 202 Evas_Coord sx, sy, sw, sh; local
207 sx = sr->x;
215 sr->dx, sr->dy, sx, sy, sw, sh);
216 ewk_view_repaint_add(sd->_priv, sx, sy, sw, sh);
220 if (sx < 0) {
221 sw += sx;
222 sx = 0;
229 if (sx + sw > ow)
230 sw = ow - sx;
244 sr->dx, sr->dy, sx, sy, sw, sh + sr->dy
444 int sx, sy; local
    [all...]
  /frameworks/base/core/java/android/gesture/
Gesture.java 238 final float sx = (width - 2 * inset) / bounds.width(); local
240 final float scale = sx > sy ? sy : sx;
GestureStroke.java 167 float sx = width / rect.width(); local
169 float scale = sx > sy ? sy : sx;
GestureUtils.java 99 float sx = targetPatchSize / gestureWidth; local
103 float scale = sx < sy ? sx : sy;
104 sx = scale;
113 float scale = sx < sy ? sx : sy;
114 sx = scale;
117 if (sx > sy) {
119 if (scale < sx) {
120 sx = scale
    [all...]
  /frameworks/base/opengl/tests/gl_basic/
gl_basic.cpp 63 float sx = fy * upZ - fz * upY; local
69 float uy = sz * fx - sx * fz;
70 float uz = sx * fy - sy * fx;
73 m[0] = sx;
  /frameworks/base/opengl/tests/testLatency/src/com/android/testlatency/
TestLatencyView.java 119 float sx = (x + dx * step) * mScaleX + mOffsetX; local
124 mTriangleVerticesData2[i] = sx + mTriangleVerticesData[i];
  /frameworks/base/opengl/tests/tritex/
tritex.cpp 60 float sx = fy * upZ - fz * upY; local
66 float uy = sz * fx - sx * fz;
67 float uz = sx * fy - sy * fx;
70 m[0] = sx;
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
ShellSizeAndPos.java 42 private static final String SX = "_sx"; //$NON-NLS-1$
51 int sx = Integer.parseInt(props.getProperty(prefix + SX)); local
55 Point p2 = new Point(px + sx, py + sy);
84 sx = Math.min(sx, area.width);
86 px = area.x + (area.width - sx) / 2;
91 shell.setSize(sx, sy);
108 props.setProperty(prefix + SX, Integer.toString(size.x));
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 103 int sx = getScrollX();
104 sx += distanceX;
105 if (sx < 0) {
106 sx = 0;
108 if (sx + getWidth() > mTotalWidth) {
109 sx -= distanceX;
111 mTargetScrollX = sx;
112 scrollTo(sx, getScrollY());
221 int sx = getScrollX(); local
222 if (mTargetScrollX > sx) {
    [all...]
  /external/icu4c/common/
uchar.c 583 uint16_t sx; local
602 sx=*scx++;
604 scripts[length]=sx&0x7fff;
607 } while(sx<0x8000);
  /external/qemu/android/skin/
surface.c 272 int sx; member in struct:__anon9478
345 int sx = src_rect->pos.x; local
353 sx -= x;
356 if (sx < 0) {
357 w += sx;
358 x -= sx;
359 sx = 0;
366 delta = (sx + w) - src->surface->w;
394 blit->sx = sx;
    [all...]
argb.h 229 int sx = op->sx; local
236 src_line += (sx >> 16)*4 + (sy >> 16)*src_pitch;
237 sx &= 0xffff;
244 int sx1 = sx;
325 int sx = op->sx; local
332 src_line += (sx >> 16)*4 + (sy >> 16)*src_pitch;
333 sx &= 0xffff;
340 int sx1 = sx;
462 int sx = op->sx; local
549 int sx = op->sx; local
803 int sx = op->sx; local
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 465 GrScalar sx = GrFixedToScalar(GR_Fixed1 / bitmap.width()); local
467 matrix.postScale(sx, sy);
    [all...]
  /external/skia/tests/
MathTest.cpp 285 SkScalar sx = rand.nextSScalar1(); local
286 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, sx) == sx);
287 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, -sx) == -sx);
288 REPORTER_ASSERT(reporter, SkScalarCopySign(-sx, sx) == sx);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 231 float sx = mScratch[4]; local
235 float tx = sx - width * 0.5f;
  /external/opencv/cv/src/
cvsegmentation.cpp 459 int s0 = 0, s1 = 0, s2 = 0, sx = 0, sy = 0; local
480 sx += x; row_count++;
486 sx += x+1; row_count++;
492 sx += x+2; row_count++;
498 sx += x+3; row_count++;
508 sx += x; row_count++;
519 x1 = cvRound(sx*icount);
  /external/stlport/test/unit/
string_test.cpp 155 string sx = func( s ); local
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.h 110 float sx[PART_LEN1], sd[PART_LEN1], se[PART_LEN1]; // far, near and error psd member in struct:__anon13798
  /frameworks/base/libs/gui/
SurfaceTexture.cpp 907 float tx, ty, sx, sy; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 155 string sx = func( s ); local
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 155 string sx = func( s ); local
    [all...]

Completed in 588 milliseconds

12 3 4 5