OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:By
(Results
1 - 5
of
5
) sorted by null
/external/droiddriver/src/com/google/android/droiddriver/scroll/
Scrollers.java
10
* Unless required
by
applicable law or agreed to in writing, software
23
import com.google.android.droiddriver.finders.
By
;
41
driver.checkGone(
By
.className(ProgressBar.class));
/external/droiddriver/src/com/google/android/droiddriver/finders/
By.java
10
* Unless required
by
applicable law or agreed to in writing, software
27
public class
By
{
47
/** Matches a UiElement
by
resource id. */
52
/** Matches a UiElement
by
package name. */
57
/** Matches a UiElement
by
the exact text. */
72
/** Matches a UiElement
by
content description. */
82
/** Matches a UiElement
by
class name. */
87
/** Matches a UiElement
by
class name. */
98
* Matches
by
XPath. When applied on an non-root element, it will not evaluate
138
* Returns a finder that uses the UiElement returned
by
first Finder a
[
all
...]
/external/chromium_org/third_party/skia/experimental/Intersection/
CubicUtilities.cpp
4
* Use of this source code is governed
by
a BSD-style license that can be
311
double
By
= src[2].y - 2 * src[1].y + src[0].y;
314
return quadraticRootsValidT(Bx * Cy -
By
* Cx, Ax * Cy - Ay * Cx, Ax *
By
- Ay * Bx, tValues);
/external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp
4
* Use of this source code is governed
by
a BSD-style license that can be
67
involving integer multiplies
by
2 or 3, but fewer calls to SkScalarMul.
321
// t = - (Ax Bx + Ay
By
) / (Bx ^ 2 +
By
^ 2)
327
SkScalar
By
= src[0].fY - src[1].fY - src[1].fY + src[2].fY;
330
(void)valid_unit_divide(-(Ax * Bx + Ay *
By
), Bx * Bx +
By
*
By
, &t);
453
// we divide A,B,C
by
3 to simplify
579
the resulting beziers are monotonic in Y. This is called
by
the sca
[
all
...]
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp
4
* Use of this source code is governed
by
a BSD-style license that can be
317
double
By
= fPts[2].fY - 2 * fPts[1].fY + fPts[0].fY;
320
return SkDQuad::RootsValidT(Bx * Cy -
By
* Cx, Ax * Cy - Ay * Cx, Ax *
By
- Ay * Bx, tValues);
340
// we divide A,B,C
by
3 to simplify
489
/*
by
= */ dst[1].fY = (my * 2 - ny) / 18;
518
/*
by
= */ dst[0].fY = (my * 2 - ny) / 18;
Completed in 499 milliseconds