Searched refs:Range (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/ranges/
H A DDocumentRange.java45 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
53 * @return The initial state of the Range returned from this method is
56 * Range returned can only be used to select content associated with
60 public Range createRange();
H A DRange.java49 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
52 public interface Range { interface
54 * Node within which the Range begins
63 * Offset within the starting node of the Range.
72 * Node within which the Range ends
81 * Offset within the ending node of the Range.
90 * TRUE if the Range is collapsed
99 * The deepest common ancestor container of the Range's two
109 * Sets the attributes describing the start of the Range
[all...]
/openjdk7/jdk/test/java/awt/font/NumericShaper/
H A DEqualsTest.java40 EnumSet.of(Range.ARABIC, Range.TAMIL),
41 Range.TAMIL);
43 EnumSet.of(Range.ARABIC, Range.TAMIL),
44 Range.TAMIL);
46 EnumSet.of(Range.ARABIC, Range.TAMIL),
47 Range.ARABIC);
H A DShapingTest.java53 Range.ARABIC, Range.TAMIL, Range.ETHIOPIC),
54 Range.EUROPEAN);
77 checkResult("Range.ARABIC, Range.TAMIL, Range.ETHIOPIC",
97 ns = getContextualShaper(EnumSet.of(Range.ARABIC));
98 checkResult("Range.ARABIC", ns, given, expected_ARABIC);
103 ns = getContextualShaper(EnumSet.of(Range
[all...]
H A DEasternArabicTest.java58 ns_new = getContextualShaper(EnumSet.of(Range.THAI,
59 Range.TAMIL,
60 Range.ETHIOPIC,
61 Range.EASTERN_ARABIC,
62 Range.ARABIC,
63 Range.LAO),
64 Range.EUROPEAN);
H A DMTTest.java48 ns1 = getContextualShaper(EnumSet.of(Range.EASTERN_ARABIC, Range.THAI),
49 Range.EUROPEAN);
50 ns2 = getContextualShaper(EnumSet.of(Range.ARABIC, Range.THAI),
51 Range.EUROPEAN);
/openjdk7/jdk/src/share/sample/forkjoin/mergesort/
H A DMergeDemo.java62 private static class Range { class in class:MergeDemo
67 private Range(int start, int step, int iterations) { method in class:MergeDemo.Range
79 public static Range parse(String[] args, int start) {
83 return new Range(parseInt(args[start]), parseInt(args[start + 1]), parseInt(args[start + 2]));
108 private final Range sizes;
109 private final Range parallelism;
111 private final static Configuration defaultConfig = new Configuration(new Range(20000, 20000, 10),
112 new Range(2, 2, 10));
114 private Configuration(Range sizes, Range parallelis
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java82 * enum-based ones, such as {@link NumericShaper.Range#ARABIC}.
88 * or creating a {@code Set} with the {@link NumericShaper.Range}
91 * EnumSet.of(NumericShaper.Scirpt.ARABIC, NumericShaper.Range.TAMIL)
97 * mapping is possible, such as {@code NumericShaper.Range.ARABIC}
99 * values are specified, such as {@code NumericShaper.Range.BALINESE},
110 * <th class="TableHeadingColor">Unicode Range</th>
121 * <td>{@link NumericShaper.Range#ARABIC}<br>
122 * {@link NumericShaper.Range#EASTERN_ARABIC}</td>
123 * <td>{@link NumericShaper.Range#EASTERN_ARABIC}</td>
127 * <td>{@link NumericShaper.Range#TAI_THAM_HOR
162 public static enum Range { enum in class:NumericShaper
351 private Range(int base, int start, int end) { method in class:NumericShaper.Range
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp43 class Range;
466 class Range : public CompilationResourceObj { class in inherits:CompilationResourceObj
470 static Range* _end; // sentinel (from == to == max_jint)
474 Range* _next; // linear list of Ranges
477 bool intersects(Range* r) const { return intersects_at(r) != -1; }
478 int intersects_at(Range* r) const;
481 Range(int from, int to, Range* next);
484 static Range* end() { return _end; }
488 Range* nex
[all...]
H A Dc1_LinearScan.cpp963 Range* r = interval->first();
3218 if (i1->first() == Range::end()) {
3219 tty->print_cr("Interval %d has no Range", i1->reg_num()); i1->print(); tty->cr();
3223 for (Range* r = i1->first(); r != Range::end(); r = r->next()) {
4006 // **** Implementation of Range *************************************
4008 Range::Range(int from, int to, Range* next) : function in class:Range
4016 Range* Rang
[all...]
/openjdk7/jdk/test/java/util/EnumSet/
H A DRange.java27 * @summary Range static factory is broken in Regular and Jumbo enum set
33 public class Range { class
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentImpl.java43 import org.w3c.dom.ranges.Range;
298 public Range createRange() {
304 Range range = new RangeImpl(this);
312 /** Not a client function. Called by Range.detach(),
313 * so a Range can remove itself from the list of
316 void removeRange(Range range) {
H A DRangeImpl.java29 import org.w3c.dom.ranges.Range;
33 /** The RangeImpl class implements the org.w3c.dom.range.Range interface.
40 public class RangeImpl implements Range {
61 // Was the Node inserted from the Range or the Document
65 * because it registers the Range with the document, so it can
184 // If one boundary-point of a Range is set to have a root container
186 // than the current one for the Range, the Range should be collapsed to
188 // The start position of a Range should never be after the end position.
221 // If one boundary-point of a Range i
[all...]

Completed in 61 milliseconds