HomeSort by relevance Sort by last modified time
    Searched refs:outer (Results 176 - 200 of 780) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py 209 # The outer message is a multipart
    [all...]
test_email_renamed.py 186 # The outer message is a multipart
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py 209 # The outer message is a multipart
    [all...]
test_email_renamed.py 186 # The outer message is a multipart
    [all...]
  /external/skia/bench/
ShapesBench.cpp 190 const SkRRect* outer; variable
192 case kRect_ShapesType: outer = &fRect; break;
193 case kOval_ShapesType: outer = &fOval; break;
194 case kRRect_ShapesType: outer = &fRRect; break;
203 std::cref(*outer), std::cref(*inner),
  /external/skia/src/core/
SkLineClipper.cpp 69 // returns true if outer contains inner, even if inner is empty.
70 // note: outer.contains(inner) always returns false if inner is empty.
71 static inline bool containsNoEmptyCheck(const SkRect& outer,
73 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
74 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp 546 static string tessellationLevelsString (const float* inner, int numInner, const float* outer, int numOuter)
549 return "inner: " + elemsStr(inner, inner+numInner) + ", outer: " + elemsStr(outer, outer+numOuter);
552 static string tessellationLevelsString (const float* inner, const float* outer, TessPrimitiveType primType)
554 return tessellationLevelsString(inner, numInnerTessellationLevels(primType), outer, numOuterTessellationLevels(primType));
557 static string tessellationLevelsString (const float* inner, const float* outer)
559 return tessellationLevelsString(inner, 2, outer, 4);
597 //! A description of an outer edge of a triangle, quad or isolines.
598 //! An outer edge can be described by the index of a u/v/w coordinat
    [all...]
  /external/v8/test/webkit/
exception-with-handler-inside-eval-with-dynamic-scope.js 27 var test = "outer scope";
51 eval("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"outer scope\"'); }");
53 eval("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"outer scope\"'); }");
  /external/clang/test/CodeGenCXX/
x86_64-arguments.cpp 123 struct outer { struct in namespace:test6
129 int test(outer x) {
  /external/v8/test/mjsunit/es6/
computed-property-names.js 320 outer: 42,
329 assertEquals(42, object.outer);
336 outer: 42,
348 assertEquals(42, object.outer);
  /external/v8/test/mjsunit/strong/
undefined.js 14 ["function outer() { 'use strict';", "}"],
15 ["function outer() { 'use strict'; function inner() {", "}}"],
20 ["function outer() { 'use strong';", "}"],
21 ["function outer() { 'use strong'; function inner() {", "}}"],
declaration-after-use.js 15 // by wrapping the code to be tested inside an outer function.
18 let prologue = "(function outer() { if (false) { ";
43 `(function outer() {
48 "(function outer() {\n" +
53 "(function outer() {\n" +
58 "(function outer() {\n" +
  /external/webrtc/webrtc/libjingle/xmpp/
xmppengineimpl.h 193 StanzaParseHandler(XmppEngineImpl* outer) : outer_(outer) {}
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 21 SkPathEffect* outer = reinterpret_cast<SkPathEffect*>(outerHandle); local
23 SkPathEffect* effect = SkComposePathEffect::Create(outer, inner);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
except.h 124 struct eh_region_d *outer; variable in typeref:struct:eh_region_d
319 r = r->outer;
  /external/clang/test/SemaCXX/
warn-unused-filescoped.cpp 150 class outer { class in namespace:unused_nested
  /external/v8/test/mjsunit/
break.js 55 outer: while (i-- > 0) {
62 break outer;
  /external/v8/test/mjsunit/compiler/
regress-3136962.js 35 function outer() {} function
45 outer();
regress-serialized-slots.js 28 // The test verifies that parameters of the outer function are correctly
43 // Note outer function parameter access (|thisObject|).
optimized-for-in.js 136 // Continue of the outer loop.
139 outer: for (var i in t) {
142 continue outer;
149 // Break of the outer loop.
152 outer: for (var i in t) {
155 break outer;
  /external/v8/test/mjsunit/regress/
regress-2071.js 61 function outer() { function
75 outer();
regress-crbug-150545.js 46 function outer() { function
51 outer();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Set.java 317 final ASN1Set outer = this; local
347 return outer;
352 return outer;
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedDequeTest.java 34 Deque<String> outer = Synchronized.deque(inner, inner.mutex); local
35 outer.add("foo"); // necessary because we try to remove elements later on
36 return outer;
  /external/skia/src/gpu/
SkGpuDevice_drawTexture.cpp 63 SkIRect outer, inner; local
64 outerTransformedRect.round(&outer);
66 // If the inner and outer rects round to the same result, it means the
68 return inner != outer;

Completed in 1551 milliseconds

1 2 3 4 5 6 78 91011>>