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

12 3

  /sdk/ddms/app/src/com/android/ddms/
StaticPortEditDialog.java 115 int cx = r.x + r.width/2; local
116 int x = cx - DLG_WIDTH / 2;
StaticPortConfigDialog.java 102 int cx = r.x + r.width/2; local
103 int x = cx - DLG_WIDTH / 2;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
EditFilterDialog.java 98 int cx = r.x + r.width/2; local
99 int x = cx - DLG_WIDTH / 2;
  /external/quake/quake/src/QW/client/
menu.c 112 void M_DrawCharacter (int cx, int line, int num)
114 Draw_Character ( cx + ((vid.width - 320)>>1), line, num);
117 void M_Print (int cx, int cy, char *str)
121 M_DrawCharacter (cx, cy, (*str)+128);
123 cx += 8;
127 void M_PrintWhite (int cx, int cy, char *str)
131 M_DrawCharacter (cx, cy, *str);
133 cx += 8;
184 int cx, cy; local
188 cx = x
    [all...]
  /external/skia/src/core/
SkBlitter.cpp 114 int cx = clip.fLeft; local
120 const uint8_t* bits = mask.getAddr1(cx, cy);
122 if (cx == maskLeft && clip.fRight == mask.fBounds.fRight)
126 bits_to_runs(this, cx, cy, bits, 0xFF, mask_rowBytes, 0xFF);
133 int left_edge = cx - maskLeft;
153 // have cx reflect our actual starting x-coord
154 cx -= left_edge & 7;
161 bits_to_runs(this, cx, cy, bits, left_mask, 1, rite_mask);
170 bits_to_runs(this, cx, cy, bits, left_mask, full_runs + 2, rite_mask);
SkPath.cpp 509 SkScalar cx = oval.centerX(); local
518 this->moveTo(cx + rx, cy);
520 this->cubicTo(cx + rx, cy - sy, cx + sx, cy - ry, cx, cy - ry);
521 this->cubicTo(cx - sx, cy - ry, cx - rx, cy - sy, cx - rx, cy);
522 this->cubicTo(cx - rx, cy + sy, cx - sx, cy + ry, cx, cy + ry)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 341 float cx = getWidth() / 2F; local
344 zoomTo(scale, cx, cy);
348 float cx = getWidth() / 2F; local
351 panBy(cx - pointX, cy - pointY);
352 zoomTo(scale, cx, cy);
371 float cx = getWidth() / 2F; local
374 mSuppMatrix.postScale(rate, rate, cx, cy);
383 float cx = getWidth() / 2F; local
388 tmp.postScale(1F / rate, 1F / rate, cx, cy);
391 mSuppMatrix.setScale(1F, 1F, cx, cy)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageViewTouchBase.java 323 float cx = getWidth() / 2F; local
326 zoomTo(scale, cx, cy);
345 float cx = getWidth() / 2F; local
348 mSuppMatrix.postScale(rate, rate, cx, cy);
357 float cx = getWidth() / 2F; local
362 tmp.postScale(1F / rate, 1F / rate, cx, cy);
365 mSuppMatrix.setScale(1F, 1F, cx, cy);
367 mSuppMatrix.postScale(1F / rate, 1F / rate, cx, cy);
  /external/chromium/third_party/icu/source/common/
ucnvmbcs.c 895 const int32_t *cx; local
962 const int32_t *cx; local
3164 const int32_t *cx=sharedData->mbcs.extIndexes; local
4550 const int32_t *cx; local
    [all...]
ucnv2022.c 1063 const int32_t *cx; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/
SDL_os2fslib.c 124 LONG cx, LONG cy,
134 if (x+cx>swpDesktop.cx)
135 x = swpDesktop.cx - cx;
142 return WinSetWindowPos(hwnd, hwndInsertBehind, x, y, cx, cy, fl);
148 if (x+swp.cx>swpDesktop.cx)
149 x = swpDesktop.cx - swp.cx;
1057 int cx, cy, ncx, ncy; local
    [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 454 double cx, cy, cz, cw; local
488 cx = ax * scale + bx * invscale;
493 qa[0] = cx; qa[1] = cy; qa[2] = cz; qa[3] = cw;
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventValueSelector.java 134 int cx = r.x + r.width/2; local
135 int x = cx - DLG_WIDTH / 2;
EventDisplayOptions.java 156 int cx = r.x + r.width/2; local
157 int x = cx - DLG_WIDTH / 2;
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
GlobalTime.java 1243 float cx = w \/ 2.0f; local
    [all...]
  /external/chromium/net/third_party/nss/ssl/
sslcon.c 1357 PK11Context * cx = 0; local
    [all...]
ssl3con.c 1971 #define cx macro
1988 #undef cx macro
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 336 TCoord cx, cy; member in struct:TWorker_
    [all...]
  /external/icu4c/common/
ucnv2022.c 1085 const int32_t *cx; local
    [all...]
ucnvmbcs.c 965 const int32_t *cx; local
1032 const int32_t *cx; local
3243 const int32_t *cx=sharedData->mbcs.extIndexes; local
4670 const int32_t *cx; local
    [all...]
  /external/quake/quake/src/WinQuake/
menu.cpp 112 void M_DrawCharacter (int cx, int line, int num)
114 Draw_Character ( cx + ((vid.width - 320)>>1), line, num);
117 void M_Print (int cx, int cy, const char *str)
121 M_DrawCharacter (cx, cy, (*str)+128);
123 cx += 8;
127 void M_PrintWhite (int cx, int cy, const char *str)
131 M_DrawCharacter (cx, cy, *str);
133 cx += 8;
184 int cx, cy; local
188 cx = x
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 704 int cx = mClientSize - 2 * IMAGE_MARGIN; local
706 if (sx < cx) {
714 mScrollbar.setThumb(cx);
    [all...]
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 1089 milliseconds

12 3