Home
last modified time | relevance | path

Searched refs:nextRange (Results 1 – 25 of 48) sorted by relevance

12

/external/skia/fuzz/
DFilterFuzz.cpp74 fuzz->nextRange(&length, 0, 1000); in make_string()
78 fuzz->nextRange(&c, 0, 255); in make_string()
86 fuzz->nextRange(&sel, 0, 7); in make_font_name()
104 fuzz->nextRange(&w, 0.0f, (float) kBitmapSize-1); in make_rect()
105 fuzz->nextRange(&h, 0.0f, (float) kBitmapSize-1); in make_rect()
111 fuzz->nextRange(&x, 0, kBitmapSize-1); in make_region()
112 fuzz->nextRange(&y, 0, kBitmapSize-1); in make_region()
113 fuzz->nextRange(&w, 0, kBitmapSize-1); in make_region()
114 fuzz->nextRange(&h, 0, kBitmapSize-1); in make_region()
127 fuzz->nextRange(&i, 0, (uint8_t)SkBlendMode::kLastMode); in make_blendmode()
[all …]
DFuzzCanvas.cpp79 fuzz->nextRange((U*)value, (U)rmin, (U)rmax); in fuzz_enum_range()
111 fuzz->nextRange(&fillType, 0, (uint8_t)SkPath::kInverseEvenOdd_FillType); in fuzz_path()
114 fuzz->nextRange(&numOps, 2, maxOps); in fuzz_path()
117 fuzz->nextRange(&op, 0, 6); in fuzz_path()
156 this->nextRange(&N, 0, 10); in next()
162 this->nextRange(&op, 0, (uint8_t)SkRegion::kLastOp); in next()
185 this->nextRange(&matrixType, 0, 4); in next()
191 this->nextRange(&buffer[0], -4000.0f, 4000.0f); in next()
192 this->nextRange(&buffer[1], -4000.0f, 4000.0f); in next()
196 this->nextRange(&buffer[0], -400.0f, 400.0f); in next()
[all …]
DFuzzParsePath.cpp45 fuzz->nextRange(&reps, 0, 2); in add_white()
48 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1); in add_white()
78 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gLegal) - 1); in MakeRandomParsePathPiece()
86 fuzz->nextRange(&reps, 1, 3); in MakeRandomParsePathPiece()
90 fuzz->nextRange(&coord, 0.0f, 100.0f); in MakeRandomParsePathPiece()
100 fuzz->nextRange(&s, -720.0f, 720.0f); in MakeRandomParsePathPiece()
119 fuzz->nextRange(&count, 0, 40); in DEF_FUZZ()
DFuzzDrawFunctions.cpp26 fuzz->nextRange(&str[i], 0x20, 0x7E); // printable ASCII in init_string()
38 fuzz->nextRange(&tmp_u8, 0, (int)SkBlendMode::kLastMode); in init_paint()
48 fuzz->nextRange(&tmp_u8, 0, (int)kHigh_SkFilterQuality); in init_paint()
51 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kFull_Hinting); in init_paint()
54 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kLast_Cap); in init_paint()
57 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kLast_Join); in init_paint()
67 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kStrokeAndFill_Style); in init_paint()
73 fuzz->nextRange(&colorType, 0, (int)kLastEnum_SkColorType); in init_bitmap()
104 fuzz->nextRange(&x, 1, kMaxX); in init_surface()
105 fuzz->nextRange(&y, 1, kMaxY); in init_surface()
[all …]
DFuzz.h44 void nextRange(T*, Min, Max);
87 inline void Fuzz::nextRange(float* f, float min, float max) { in nextRange() function
97 inline void Fuzz::nextRange(T* n, Min min, Max max) { in nextRange() function
DFuzzGradients.cpp29 fuzz->nextRange(&count, 0, MAX_COUNT); in initGradientParams()
34 fuzz->nextRange(&m, 0, 2); in initGradientParams()
/external/r8/src/main/java/com/android/tools/r8/bisect/
DBisectState.java154 private Range nextRange = null; field in BisectState
195 nextRange = new Range(data.get(data.size() - 1)); in read()
199 if (nextRange == null) { in setPreviousResult()
204 assert nextRange.equals(new Range(0, 0)); in setPreviousResult()
211 assert nextRange.equals(new Range(0, indexMap.size())); in setPreviousResult()
217 runs.add(new Run(result, nextRange)); in setPreviousResult()
218 System.out.println("Marked range " + nextRange + ": " + result); in setPreviousResult()
219 nextRange = null; in setPreviousResult()
230 if (nextRange.size() == 1) { in getFinalClass()
231 int index = nextRange.start; in getFinalClass()
[all …]
/external/guava/guava/src/com/google/common/collect/
DTreeRangeSet.java735 Range<C> nextRange = completeRangeItr.next();
736 if (upperBoundOnLowerBounds.isLessThan(nextRange.lowerBound)) {
739 nextRange = nextRange.intersection(restriction);
740 return Maps.immutableEntry(nextRange.lowerBound, nextRange);
763 Range<C> nextRange = completeRangeItr.next();
764 if (restriction.lowerBound.compareTo(nextRange.upperBound) >= 0) {
767 nextRange = nextRange.intersection(restriction);
768 if (lowerBoundWindow.contains(nextRange.lowerBound)) {
769 return Maps.immutableEntry(nextRange.lowerBound, nextRange);
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DUnicodeSetPerf.java51 while (it.nextRange()) { in testUnicodeSetAdd()
71 while (it.nextRange()) {
/external/icu/icu4c/source/common/unicode/
Dusetiter.h213 UBool nextRange();
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUnicodeSetIterator.java153 public boolean nextRange() { in nextRange() method in UnicodeSetIterator
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSetIterator.java161 public boolean nextRange() { in nextRange() method in UnicodeSetIterator
/external/icu/icu4c/source/test/perf/unisetperf/draft/
Dtrieset.cpp52 while(iter.nextRange() && !iter.isString()) { in TrieSet()
Dbitset.cpp109 if(iter.nextRange() && !iter.isString()) { in BitSet()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DUnicodeMapIterator.java160 public boolean nextRange() { in nextRange() method in UnicodeMapIterator
/external/icu/icu4c/source/common/
Dusetiter.cpp79 UBool UnicodeSetIterator::nextRange() { in nextRange() function in UnicodeSetIterator
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DUnicodeMapIterator.java161 public boolean nextRange() { in nextRange() method in UnicodeMapIterator
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleDataTest.java228 while (!existsInScript && iter.nextRange()) { in TestExemplarSet()
301 while (!existsInScript && iter.nextRange()) { in TestExemplarSet2()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DLocaleDataTest.java229 while (!existsInScript && iter.nextRange()) { in TestExemplarSet()
302 while (!existsInScript && iter.nextRange()) { in TestExemplarSet2()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DScriptData.java161 while (it.nextRange()) { in ScriptData()
/external/icu/icu4c/source/tools/gennorm2/
Dn2builder.cpp74 const Range *nextRange() { in nextRange() function in HangulIterator
997 while((range=hi.nextRange())!=NULL) { in setHangulData()
1011 while((range=hi.nextRange())!=NULL) { in setHangulData()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetTest.java1749 for (UnicodeSetIterator it = new UnicodeSetIterator(testSet); it.nextRange();) { in CheckRangeSpeed()
2250 while (it.nextRange()) { in copyWithIterator()
2465 it.nextRange(); in TestIteration()
2470 it.nextRange(); in TestIteration()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DUnicodeSetTest.java1750 for (UnicodeSetIterator it = new UnicodeSetIterator(testSet); it.nextRange();) { in CheckRangeSpeed()
2251 while (it.nextRange()) { in copyWithIterator()
2466 it.nextRange(); in TestIteration()
2471 it.nextRange(); in TestIteration()
/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp420 while(hanIter.nextRange()) { in CollData()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DUnicodeMapTest.java406 while (mi.nextRange()) { in checkNext()

12