HomeSort by relevance Sort by last modified time
    Searched refs:posY (Results 1 - 18 of 18) sorted by null

  /external/skia/gm/
imageblurtiled.cpp 55 int posY = 0;
57 posY += 100;
59 SkIntToScalar(posY), textPaint);
imageresizetiled.cpp 61 int posY = 0;
63 posY += 100;
65 SkIntToScalar(posY), textPaint);
  /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
95 private float posY;
122 this.posY = y;
148 return posY;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCurves.java 264 float posY = e.getY();
265 if (posY < margin) {
266 posY = margin;
271 if (posY > getHeight() - margin) {
272 posY = getHeight() - margin;
275 posY = (posY - margin) / (getHeight() - 2 * margin);
302 pick = pickControlPoint(posX, posY);
304 mCurrentControlPoint = new ControlPoint(posX, posY);
314 spline.movePoint(pick, posX, posY);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogMotion.java 141 final int posY = chevronPosY();
142 mChevron.setTranslationY(posY + v + -mDialogView.getTranslationY());
218 final int posY = chevronPosY();
219 mChevron.setTranslationY(posY + -mDialogView.getTranslationY());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
ImageViewer.java 327 int posY = getLogicalPositionY(event.y);
338 if (posY < 0) {
339 posY = 0;
341 if (posY >= height) {
342 posY = height - 1;
359 for (; y != posY; y += (y > posY) ? -1 : 1) {
370 mCursorPoint.y = posY;
376 if (posX >= 0 && posY >= 0
378 && posY <= mNinePatchedImage.getHeight())
    [all...]
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp 615 const float posY = (float)y / ((float)DE_LENGTH_OF_ARRAY(s_specialFloats) - 1.0f) * 2.0f - 1.0f;
617 gridVertices[x * DE_LENGTH_OF_ARRAY(s_specialFloats) + y] = tcu::Vec4(posX, posY, 0.0f, 1.0f);
835 const float posY = (float)y / (float)DE_LENGTH_OF_ARRAY(s_specialFloats) * 2.0f - 1.0f;
837 gridVertices[x * (DE_LENGTH_OF_ARRAY(s_specialFloats)+1) + y] = tcu::Vec4(posX, posY, 0.0f, 1.0f);
    [all...]
  /external/deqp/modules/gles3/stress/
es3sSpecialFloatTests.cpp 627 const float posY = (float)y / ((float)DE_LENGTH_OF_ARRAY(s_specialFloats) - 1.0f) * 2.0f - 1.0f;
629 gridVertices[x * DE_LENGTH_OF_ARRAY(s_specialFloats) + y] = tcu::Vec4(posX, posY, 0.0f, 1.0f);
850 const float posY = (float)y / (float)DE_LENGTH_OF_ARRAY(s_specialFloats) * 2.0f - 1.0f;
852 gridVertices[x * (DE_LENGTH_OF_ARRAY(s_specialFloats)+1) + y] = tcu::Vec4(posX, posY, 0.0f, 1.0f);
    [all...]
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp 79 FX_FLOAT posY;
80 posY = pData->m_PosY;
81 if(FXSYS_fabs(posY) > tempPageHeight &&
82 FXSYS_fabs(posY + pData->m_Height) < tempPageHeight) {
88 FX_FLOAT spaceh = screenCount * fitPageHeight + posY + pData->m_Height;
102 } else if(FXSYS_fabs(posY + pData->m_Height) > tempPageHeight) {
108 FX_FLOAT posY;
109 posY = pData->m_PosY;
110 if(FXSYS_fabs(posY) > tempPageHeight ) {
    [all...]
  /external/skia/src/svg/
SkSVGDevice.cpp 176 const SkString& posY() const { return fPosY; }
748 elem.addAttribute("y", builder.posY());
762 elem.addAttribute("y", builder.posY());
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Wearable/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 205 public void onPageScrolled(int posX, int posY, float posOffsetX, float posOffsetY,
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Wearable/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 205 public void onPageScrolled(int posX, int posY, float posOffsetX, float posOffsetY,
  /development/samples/browseable/XYZTouristAttractions/Wearable/src/com.example.android.xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 205 public void onPageScrolled(int posX, int posY, float posOffsetX, float posOffsetY,
  /external/deqp/modules/glshared/
glsTextureBufferCase.cpp 124 const size_t posY = (size_t(index) * 2) + 1;
129 if (posY >= offset && posY < offset+size)
130 coords[posY - offset] = ((i / 2) == 1 ? extend2BitsToByte(0x3u) : extend2BitsToByte(0x0u));
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawTests.cpp     [all...]
es31fPrimitiveBoundingBoxTests.cpp     [all...]
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /external/zxing/core/
core.jar 

Completed in 833 milliseconds