Searched refs:outer (Results 1 - 25 of 388) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dlineno-dbginfo.c4 // outer is at line number 5.
5 int outer = 42; variable
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-354357.js34 function outer() { function
38 outer();
H A Dregress-crbug-150545.js46 function outer() { function
49 if (%GetOptimizationStatus(outer) != 4) {
50 while (%GetOptimizationCount(outer) == 0) {}
54 outer();
H A Dregress-97116.js35 %DeoptimizeFunction(outer);
39 function outer(should_deopt) { function
47 outer(false);
48 outer(false);
49 %OptimizeFunctionOnNextCall(outer);
50 outer(true);
H A Dregress-97116b.js35 %DeoptimizeFunction(outer);
39 function outer(should_deopt) { function
47 outer(false);
48 outer(false);
49 %OptimizeFunctionOnNextCall(outer);
50 outer(true);
H A Dregress-2261.js69 function outer(x) { function
73 assertEquals(1, outer(1));
74 assertEquals(1, outer(1));
75 %OptimizeFunctionOnNextCall(outer);
76 assertEquals(1, outer(1));
78 assertEquals(1, outer(1));
103 function outer(x) {
107 assertEquals(21, outer(1));
108 assertEquals(21, outer(1));
109 %OptimizeFunctionOnNextCall(outer);
[all...]
H A Dregress-1030466.js36 var result = (function outer() {
H A Dregress-100409.js30 function outer () { function
50 var foo = outer();
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dosr-two.js32 var outer = 100;
33 while (outer > 0) {
39 outer--;
H A Dlazy-const-lookup.js30 function outer() { function
40 outer();
H A Dosr-assert.js31 var outer = 1000000;
33 while (outer > 0) {
36 outer--;
H A Dosr-big.js32 var outer = 1000000;
34 while (outer > 0) {
40 outer--;
H A Dproperty-refs.js31 return o.outer.x | o.outer.inner.y;
35 o.outer.x = x;
36 o.outer.inner.y = y;
41 outer: {
H A Dregress-3136962.js35 function outer() {} function
45 outer();
H A Dinline-arguments.js174 function outer(x, y) { function
178 %OptimizeFunctionOnNextCall(outer);
180 assertEquals(2, outer(1, 2));
196 function outer(x, y) {
200 assertEquals(2, outer(1, 2));
201 assertEquals(2, outer(1, 2));
202 assertEquals(2, outer(1, 2));
203 %OptimizeFunctionOnNextCall(outer);
204 assertEquals(2, outer(1, 2));
234 function outer(
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp7 struct outer { struct in namespace:PR10127
23 operator decltype(outer::middle::inner()) ();
24 operator decltype(outer::middle())::inner2 ();
25 operator decltype(outer())::middle::inner3 ();
26 str(int (decltype(outer::middle::inner())::*n)(),
27 int (decltype(outer::middle())::inner::*o)(),
28 int (decltype(outer())::middle::inner::*p)());
31 decltype(outer::middle::inner()) a;
33 a.decltype(outer::middle())::mfunc(); // expected-error{{'PR10127::outer
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dhasdescriptor.c17 void (^outer)(void) = ^{
22 //printf("size of outer is %ld\n", Block_size(outer));
23 if (Block_size(inner) != Block_size(outer)) {
/external/skia/src/effects/
H A DSkComposeImageFilter.cpp21 SkImageFilter* outer = getInput(0); local
24 if (!outer && !inner) {
28 if (!outer || !inner) {
29 return (outer ? outer : inner)->filterImage(proxy, src, ctx, result, offset);
34 outer->filterImage(proxy, tmp, ctx, result, offset);
40 SkImageFilter* outer = getInput(0); local
43 if (!outer && !inner) {
47 if (!outer || !inner) {
48 return (outer
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSimplifyAddIntersectingTs_Test.cpp58 static SkPath::Verb setPath(size_t outer, SkPath& path, const SkPoint*& pts1) { argument
60 if (outer < lineCount) {
61 path.moveTo(lines[outer][0].fX, lines[outer][0].fY);
62 path.lineTo(lines[outer][1].fX, lines[outer][1].fY);
64 pts1 = lines[outer];
66 outer -= lineCount;
67 if (outer < quadCount) {
68 path.moveTo(quads[outer][
[all...]
/external/skia/experimental/Intersection/
H A DSimplifyAddIntersectingTs_Test.cpp58 static SkPath::Verb setPath(size_t outer, SkPath& path, const SkPoint*& pts1) { argument
60 if (outer < lineCount) {
61 path.moveTo(lines[outer][0].fX, lines[outer][0].fY);
62 path.lineTo(lines[outer][1].fX, lines[outer][1].fY);
64 pts1 = lines[outer];
66 outer -= lineCount;
67 if (outer < quadCount) {
68 path.moveTo(quads[outer][
[all...]
/external/clang/test/PCH/
H A Dcxx-variadic-templates.cpp17 outer<int, int>::inner<1, 2, A, B> i(A<1>{}, B<2>{});
/external/skia/include/effects/
H A DSkComposeImageFilter.h17 static SkComposeImageFilter* Create(SkImageFilter* outer, SkImageFilter* inner) { argument
18 return SkNEW_ARGS(SkComposeImageFilter, (outer, inner));
24 SkComposeImageFilter(SkImageFilter* outer, SkImageFilter* inner) : INHERITED(outer, inner) {} argument
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrix.h147 const Index outer = IsRowMajor ? row : col; local
150 eigen_assert(outer < outerSize()); argument
153 if (outer == inner)
154 return this->m_data.diag(outer);
157 if (inner > outer) //upper matrix
160 if (outer >= minOuterIndex)
161 return this->m_data.upper(m_colStartIndex[inner] + outer - (inner - m_data.upperProfile(inner)));
165 if (inner < outer) //lower matrix
167 const Index minInnerIndex = outer - m_data.lowerProfile(outer);
196 const Index outer = IsRowMajor ? row : col; local
[all...]
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
H A Dprotobufwireadaptertest.cc133 OuterMessage outer; local
134 outer.set_type(OuterMessage_MessageType_MESSAGE_TYPE_CONFIGURATION);
135 outer.set_payload(proto.SerializeAsString());
136 outer.set_protocol_version(1);
137 outer.set_status(OuterMessage_Status_STATUS_OK);
139 ExpectSend(outer);
154 OuterMessage outer; local
155 outer.set_type(OuterMessage_MessageType_MESSAGE_TYPE_CONFIGURATION_ACK);
156 outer.set_payload(proto.SerializeAsString());
157 outer
188 OuterMessage outer; local
224 OuterMessage outer; local
244 OuterMessage outer; local
269 OuterMessage outer; local
294 OuterMessage outer; local
310 OuterMessage outer; local
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dabout_version_android.css5 #outer {

Completed in 1086 milliseconds

1234567891011>>