HomeSort by relevance Sort by last modified time
    Searched refs:topRight (Results 1 - 25 of 40) sorted by null

1 2

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPerspective.java 58 IFolderLayout topRight =
60 "topRight", //NON-NLS-1
64 topRight.addView(IPageLayout.ID_PROP_SHEET); //NON-NLS-1
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 90 * @param topRight the top-right of the quad
94 public static Quad fromLineAndHeight(PointF topLeft, PointF topRight, float height) {
95 PointF dp = new PointF(topRight.x - topLeft.x, topRight.y - topLeft.y);
99 PointF p3 = new PointF(topRight.x - np.x, topRight.y + np.y);
100 return new Quad(topLeft, topRight, p2, p3);
155 public PointF topRight() {
189 PointF topRight = rotatePoint(topRight(), center, cosa, sina)
    [all...]
  /external/skia/debugger/QT/
SkListWidget.cpp 35 painter->drawLine(r.topLeft(),r.topRight());
36 painter->drawLine(r.topRight(),r.bottomRight());
48 painter->drawLine(r.topLeft(),r.topRight());
49 painter->drawLine(r.topRight(),r.bottomRight());
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 480 private void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) {
482 || mTopRightCornerStyle != topRight
487 mTopRightCornerStyle = topRight;
  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 101 tcu::Vec2 topRight;
104 Case (const tcu::Vec2& bl, const tcu::Vec2& tr) : bottomLeft(bl), topRight(tr) {}
326 computeQuadTexCoord2D(texCoord, m_cases[m_caseNdx].bottomLeft, m_cases[m_caseNdx].topRight);
346 log << TestLog::Message << "Note: lookup coordinates: bottom-left " << m_cases[m_caseNdx].bottomLeft << ", top-right " << m_cases[m_caseNdx].topRight << TestLog::EndMessage;
es3fTextureShadowTests.cpp 430 tcu::Vec2 topRight;
442 , topRight (topRight_)
630 << "Coordinates: " << curCase.bottomLeft << " -> " << curCase.topRight
639 computeQuadTexCoordCube(texCoord, face, curCase.bottomLeft, curCase.topRight);
    [all...]
es3fTextureFilteringTests.cpp 373 tcu::Vec2 topRight;
383 , topRight (topRight_)
590 m_testCtx.getLog() << TestLog::Message << "Coordinates: " << curCase.bottomLeft << " -> " << curCase.topRight << TestLog::EndMessage;
598 computeQuadTexCoordCube(texCoord, face, curCase.bottomLeft, curCase.topRight);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureFilteringTests.cpp 139 tcu::Vec2 topRight;
150 , topRight (topRight_)
351 m_testCtx.getLog() << TestLog::Message << "Coordinates: " << curCase.bottomLeft << " -> " << curCase.topRight << TestLog::EndMessage;
359 computeQuadTexCoordCubeArray(texCoord, face, curCase.bottomLeft, curCase.topRight, curCase.layerRange);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 372 void computeQuadTexCoord2D (std::vector<float>& dst, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
373 void computeQuadTexCoord2DArray (std::vector<float>& dst, int layerNdx, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
376 void computeQuadTexCoordCube (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
377 void computeQuadTexCoordCubeArray (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight, const tcu::Vec2& layerRange);
glsTextureTestUtil.cpp     [all...]
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 195 Float3 topRight = new Float3(1.0f, 1.0f, 0.0f);
204 fullQuad.set_position(2, topRight, false);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainPatch.java 358 TerrainPatch topRight,
396 if (topRight != null) {
397 // setInBuffer(topRight.getMesh(), (s+1)*s, normal, tangent, binormal);
    [all...]
TerrainQuad.java     [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 229 float topRight = (float) Math.sqrt(xCeilingSq + yFloorSq);
232 float sum = topLeft + topRight + btmLeft + btmRight;
240 value = topRight / sum;
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 345 Color topLeft, Color topRight, Color bottomRight, Color bottomLeft) {
350 buf.putInt(convertColor(topRight));
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 283 final int topRight = selectorRight;
299 canvas.clipRect(topLeft, topTop, topRight, topBottom);
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 187 Vec2 topRight;
214 const Vec2& topRight = s_basicCoords[cellNdx].topRight;
216 computeQuadTexCoord2D(dst, bottomLeft, topRight);
es2aTextureFilteringTests.cpp 476 const tcu::Vec2& topRight,
493 computeQuadTexCoordCube(texCoord, (tcu::CubeFace)face, bottomLeft, topRight);
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 179 Vec2 topRight;
206 const Vec2& topRight = s_basicCoords[cellNdx].topRight;
208 computeQuadTexCoord2D(dst, bottomLeft, topRight);
es3aTextureFilteringTests.cpp 486 const tcu::Vec2& topRight,
503 computeQuadTexCoordCube(texCoord, (tcu::CubeFace)face, bottomLeft, topRight);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ImageShader.java 421 quad.topRight().x, quad.topRight().y,
469 quad.topRight().x, quad.topRight().y,
  /external/deqp/modules/gles2/functional/
es2fTextureFilteringTests.cpp 357 tcu::Vec2 topRight;
367 , topRight (topRight_)
563 m_testCtx.getLog() << TestLog::Message << "Coordinates: " << curCase.bottomLeft << " -> " << curCase.topRight << TestLog::EndMessage;
571 computeQuadTexCoordCube(texCoord, face, curCase.bottomLeft, curCase.topRight);
es2fTextureMipmapTests.cpp 191 Vec2 topRight;
218 const Vec2& topRight = s_basicCoords[cellNdx].topRight;
220 computeQuadTexCoord2D(dst, bottomLeft, topRight);
    [all...]
  /external/zxing/core/
core.jar 
  /prebuilts/misc/common/power-helper/
PowerTestHelper.jar 

Completed in 5360 milliseconds

1 2