Home
last modified time | relevance | path

Searched refs:pivotX (Results 1 – 6 of 6) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowViewRenderNode.java17 private float pivotX; field in ShadowViewRenderNode
177 public boolean setPivotX(float pivotX) { in setPivotX() argument
178 this.pivotX = pivotX; in setPivotX()
185 return pivotX; in getPivotX()
DShadowRenderNode.java18 private float pivotX; field in ShadowRenderNode
178 public boolean setPivotX(float pivotX) { in setPivotX() argument
179 this.pivotX = pivotX; in setPivotX()
186 return pivotX; in getPivotX()
DShadowVectorDrawable.java161 float pivotX; field in ShadowVectorDrawable.Group
200 properties[1] = group.pivotX; in nGetGroupProperties()
213 float pivotX, in nUpdateGroupProperties() argument
221 group.pivotX = pivotX; in nUpdateGroupProperties()
/external/deqp/modules/gles2/performance/
Des2pShaderOperatorTests.cpp482 for (std::set<float>::const_iterator pivotX = xCoords.begin(); pivotX != xCoords.end(); ++pivotX) in findSlopePivotX() local
488 if (data[i].x() < *pivotX) in findSlopePivotX()
503 bestPivotX = *pivotX; in findSlopePivotX()
515 float pivotX; //!< Value returned by findSlopePivotX, or -infinity if only single line. member
518 …t gls::LineParameters& l, const gls::LineParameters& r, float pivotX_) : pivotX(pivotX_), left(l),… in SegmentedEstimator()
535 const float pivotX = findSlopePivotX(data); in computeSegmentedEstimator() local
541 if (data[i].x() < pivotX) in computeSegmentedEstimator()
558 return SegmentedEstimator(leftLine, rightLine, pivotX); in computeSegmentedEstimator()
987 if (estimator.pivotX > -std::numeric_limits<float>::infinity()) in iterate()
988 …:Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX in iterate()
/external/deqp/modules/gles3/performance/
Des3pShaderOperatorTests.cpp482 for (std::set<float>::const_iterator pivotX = xCoords.begin(); pivotX != xCoords.end(); ++pivotX) in findSlopePivotX() local
488 if (data[i].x() < *pivotX) in findSlopePivotX()
503 bestPivotX = *pivotX; in findSlopePivotX()
515 float pivotX; //!< Value returned by findSlopePivotX, or -infinity if only single line. member
518 …t gls::LineParameters& l, const gls::LineParameters& r, float pivotX_) : pivotX(pivotX_), left(l),… in SegmentedEstimator()
535 const float pivotX = findSlopePivotX(data); in computeSegmentedEstimator() local
541 if (data[i].x() < pivotX) in computeSegmentedEstimator()
558 return SegmentedEstimator(leftLine, rightLine, pivotX); in computeSegmentedEstimator()
987 if (estimator.pivotX > -std::numeric_limits<float>::infinity()) in iterate()
988 …:Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX in iterate()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowViewTest.java662 public void pivotX() { in pivotX() method in ShadowViewTest