Searched defs:inner (Results 1 - 25 of 58) sorted by relevance

123

/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-71107.js53 function inner() {
59 return inner;
/external/v8/test/mjsunit/compiler/
H A Dregress-3136962.js34 function inner() { height = 0; ++count; } function
42 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/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/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
H A Dp2-0x.cpp242 inline namespace inner { namespace in namespace:has_inline_namespaces
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp3-0x.cpp9 inline namespace inner { namespace in namespace:has_inline_namespaces
/external/clang/test/SemaCXX/
H A Dlocal-classes.cpp24 void operator() (const bool inner, const bool gross = false) argument
H A Dimplicit-exception-spec.cpp36 } inner; member in struct:InClassInitializers::Nested
H A Dusing-decl-1.cpp69 namespace inner { namespace in namespace:test0::ns
73 using inner::foo;
H A Dmissing-namespace-qualifier-typo-corrections.cpp43 namespace inner { namespace in namespace:N
44 class myvector { /* ... */ }; // expected-note{{'inner::myvector' declared here}}
48 myvector v; // expected-error{{unknown type name 'myvector'; did you mean 'inner::myvector'?}}
/external/skia/include/core/
H A DSkPathEffect.h79 /** Construct a pathEffect whose effect is to apply first the inner pathEffect
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) argument
85 : INHERITED(outer, inner) {}
/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/v8/test/mjsunit/
H A Dobject-literal-overwrite.js82 var inner = { j: function(x) { return x; }, j: 7 };
83 return inner.j;
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
H A Dp1.cpp15 namespace inner { namespace in namespace:std
21 using namespace inner;
/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/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/webkit/Source/WebCore/platform/graphics/android/
H A Dandroid_graphics.cpp40 // The CSS values for the inner and outer widths may be specified as fractions
80 SkColor inner; local
87 inner = colors.pressedInnerColor();
90 inner = colors.selectedInnerColor();
97 paint.setColor(inner);
150 DBG_NAV_LOGD("[%d] inner=%d outer=%d outset=%d radius=%d"
/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/javassist/src/main/javassist/bytecode/
H A DInnerClassesAttribute.java161 * @param inner <code>inner_class_info_index</code>
166 public void append(String inner, String outer, String name, int flags) { argument
167 int i = constPool.addClassInfo(inner);
176 * @param inner <code>inner_class_info_index</code>
181 public void append(int inner, int outer, int name, int flags) { argument
191 ByteArray.write16bit(inner, newData, len);

Completed in 4574 milliseconds

123