/external/fec/ |
H A D | sim.c | 12 static int iset; local 14 if(iset){ 16 iset = 0; 29 iset++;
|
/external/skia/tests/ |
H A D | InterpolatorTest.cpp | 12 static SkScalar* iset(SkScalar array[3], int a, int b, int c) { function 24 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0); 25 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330)); 53 REPORTER_ASSERT(reporter, memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
|
H A D | ShaderOpacityTest.cpp | 57 pts[0].iset(0, 0); 58 pts[1].iset(1, 0);
|
H A D | ClipStackTest.cpp | 230 rectA.iset(10, 10, 50, 50); 231 rectB.iset(40, 40, 80, 80); 311 rectA.iset(10, 10, 40, 40); 312 rectB.iset(50, 50, 80, 80); 1192 answer.iset(25, 25, 75, 75);
|
/external/skia/src/animator/ |
H A D | SkOperandIterpolator.cpp | 97 static SkOperand* iset(SkOperand array[3], int a, int b, int c) function 113 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0); 114 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330)); 138 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
|
/external/skia/src/gpu/ |
H A D | GrSoftwarePathRenderer.cpp | 93 rect.iset(devClipBounds.fLeft, devClipBounds.fTop, 98 rect.iset(devClipBounds.fLeft, devPathBounds.fTop, 103 rect.iset(devPathBounds.fRight, devPathBounds.fTop, 108 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom,
|
/external/skia/bench/ |
H A D | BitmapRectBench.cpp | 76 fSrcR.iset(0, 0, kWidth, kHeight); 77 fDstR.iset(0, 0, kWidth, kHeight);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 671 UnicodeSetIterator iset = new UnicodeSetIterator(set); 672 if (!iset.next() || iset.codepoint != UnicodeSetIterator.IS_STRING) { 674 } else if (!iset.string.equals("ab")) { 832 SortedSet iset = new TreeSet(); 836 pick(i, choices, iset); 839 checkSetRelation(iset, jset, "(" + i + ")"); 854 SortedSet iset = new TreeSet(); 858 iset.add(new Integer(i)); 867 CheckSpeed(iset, jse 879 CheckSpeed(SortedSet iset, SortedSet jset, String message, int iterations) argument 884 CheckSpeed2(SortedSet iset, SortedSet jset, String message, int iterations) argument 911 CheckSpeed3(SortedSet iset, SortedSet jset, String message, int iterations) argument [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 667 UnicodeSetIterator iset = new UnicodeSetIterator(set); 668 if (!iset.next() || iset.codepoint != UnicodeSetIterator.IS_STRING) { 670 } else if (!iset.string.equals("ab")) { 828 SortedSet iset = new TreeSet(); 832 pick(i, choices, iset); 835 checkSetRelation(iset, jset, "(" + i + ")"); 850 SortedSet iset = new TreeSet(); 854 iset.add(new Integer(i)); 863 CheckSpeed(iset, jse 875 CheckSpeed(SortedSet iset, SortedSet jset, String message, int iterations) argument 880 CheckSpeed2(SortedSet iset, SortedSet jset, String message, int iterations) argument 907 CheckSpeed3(SortedSet iset, SortedSet jset, String message, int iterations) argument [all...] |
/external/skia/samplecode/ |
H A D | SampleBitmapRect.cpp | 194 fSrcR.iset(0, 0, fBitmap.height() * 3, fBitmap.height()); 206 fLimitR.iset(0, 0, fBitmap.width(), fBitmap.height());
|
/external/skia/gm/ |
H A D | image.cpp | 85 src1.iset(0, 0, surf->width(), surf->height()); 86 src2.iset(-surf->width() / 2, -surf->height() / 2, 88 src3.iset(0, 0, surf->width() / 2, surf->height() / 2);
|
H A D | gradients.cpp | 285 c0.iset(-80, 25); 288 c1.iset(0, 25); 333 center.iset(0, 300);
|
/external/skia/src/views/ |
H A D | SkView.cpp | 386 click->fOrig.iset(x, y); 410 click->fCurr.iset(x, y); 433 click->fCurr.iset(x, y);
|
/external/skia/include/core/ |
H A D | SkPoint.h | 179 void iset(int32_t x, int32_t y) { function in struct:SkPoint 187 void iset(const SkIPoint& p) { function in struct:SkPoint
|
H A D | SkRect.h | 532 void iset(int left, int top, int right, int bottom) {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
H A D | CodeGenerator.java | 762 IntervalSet iset = (IntervalSet)set; 763 if ( iset.getIntervals()==null || iset.getIntervals().size()==0 ) { 775 Iterator iter = iset.getIntervals().iterator();
|
/external/icu/icu4c/source/test/intltest/ |
H A D | usettest.cpp | 642 UnicodeSetIterator iset(set); 643 if (!iset.next() || !iset.isString()) { 645 } else if (iset.getString() != "ab") {
|
/external/skia/src/pdf/ |
H A D | SkPDFDevice.cpp | 1583 translation.iset(this->getOrigin());
|
/external/skia/src/core/ |
H A D | SkCanvas.cpp | 1783 r.iset(ibounds.fLeft - inset, ibounds.fTop - inset,
|
/external/antlr/antlr-3.4/lib/ |
H A D | antlr-3.4-complete.jar | META-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ... |