Home
last modified time | relevance | path

Searched refs:alphaL (Results 1 – 2 of 2) sorted by relevance

/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
DTypeInference.java518 InferenceVariable alphaL = inferenceVariables.get(l); in boundSetup() local
523 boundSet = boundSet.withBound(new SubtypeOfBound(alphaL, object)); in boundSetup()
538 boundSet = boundSet.withBound(new SubtypeOfBound(alphaL, TWithSubstitutions)); in boundSetup()
540 if (boundSet.getProperUpperBoundsFor(alphaL).isEmpty()) { in boundSetup()
541 boundSet = boundSet.withBound(new SubtypeOfBound(alphaL, object)); in boundSetup()
/external/skia/gm/
Dcompositor_quads.cpp116 double alphaL = lNumerator / lDenom; in intersect_line_segments() local
117 if (alphaL < 0.0 || alphaL > 1.0) { in intersect_line_segments()
124 double alphaP = (alphaL * lY - plY) / pY; in intersect_line_segments()
131 *intersect = l1 * SkScalar(alphaL) + l0 * SkScalar(1.0 - alphaL); in intersect_line_segments()