HomeSort by relevance Sort by last modified time
    Searched full:outer (Results 1 - 25 of 420) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/057-iteration-performance/src/
Main.java 479 for (int outer = iters; outer > 0; outer--) {
489 for (int outer = iters; outer > 0; outer--) {
499 for (int outer = iters; outer > 0; outer--) {
509 for (int outer = iters; outer > 0; outer--)
    [all...]
  /external/webkit/WebCore/manual-tests/resources/
hover-subframe-1.html 6 .outer {
12 .outer:hover {
25 <div class="outer"
hover-subframe-2.html 6 .outer {
12 .outer:hover {
25 <div class="outer"
  /dalvik/docs/
java-bytecode.css 29 td.outer {
34 td.outer table {
38 td.outer td {
50 td.outer td + td + td {
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/ext/
Locator2ImplTest.java 79 Locator2Impl outer = new Locator2Impl(inner); local
81 assertEquals(PUB, outer.getPublicId());
82 assertEquals(SYS, outer.getSystemId());
83 assertEquals(ROW, outer.getLineNumber());
84 assertEquals(COL, outer.getColumnNumber());
86 assertEquals(ENC, outer.getEncoding());
87 assertEquals(XML, outer.getXMLVersion());
90 outer = new Locator2Impl(new LocatorImpl(inner));
92 assertEquals(PUB, outer.getPublicId());
93 assertEquals(SYS, outer.getSystemId())
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
dowhile-005.js 37 outer: {
45 break outer;
51 result3 = "fail: did not break out of outer label";
67 "break out of outer loop",
try-012.js 52 outerFinally = "FAIL: DID NOT HIT OUTER FINALLY BLOCK";
70 outerCatch = "FAIL: HIT OUTER CATCH BLOCK";
84 "eval( " + expression +" ): evaluated outer catch block ",
89 "eval( " + expression +" ): evaluated outer finally block",
try-003.js 43 outerFinally = "FAIL: DID NOT HIT OUTER FINALLY BLOCK";
55 outerCatch = "FAIL: HIT OUTER CATCH BLOCK";
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/function/
nesting.js 44 var y = "outer";
46 testcases[count++] = new TestCase( SECTION, "outer:x ",
48 testcases[count++] = new TestCase( SECTION, "outer:y ",
49 'outer', y);
60 testcases[count++] = new TestCase( SECTION, "outer:x ",
62 testcases[count++] = new TestCase( SECTION, "outer:y ",
63 'outer', y);
  /frameworks/base/graphics/java/android/graphics/
ComposePathEffect.java 23 * and the the outer pathEffect (e.g. outer(inner(path))).
  /cts/tests/tests/graphics/src/android/graphics/cts/
BlurMaskFilter_BlurTest.java 36 assertEquals(Blur.OUTER, Blur.valueOf("OUTER"));
51 assertEquals(Blur.OUTER, bulr[2]);
57 assertNotNull(new BlurMaskFilter(10.24f, Blur.OUTER));
  /development/samples/GlobalTime/src/com/android/globaltime/
Annulus.java 22 * A class that draws a ring with a given center and inner and outer radii.
23 * The inner and outer rings each have a color and the remaining pixels are
36 * @param outerRadius the outer radius
41 * @param rOuter the red channel of the color of the outer ring
42 * @param gOuter the green channel of the color of the outer ring
43 * @param bOuter the blue channel of the color of the outer ring
44 * @param aOuter the alpha channel of the color of the outer ring
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-002.js 22 * SUMMARY: Testing visibility of outer function from inner function.
28 var summary = 'Testing visibility of outer function from inner function';
41 function Outer()
46 Outer.cousin = cnCousin;
47 return Outer.cousin;
57 Outer();
59 actual = Outer.cousin;
regress-181834.js 68 function outer(N) function
91 * Recompile the function |outer| via eval() in order to
94 var s = outer.toString();
98 actual = outer(-5);
103 actual = outer(0);
108 actual = outer(5);
119 * Recompile the function |outer| via eval() in order to
125 actual = outer(-5);
130 actual = outer(0);
135 actual = outer(5)
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
LocatorImplTest.java 68 LocatorImpl outer = new LocatorImpl(inner); local
70 assertEquals(PUB, outer.getPublicId());
71 assertEquals(SYS, outer.getSystemId());
72 assertEquals(ROW, outer.getLineNumber());
73 assertEquals(COL, outer.getColumnNumber());
77 outer = new LocatorImpl(null);
  /external/webkit/WebCore/manual-tests/
nested-plug-ins.html 26 <input type="checkbox" checked="true" onclick="toggleDisplay(document.getElementById('middle'))"> Outer frame display
34 <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle'))"> Outer frame visibility
45 <iframe id="middle" style="height: 400px; width: 400px;" src="resources/nested-plug-ins-outer-frame.html"></iframe>
  /external/skia/src/core/
SkScan_Hairline.cpp 330 SkRect outer, tmp;
332 outer.set( r.fLeft - radius, r.fTop - radius,
337 SkScan::FillRect(outer, clip, blitter);
341 tmp.set(outer.fLeft, outer.fTop, outer.fRight, outer.fTop + diameter);
343 tmp.fTop = outer.fBottom - diameter;
344 tmp.fBottom = outer.fBottom;
347 tmp.set(outer.fLeft, outer.fTop + diameter, outer.fLeft + diameter, outer.fBottom - diameter)
    [all...]
SkStrokerPriv.cpp 108 static void BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
117 SkTSwap<SkPath*>(outer, inner);
121 outer->lineTo(pivot.fX + after.fX, pivot.fY + after.fY);
125 static void RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
141 SkTSwap<SkPath*>(outer, inner);
157 outer->quadTo(pts[i].fX, pts[i].fY, pts[i+1].fX, pts[i+1].fY);
170 static void MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
195 SkTSwap<SkPath*>(outer, inner);
241 outer->setLastPt(pivot.fX + mid.fX, pivot.fY + mid.fY);
243 outer->lineTo(pivot.fX + mid.fX, pivot.fY + mid.fY)
    [all...]
SkLineClipper.cpp 31 // returns true if outer contains inner, even if inner is empty.
32 // note: outer.contains(inner) always returns false if inner is empty.
33 static inline bool containsNoEmptyCheck(const SkRect& outer,
35 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
36 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/FunExpr/
fe-002.js 27 return "outer";
37 reportCompare ("outer", f(),
  /external/skia/include/core/
SkPathEffect.h 80 and the the outer pathEffect (e.g. outer(inner(path)))
81 The reference counts for outer and inner are both incremented in the constructor,
84 SkComposePathEffect(SkPathEffect* outer, SkPathEffect* inner)
85 : INHERITED(outer, inner) {}
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 41 * Specifies an outer (round)rect and an optional inner (round)rect.
43 * @param outerRadii An array of 8 radius values, for the outer roundrect.
46 * For no rounded corners on the outer rectangle,
49 * rect to each side of the outer rect.
62 "outer radii must have >= 8 values");
  /dalvik/dx/src/com/android/dx/cf/attrib/
InnerClassList.java 52 * @param outerClass {@code null-ok;} outer class that this class is a
70 /** {@code null-ok;} outer class that this class is a member of, if any */
83 * @param outerClass {@code null-ok;} outer class that this class is a
111 * Gets the outer class that this item's class is a member of, if any.
  /development/simulator/app/
PrefsDialog.h 10 * Declaration of preferences dialog. This class defines the outer
  /external/iproute2/include/linux/
ip6_tunnel.h 17 /* copy DSCP from the outer packet */

Completed in 111 milliseconds

1 2 3 4 5 6 7 8 91011>>