Searched defs:range (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DEnumSet.java271 * Creates an enum set containing all the elements within the range defined
276 * the element used to define the beginning of the range.
278 * the element used to define the end of the range.
279 * @return an enum set with elements in the range from start to end.
285 public static <E extends Enum<E>> EnumSet<E> range(E start, E end) { method in class:EnumSet
/libcore/luni/src/main/java/java/text/
H A DAttributedString.java154 private boolean inRange(Range range) { argument
155 if (!(range.value instanceof Annotation)) {
158 return range.start >= begin && range.start < end
159 && range.end > begin && range.end <= end;
165 Range range = it.next();
166 if (range.start >= begin && range.start < end) {
167 return !(range
[all...]
/libcore/luni/src/main/java/java/awt/font/
H A DNumericShaper.java38 * The Constant EUROPEAN indicates the latin and extended range,
43 /** The Constant ARABIC indicates the ARABIC range and decimal base. */
47 * The Constant EASTERN_ARABIC indicates the ARABIC range and
53 * The Constant DEVANAGARI indicates the DEVANAGARI range and
58 /** The Constant BENGALI indicates the BENGALI range and decimal base. */
61 /** The Constant GURMUKHI indicates the GURMUKHI range and decimal base. */
64 /** The Constant GUJARATI indicates the GUJARATI range and decimal base. */
67 /** The Constant ORIYA indicates the ORIYA range and decimal base. */
70 /** The Constant TAMIL indicates the TAMIL range and decimal base. */
73 /** The Constant TELUGU indicates the TELUGU range an
463 getIndexFromRange(int range) argument
[all...]

Completed in 545 milliseconds