Searched refs:inner (Results 1 - 25 of 96) sorted by relevance

1234

/external/v8/test/mjsunit/regress/
H A Dregress-1030466.js31 // inner functions may already have been created using the original context. In
32 // the failing test case below, the inner function is run in the original context
39 function inner() {
42 return inner();
/external/clang/test/SemaTemplate/
H A Dtypo-dependent-name.cpp5 T inner; member in struct:Base
15 return this->inner < other;
H A Danonymous-union.cpp24 struct inner;
26 struct inner { struct in struct:rdar8635664::X
37 X<int>::inner i;
H A Dalias-templates.cpp42 typedef T inner; typedef in struct:X::thing
43 typedef ptr<inner> inner_ptr;
44 typedef traits<thing<inner>> traits_type;
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp2 namespace inner { namespace in namespace:outer
14 using outer_alias::inner::vector;
16 struct X_vector : outer_alias::inner::vector<X> {
17 using outer_alias::inner::vector<X>::iterator;
21 namespace inner { namespace in namespace:outer
31 void outer::inner::array<T, N>::foo() {
35 int outer::inner::array<T, N>::max_size = 17;
38 struct X2 : outer::inner::vector<T> {
40 using typename outer::inner::vector<type>::iterator;
41 using outer::inner
45 namespace inner { namespace in namespace:outer
62 namespace inner { namespace in namespace:outer
114 namespace inner { namespace in namespace:outer
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.class/
H A Dp1.cpp18 X0<int, float>::Inner inner; local
19 inner.x = 5;
20 inner.y = 3.4;
21 inner.f();
/external/v8/test/mjsunit/compiler/
H A Dregress-3136962.js34 function inner() { height = 0; ++count; } function
42 inner();
H A Dproperty-refs.js31 return o.outer.x | o.outer.inner.y;
36 o.outer.inner.y = y;
43 inner: { y: 0 }
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-71107.js53 function inner() {
59 return inner;
/external/skia/src/animator/
H A DSkBuildCondensedInfo.cpp43 for (int inner = 0; inner < infoCount; inner++) {
44 SkASSERT(info[inner].fCount < 256);
45 int offset = (int) info[inner].fOffset;
48 if (info[inner].fType == SkType_BaseClassInfo) {
49 const SkMemberInfo* innerInfo = (const SkMemberInfo*) info[inner].fName;
52 *gUnknownsCounts.append() = info[inner].fCount;
55 if (info[inner].fType != SkType_BaseClassInfo && info[inner]
[all...]
/external/clang/test/CXX/stmt.stmt/stmt.dcl/
H A Dp3-0x.cpp37 goto inner; // expected-error{{goto into protected scope}}
40 inner:
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Ddowhile-005.js34 result2 = "fail: did not hit code after inner loop";
39 inner: {
41 break inner;
42 result1 = "fail: did break out of inner label";
61 "break out of inner loop",
/external/elfutils/tests/
H A Dasm-tst3.c224 size_t inner; local
226 for (inner = 1;
227 inner < (shdr->sh_size
229 ++inner)
234 sym = gelf_getsym (data, inner, &sym_mem);
238 inner, elf_errmsg (-1));
267 if (strcmp (names[inner],
271 printf ("symbol %zu has different name\n", inner);
275 if (sym->st_value != value[inner])
277 printf ("symbol %zu has wrong value\n", inner);
[all...]
H A Dsectiondump.c146 size_t inner; local
150 for (inner = 0; inner < 16 && cnt + inner < size; ++inner)
151 printf (" %02hhx", buf[cnt + inner]);
/external/clang/test/SemaCXX/
H A Dlocal-classes.cpp24 void operator() (const bool inner, const bool gross = false) argument
H A Dnested-name-spec-locations.cpp9 namespace inner { namespace in namespace:outer
25 using outer::inner::X0<
35 using outer::inner::X0<
68 outer_alias::inner::X0<typename add_reference<T>::type
81 typedef typename outer::inner::X0<
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp4.cpp29 X<IntHolder, int>::Inner inner; // expected-note {{first required here}} local
52 X<IntHolder, long>::Inner inner; // okay, uses specialization local
H A Dp5.cpp40 X<IntHolder, long>::Inner inner; // expected-error {{incomplete}} local
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dregress-181834.js61 * If N>0, we end up calling inner() N+1 times:
62 * inner(N), inner(N-1), ... , inner(0).
64 * Each call to inner() increments |outer_d| by 1.
65 * The last call, inner(0), returns the final value
71 return inner(N);
73 function inner(level)
78 return inner(level - 1);
H A Dscope-002.js22 * SUMMARY: Testing visibility of outer function from inner function.
28 var summary = 'Testing visibility of outer function from inner function';
44 function inner()
51 actual = inner();
/external/skia/samplecode/
H A DSamplePathEffects.cpp39 SkPathEffect* inner = new SkCornerPathEffect(SkIntToScalar(CORNER_RADIUS));
41 SkPathEffect* pe = new SkComposePathEffect(outer, inner);
43 inner->unref();
56 SkPathEffect* inner = new SkCornerPathEffect(SkIntToScalar(CORNER_RADIUS)); local
58 SkPathEffect* pe = new SkComposePathEffect(outer, inner);
60 inner->unref();
/external/skia/src/core/
H A DSkStrokerPriv.cpp93 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) argument
97 just connecting the two inner segments may "show through" as a funny
102 inner->lineTo(pivot.fX, pivot.fY);
105 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY);
108 static void BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, argument
117 SkTSwap<SkPath*>(outer, inner);
122 HandleInnerJoin(inner, pivot, after);
125 static void RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, argument
141 SkTSwap<SkPath*>(outer, inner);
160 HandleInnerJoin(inner, pivo
170 MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool prevIsLine, bool currIsLine) argument
[all...]
/external/v8/test/mjsunit/
H A Dobject-literal-overwrite.js82 var inner = { j: function(x) { return x; }, j: 7 };
83 return inner.j;
/external/elfutils/src/
H A Dstrip.c596 size_t inner; local
606 for (inner = 1;
607 inner < shdr_info[cnt].data->d_size / sizeof (Elf32_Word);
608 ++inner)
609 shdr_info[grpref[inner]].group_idx = cnt;
611 if (inner == 1 || (inner == 2 && (grpref[0] & GRP_COMDAT) == 0))
616 shdr_info[cnt].group_cnt = inner - 1;
751 for (size_t inner = 0;
752 inner < shdr_inf
1157 size_t inner; local
[all...]
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp3-0x.cpp9 inline namespace inner { namespace in namespace:has_inline_namespaces

Completed in 462 milliseconds

1234