HomeSort by relevance Sort by last modified time
    Searched refs:inner (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/SemaTemplate/
typo-dependent-name.cpp 5 T inner; member in struct:Base
11 struct Inner {
15 return this->inner < other;
anonymous-union.cpp 24 struct inner;
26 struct inner { struct in struct:rdar8635664::X
37 X<int>::inner i;
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 2 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::vector<type>::push_back
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/
p1.cpp 5 struct Inner;
9 struct X0<T, U>::Inner {
18 X0<int, float>::Inner inner; local
19 inner.x = 5;
20 inner.y = 3.4;
21 inner.f();
23 X0<int*, float *>::Inner inner2;
  /external/skia/src/animator/
SkBuildCondensedInfo.cpp 43 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].fName
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-71107.js 53 function inner() {
59 return inner;
  /frameworks/base/services/java/com/android/server/wm/
BlackFrame.java 79 public BlackFrame(SurfaceSession session, Rect outer, Rect inner,
84 if (outer.top < inner.top) {
86 outer.left, outer.top, inner.right, inner.top);
88 if (outer.left < inner.left) {
90 outer.left, inner.top, inner.left, outer.bottom);
92 if (outer.bottom > inner.bottom) {
94 inner.left, inner.bottom, outer.right, outer.bottom)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Locator2ImplTest.java 52 Locator2Impl inner = new Locator2Impl(); local
54 inner.setPublicId(PUB);
55 inner.setSystemId(SYS);
56 inner.setLineNumber(ROW);
57 inner.setColumnNumber(COL);
59 inner.setEncoding(ENC);
60 inner.setXMLVersion(XML);
63 Locator2Impl outer = new Locator2Impl(inner);
74 outer = new Locator2Impl(new LocatorImpl(inner));
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
LocatorImplTest.java 44 LocatorImpl inner = new LocatorImpl(); local
46 inner.setPublicId(PUB);
47 inner.setSystemId(SYS);
48 inner.setLineNumber(ROW);
49 inner.setColumnNumber(COL);
52 LocatorImpl outer = new LocatorImpl(inner);
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 37 goto inner; // expected-error{{goto into protected scope}}
40 inner:
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
dowhile-005.js 34 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/
asm-tst3.c 224 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...]
sectiondump.c 146 size_t inner; local
150 for (inner = 0; inner < 16 && cnt + inner < size; ++inner)
151 printf (" %02hhx", buf[cnt + inner]);
  /external/clang/test/SemaCXX/
local-classes.cpp 24 void operator() (const bool inner, const bool gross = false)
37 struct Inner {
nested-name-spec-locations.cpp 9 namespace inner { namespace in namespace:outer
25 using outer::inner::X0<
35 using outer::inner::X0<
47 t->T::template Inner<typename add_reference<U>::type
55 struct Inner;
68 outer_alias::inner::X0<typename add_reference<T>::type
81 typedef typename outer::inner::X0<
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/
OuterClass_InnerClass_Delegate.java 26 // The delegate override of Inner.get return 6 + a + b
27 public static int get(OuterClass outer, InnerClass inner, int a, long b) {
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Half.c 75 OMX_INT outer, inner, count, index; local
99 for (inner = 0; inner < BlockSize; inner++, count++, index++)
154 for (inner = 0; inner < BlockSize; inner++, count++,index++)
armVCM4P2_BlockMatch_Integer.c 83 OMX_INT outer, inner, count,index; local
145 for (inner = 0; inner < BlockSize; inner++, count++, index++)
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p4.cpp 15 struct Inner { // expected-error{{implicit default}}
29 X<IntHolder, int>::Inner inner; // expected-note {{first required here}} local
40 struct X<IntHolder, long>::Inner {
41 Inner() : value(17) { }
52 X<IntHolder, long>::Inner inner; // okay, uses specialization local
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-181834.js 61 * 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);
scope-002.js 22 * 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();
  /packages/apps/Browser/src/com/android/browser/view/
PieItem.java 34 private int inner; field in class:PieItem
68 inner = inside;
82 return inner;
  /external/skia/samplecode/
SamplePathEffects.cpp 39 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/
SkStrokerPriv.cpp 93 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after)
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,
117 SkTSwap<SkPath*>(outer, inner);
122 HandleInnerJoin(inner, pivot, after);
125 static void RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
141 SkTSwap<SkPath*>(outer, inner);
160 HandleInnerJoin(inner, pivot, after)
    [all...]
  /external/skia/include/core/
SkPathEffect.h 79 /** 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)
85 : INHERITED(outer, inner) {}

Completed in 1539 milliseconds

1 2 3 4 5 6 7