Home
last modified time | relevance | path

Searched refs:bound2 (Results 1 – 7 of 7) sorted by relevance

/external/skia/gm/
Dbigtileimagefilter.cpp74 const SkRect bound2 = SkRect::MakeIWH(kBitmapSize, kBitmapSize); in onDraw() local
84 canvas->saveLayer(&bound2, &p2); in onDraw()
90 canvas->drawImageRect(fGreenImage.get(), bound2, bound3, nullptr, in onDraw()
/external/skqp/gm/
Dbigtileimagefilter.cpp74 const SkRect bound2 = SkRect::MakeIWH(kBitmapSize, kBitmapSize); in onDraw() local
84 canvas->saveLayer(&bound2, &p2); in onDraw()
90 canvas->drawImageRect(fGreenImage.get(), bound2, bound3, nullptr, in onDraw()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
DSameAsBoundTest.java26 Bound bound2 = new SameAsBound(stringType, inferenceVariable); in recognizeInstantiation() local
29 …assertEquals(Optional.of(new Instantiation(inferenceVariable, stringType)), bound2.isAnInstantiati… in recognizeInstantiation()
DSubtypeOfBoundTest.java78 Bound bound2 = new SubtypeOfBound(beta, objectType); in recognizeProperUpperBound2() local
83 … assertEquals(Optional.of(new ProperUpperBound(beta, objectType)), bound2.isProperUpperBound()); in recognizeProperUpperBound2()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
DMultiStartUnivariateRealOptimizer.java243 final double bound2 = (i == 0) ? max : min + generator.nextDouble() * (max - min); in optimize() local
245 FastMath.min(bound1, bound2), in optimize()
246 FastMath.max(bound1, bound2)); in optimize()
/external/python/cpython2/Lib/
Dfractions.py255 bound2 = Fraction(p1, q1)
256 if abs(bound2 - self) <= abs(bound1-self):
257 return bound2
/external/python/cpython3/Lib/
Dfractions.py268 bound2 = Fraction(p1, q1)
269 if abs(bound2 - self) <= abs(bound1-self):
270 return bound2