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

1 2 3 4

  /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...]
SkDisplayXMLParser.cpp 70 SkString inner; local
71 getErrorString(&inner);
72 inner.prepend(": ");
73 inner.prependS32(getLineNumber());
74 inner.prepend(", line ");
75 inner.prepend(src);
76 parent->setErrorNoun(inner);
SkDisplayAdd.cpp 161 for (int inner = 0; inner < maker.fChildren.count(); inner++) {
162 SkDisplayable* child = maker.fChildren[inner];
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-71107.js 53 function inner() {
59 return inner;
  /external/webkit/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]);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Locator2ImplTest.java 68 Locator2Impl inner = new Locator2Impl(); local
70 inner.setPublicId(PUB);
71 inner.setSystemId(SYS);
72 inner.setLineNumber(ROW);
73 inner.setColumnNumber(COL);
75 inner.setEncoding(ENC);
76 inner.setXMLVersion(XML);
79 Locator2Impl outer = new Locator2Impl(inner);
90 outer = new Locator2Impl(new LocatorImpl(inner));
  /external/webkit/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();
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
LocatorImplTest.java 60 LocatorImpl inner = new LocatorImpl(); local
62 inner.setPublicId(PUB);
63 inner.setSystemId(SYS);
64 inner.setLineNumber(ROW);
65 inner.setColumnNumber(COL);
68 LocatorImpl outer = new LocatorImpl(inner);
  /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...]
SkStrokerPriv.h 38 typedef void (*JoinProc)(SkPath* outer, SkPath* inner,
SkLineClipper.cpp 31 // returns true if outer contains inner, even if inner is empty.
32 // note: outer.contains(inner) always returns false if inner is empty.
34 const SkRect& inner) {
35 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
36 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
  /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) {}
  /build/core/
node_fns.mk 201 $(call _import-nodes-inner,$(1),$($(1).$(2).inherited),$(3))
223 define _import-nodes-inner
250 $(call _import-nodes-inner,$(_node_import_context),$(_in),$(3)) \
  /external/elfutils/src/
strip.c 596 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_info[cnt].data->d_size / elsize
1157 size_t inner; local
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebDesktopNotificationsDelegate.cpp 45 static NotificationCOMWrapper* create(Notification* inner) { return new NotificationCOMWrapper(inner); }
63 NotificationCOMWrapper(Notification* inner) : m_refCount(1), m_inner(inner) {}
  /build/core/combo/
HOST_darwin-x86.mk 59 define transform-host-o-to-shared-lib-inner
74 define transform-host-o-to-executable-inner
TARGET_linux-x86.mk 105 define transform-o-to-shared-lib-inner
126 define transform-o-to-executable-inner
144 define transform-o-to-static-executable-inner
  /sdk/emulator/qtools/
bbprof.cpp 14 MyStaticRec *inner; // pointer to an inner basic block member in struct:MyStaticRec
90 blocks[ii].inner = NULL;
109 for (MyStaticRec *bptr = blocks[bb_num].inner; bptr; bptr = bptr->inner)
113 for (MyStaticRec *bptr = &blocks[bb_num]; bptr; bptr = bptr->inner) {
200 // Create pointers to inner blocks and break up the enclosing block
210 sorted[ii]->inner = sorted[ii + 1];
bb2sym.cpp 16 MyStaticRec *inner; // pointer to an inner basic block member in struct:MyStaticRec
71 blocks[ii].inner = NULL;
118 // Create pointers to inner blocks and break up the enclosing block
128 sorted[ii]->inner = sorted[ii + 1];
  /external/elfcopy/
elfcopy.c 380 inner, // index of the symbol in the old table local
392 for (destidx = inner = 1; inner < num_symbols; ++inner)
403 NULL, inner,
431 sym_filter[inner] || /* keep the symbol! */
448 FAILIF_LIBELF(!(destidx == inner ||
457 shdr_info[cnt].newsymidx[inner] = destidx;
460 inner,
464 if (sym_filter) sym_filter[inner] = 1
1280 size_t inner; local
2131 size_t inner; local
2200 size_t inner; local
    [all...]
  /external/chromium/base/
values_unittest.cc 549 DictionaryValue* inner = new DictionaryValue; local
550 root->Set(L"dict_with_emtpy_children", inner);
551 inner->Set(L"empty_dict", new DictionaryValue);
552 inner->Set(L"empty_list", new ListValue);
557 ListValue* inner = new ListValue; local
558 root->Set(L"list_with_empty_children", inner);
559 inner->Append(new DictionaryValue);
560 inner->Append(new ListValue);
567 ListValue* inner = new ListValue; local
568 root->Set(L"list_with_empty_children", inner);
581 ListValue* inner = new ListValue; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 19 SkPathEffect* outer, SkPathEffect* inner) {
20 return new SkComposePathEffect(outer, inner);

Completed in 227 milliseconds

1 2 3 4