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

1 2 3 4

  /external/skia/fuzz/
FuzzParsePath.cpp 45 fuzz->nextRange(&reps, 0, 2);
48 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1);
78 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gLegal) - 1);
86 fuzz->nextRange(&reps, 1, 3);
90 fuzz->nextRange(&coord, 0.0f, 100.0f);
100 fuzz->nextRange(&s, -720.0f, 720.0f);
119 fuzz->nextRange(&count, 0, 40);
FilterFuzz.cpp 74 fuzz->nextRange(&length, 0, 1000);
78 fuzz->nextRange(&c, 0, 255);
86 fuzz->nextRange(&sel, 0, 7);
104 fuzz->nextRange(&w, 0.0f, (float) kBitmapSize-1);
105 fuzz->nextRange(&h, 0.0f, (float) kBitmapSize-1);
111 fuzz->nextRange(&x, 0, kBitmapSize-1);
112 fuzz->nextRange(&y, 0, kBitmapSize-1);
113 fuzz->nextRange(&w, 0, kBitmapSize-1);
114 fuzz->nextRange(&h, 0, kBitmapSize-1);
127 fuzz->nextRange(&i, 0, (uint8_t)SkBlendMode::kLastMode)
    [all...]
FuzzDrawFunctions.cpp 26 fuzz->nextRange(&str[i], 0x20, 0x7E); // printable ASCII
38 fuzz->nextRange(&tmp_u8, 0, (int)SkBlendMode::kLastMode);
48 fuzz->nextRange(&tmp_u8, 0, (int)kHigh_SkFilterQuality);
51 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kFull_Hinting);
54 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kLast_Cap);
57 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kLast_Join);
67 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kStrokeAndFill_Style);
73 fuzz->nextRange(&colorType, 0, (int)kLastEnum_SkColorType);
104 fuzz->nextRange(&x, 1, kMaxX);
105 fuzz->nextRange(&y, 1, kMaxY)
    [all...]
FuzzCanvas.cpp 79 fuzz->nextRange((U*)value, (U)rmin, (U)rmax);
111 fuzz->nextRange(&fillType, 0, (uint8_t)SkPath::kInverseEvenOdd_FillType);
114 fuzz->nextRange(&numOps, 2, maxOps);
117 fuzz->nextRange(&op, 0, 6);
156 this->nextRange(&N, 0, 10);
162 this->nextRange(&op, 0, (uint8_t)SkRegion::kLastOp);
185 this->nextRange(&matrixType, 0, 4);
191 this->nextRange(&buffer[0], -4000.0f, 4000.0f);
192 this->nextRange(&buffer[1], -4000.0f, 4000.0f);
196 this->nextRange(&buffer[0], -400.0f, 400.0f)
    [all...]
Fuzz.h 42 // nextRange returns values only in [min, max].
44 void nextRange(T*, Min, Max);
87 inline void Fuzz::nextRange(float* f, float min, float max) {
97 inline void Fuzz::nextRange(T* n, Min min, Max max) {
104 // Avoid misuse of nextRange
FuzzGradients.cpp 29 fuzz->nextRange(&count, 0, MAX_COUNT);
34 fuzz->nextRange(&m, 0, 2);
  /external/r8/src/main/java/com/android/tools/r8/bisect/
BisectState.java 154 private Range nextRange = null;
195 nextRange = new Range(data.get(data.size() - 1));
199 if (nextRange == null) {
204 assert nextRange.equals(new Range(0, 0));
211 assert nextRange.equals(new Range(0, indexMap.size()));
217 runs.add(new Run(result, nextRange));
218 System.out.println("Marked range " + nextRange + ": " + result);
219 nextRange = null;
230 if (nextRange.size() == 1) {
231 int index = nextRange.start
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 116 ClientRange nextRange = mClients.get(i);
117 if (range.mStartId <= nextRange.mStartId) {
119 if (!range.equals(nextRange)) {
121 if (range.mStartId == nextRange.mStartId
122 && range.mEndId > nextRange.mEndId) {
219 IntRange nextRange = null;
221 nextRange = mRanges.get(startIndex + 1);
222 if ((nextRange.mStartId - 1) <= endId) {
224 if (endId <= nextRange.mEndId) {
226 newRangeEndId = nextRange.mStartId - 1; // need to enable [3, 4
    [all...]
  /external/icu/icu4c/source/common/unicode/
usetiter.h 52 * while (it.nextRange()) {
83 * When iterating over ranges using <tt>nextRange()</tt>,
113 * <tt>nextRange()</tt> return false. This is a convenience
130 * <tt>nextRange()</tt> was called.
151 * <tt>isString()</tt> returned false and <tt>nextRange()</tt> was
185 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
206 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
213 UBool nextRange();
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 51 while (it.nextRange()) {
71 while (it.nextRange()) {
  /external/guava/guava/src/com/google/common/collect/
TreeRangeSet.java 735 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)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetIterator.java 30 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.nextRange();) {
58 * When iterating over ranges using <tt>nextRange()</tt>,
84 * <tt>nextRange()</tt> return false. This is a convenience
102 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
146 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
153 public boolean nextRange() {
213 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeMapIterator.java 38 * while (set.nextRange()) {
64 * When iterating over ranges using <tt>nextRange()</tt>,
95 * <tt>nextRange()</tt> return false. This is a convenience
113 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
154 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
161 public boolean nextRange() {
221 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
  /external/icu/icu4c/source/common/
usetiter.cpp 79 UBool UnicodeSetIterator::nextRange() {
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
trieset.cpp 52 while(iter.nextRange() && !iter.isString()) {
bitset.cpp 109 if(iter.nextRange() && !iter.isString()) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSetIterator.java 29 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.nextRange();) {
60 * When iterating over ranges using <tt>nextRange()</tt>,
89 * <tt>nextRange()</tt> return false. This is a convenience
108 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
153 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
161 public boolean nextRange() {
223 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMapIterator.java 37 * while (set.nextRange()) {
63 * When iterating over ranges using <tt>nextRange()</tt>,
94 * <tt>nextRange()</tt> return false. This is a convenience
112 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
153 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
160 public boolean nextRange() {
220 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
PageRangeUtils.java 132 PageRange nextRange = pageRanges[i + 1];
133 if (currentRange.getEnd() + 1 >= nextRange.getStart()) {
136 Math.max(currentRange.getEnd(), nextRange.getEnd()));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
LocaleDataTest.java 229 while (!existsInScript && iter.nextRange()) {
302 while (!existsInScript && iter.nextRange()) {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptData.java 161 while (it.nextRange()) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleDataTest.java 228 while (!existsInScript && iter.nextRange()) {
301 while (!existsInScript && iter.nextRange()) {
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 74 const Range *nextRange() {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetTest.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
UnicodeMapTest.java 403 logln("Comparing nextRange");
406 while (mi.nextRange()) {

Completed in 238 milliseconds

1 2 3 4