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

1 2 3

  /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 50 * while (it.nextRange()) {
81 * When iterating over ranges using <tt>nextRange()</tt>,
111 * <tt>nextRange()</tt> return false. This is a convenience
128 * <tt>nextRange()</tt> was called.
149 * <tt>isString()</tt> returned false and <tt>nextRange()</tt> was
183 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
204 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
211 UBool nextRange();
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 49 while (it.nextRange()) {
69 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 28 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.nextRange();) {
56 * When iterating over ranges using <tt>nextRange()</tt>,
82 * <tt>nextRange()</tt> return false. This is a convenience
100 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
144 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
151 public boolean nextRange() {
211 * 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 36 * while (set.nextRange()) {
62 * When iterating over ranges using <tt>nextRange()</tt>,
93 * <tt>nextRange()</tt> return false. This is a convenience
111 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
152 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
159 public boolean nextRange() {
219 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
Visitor.java 93 while(it.nextRange()) {
PrettyPrinter.java 125 for (UnicodeSetIterator it = new UnicodeSetIterator(uset); it.nextRange();) {
UnicodePropertySource.java 300 while (source.nextRange()) {
  /external/icu/icu4c/source/common/
usetiter.cpp 77 UBool UnicodeSetIterator::nextRange() {
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
trieset.cpp 48 while(iter.nextRange() && !iter.isString()) {
bitset.cpp 105 if(iter.nextRange() && !iter.isString()) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSetIterator.java 27 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.nextRange();) {
58 * When iterating over ranges using <tt>nextRange()</tt>,
87 * <tt>nextRange()</tt> return false. This is a convenience
106 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
151 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
159 public boolean nextRange() {
221 * 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 35 * while (set.nextRange()) {
61 * When iterating over ranges using <tt>nextRange()</tt>,
92 * <tt>nextRange()</tt> return false. This is a convenience
110 * calls to <tt>next()</tt> and <tt>nextRange()</tt> without
151 * <tt>next()</tt> and <tt>nextRange()</tt> without calling
158 public boolean nextRange() {
218 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
Visitor.java 92 while(it.nextRange()) {
PrettyPrinter.java 124 for (UnicodeSetIterator it = new UnicodeSetIterator(uset); it.nextRange();) {
UnicodePropertySource.java 299 while (source.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 199 while (!existsInScript && iter.nextRange()) {
271 while (!existsInScript && iter.nextRange()) {
TestUtilities.java 280 logln("Comparing nextRange");
283 while (mi.nextRange()) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleDataTest.java 195 while (!existsInScript && iter.nextRange()) {
267 while (!existsInScript && iter.nextRange()) {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptData.java 159 while (it.nextRange()) {
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 72 const Range *nextRange() {
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/
CheckSystemFonts.java 173 for (UnicodeMapIterator<String> it = new UnicodeMapIterator<String>(map); it.nextRange();) {
195 for (UnicodeSetIterator it = new UnicodeSetIterator(items); it.nextRange();) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetTest.java     [all...]

Completed in 2083 milliseconds

1 2 3