Searched refs:end (Results 1 - 25 of 917) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.cpp35 HeapWord* res_end = MIN2(end(), mr2.end());
46 if (mr2.is_empty()) return MemRegion(start(), end());
49 assert(((start() <= mr2.start()) && (end() >= mr2.start())) ||
50 ((mr2.start() <= start()) && (mr2.end() >= start())),
54 HeapWord* res_end = MAX2(end(), mr2.end());
74 if (mr2.end() <= start()) {
76 return MemRegion(start(), end());
78 if (mr2.start() <= start() && mr2.end() <
[all...]
H A DmemRegion.hpp49 MemRegion(HeapWord* start, HeapWord* end) : argument
50 _start(start), _word_size(pointer_delta(end, start)) {
51 assert(end >= start, "incorrect constructor arguments");
64 HeapWord* end() const { return _start + _word_size; } function in class:VALUE_OBJ_CLASS_SPEC
68 void set_end(HeapWord* end) { _word_size = pointer_delta(end, _start); } argument
74 return _start <= mr2._start && end() >= mr2.end();
77 return addr >= (void*)_start && addr < (void*)end();
82 (start() == mr2.start() && end()
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DPrintJob.java70 public abstract void end(); method in class:PrintJob
74 * @see #end
77 end();
H A DLinearGradientPaint.java38 * interpolation between each color. The user also specifies start and end
40 * and end.
61 * takes when it is filling the space outside the start and end points by
65 * colors between the start and end points.
81 * Point2D end = new Point2D.Float(50, 50);
85 * new LinearGradientPaint(start, end, dist, colors);
107 /** Gradient start and end points. */
108 private final Point2D start, end; field in class:LinearGradientPaint
118 * @param endX the X coordinate of the gradient axis end point
120 * @param endY the Y coordinate of the gradient axis end poin
209 LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors) argument
241 LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors, CycleMethod cycleMethod) argument
281 LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace, AffineTransform gradientTransform) argument
[all...]
/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAS_NS_ConversionUtils.h34 @end
38 @end
H A DNS_Java_ConversionUtils.h33 @end
/openjdk7/jdk/test/demo/jvmti/mtrace/
H A DJFrameCreateTime.java40 long start, end;
44 end = System.currentTimeMillis();
46 System.out.println("JFrame first creation took " + (end - start) + " ms");
50 end = System.currentTimeMillis();
52 System.out.println("JFrame second creation took " + (end - start) + " ms");
/openjdk7/jdk/src/share/classes/java/text/
H A DStringCharacterIterator.java56 private int end; field in class:StringCharacterIterator
57 // invariant: begin <= pos <= end
85 * @param end Index of the character following the last character
88 public StringCharacterIterator(String text, int begin, int end, int pos) { argument
93 if (begin < 0 || begin > end || end > text.length())
96 if (pos < begin || pos > end)
100 this.end = end;
118 this.end
[all...]
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DBasicLogEvent.java37 protected double end; field in class:BasicLogEvent
42 this.end = start;
51 return end;
54 public void setEnd(double end) { argument
55 this.end = end;
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCSDecoderMapping.java42 * every string has 0x10*(end-start+1) characters.
47 protected int end; field in class:DBCSDecoderMapping
52 int start, int end) {
56 this.end = end;
70 || ((byte2 < start) || (byte2 > end)))
73 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
51 DBCSDecoderMapping(short[] index1, String[] index2, int start, int end) argument
/openjdk7/jdk/src/share/classes/java/io/
H A DOptionalDataException.java29 * unread primitive data, or the end of data belonging to a serialized
39 * <li>An attempt was made to read past the end of data consumable by a
64 OptionalDataException(boolean end) { argument
66 eof = end;
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatchResult.java88 public int end(); method in interface:MatchResult
96 * the expression <i>m.</i><tt>end(0)</tt> is equivalent to
97 * <i>m.</i><tt>end()</tt>. </p>
114 public int end(int group); method in interface:MatchResult
121 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(),</tt>&nbsp;<i>m.</i><tt>end())</tt>
143 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(</tt><i>g</i><tt>),</tt>&nbsp;<i>m.</i><tt>end(</tt><i>g</i><tt>))</tt>
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleTextSequence.java45 * start and end indicies/offsets into a larger body of text that the
55 /** The end index of the text sequence */
66 * @param end the ending index of the span of text
71 public AccessibleTextSequence(int start, int end, String txt) { argument
73 endIndex = end;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCPopupMenu.h33 @end //implementationCPopupMenu : CMenu
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.hpp32 static void register_stub(const char* name, address start, address end);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DUtil.java43 int end = i + precision + 1;
44 return (end < s.length()) ? s.substring(0, end) : s;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DspaceDecorator.cpp43 if (v < end()) {
58 HeapWord* mangled_end = MIN2(top_for_allocations(), end());
63 check_mangled_unused_area(end());
78 MemRegion mangle_mr(top(), end());
87 gclog_or_tty->print("Mangling [0x%x to 0x%x)", mr.start(), mr.end());
99 // cause paging by touching the end of the space.
103 // being reshaped so skip the test if the end of the
105 if (end() > limit) return;
107 assert(top() == end() ||
110 (top_for_allocations() >= end()) ||
[all...]
H A DimmutableSpace.cpp34 HeapWord* end = mr.end(); local
36 assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
40 _end = end;
45 HeapWord* t = end();
54 while (p < end()) {
68 tty->print_cr(" [%#-6lx,%#-6lx)", bottom(), end());
75 HeapWord* t = end();
82 guarantee(p == end(), "end o
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DHeaderParser.java68 * range from "start" to "end-1"
70 public HeaderParser subsequence (int start, int end) { argument
71 if (start == 0 && end == nkeys) {
74 if (start < 0 || start >= end || end > nkeys)
75 throw new IllegalArgumentException ("invalid start or end");
79 System.arraycopy (tab, start, n.tab, 0, (end-start));
80 n.nkeys= (end-start);
89 int beg = 0, end = 0, i = 0;
93 while (end < le
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DSegment.java160 * position is off the end of the text.
177 * position is off the end of the text range.
182 int end = offset + count;
183 if (pos >= end) {
184 pos = end;
216 int end = offset + count;
217 if ((position < offset) || (position > end)) {
221 if ((pos != end) && (count != 0)) {
237 * Returns the end index of the text. This index is the index of the first
238 * character following the end o
281 subSequence(int start, int end) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpinnerDateModel.java35 * <code>start</code> and <code>end</code> and the size
39 * and <code>end</code> properties can be <code>null</code> to
77 * <code>start</code>, or <code>end</code> properties changes.
91 private Comparable start, end; field in class:SpinnerDateModel
122 * between <code>start</code> and <code>end</code>. The
131 * The <code>start</code> and <code>end</code> parameters can be
135 * <code>start</code> and <code>end</code> are specified and
143 * @param end the last date in the sequence or <code>null</code>
167 * false: <code>(start &lt;= value &lt;= end)</code>.
175 public SpinnerDateModel(Date value, Comparable start, Comparable end, in argument
284 setEnd(Comparable end) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharSequence.java85 * ends with the <code>char</code> value at index <tt>end - 1</tt>. The length
87 * returned sequence is <tt>end - start</tt>, so if <tt>start == end</tt>
91 * @param end the end index, exclusive
96 * if <tt>start</tt> or <tt>end</tt> are negative,
97 * if <tt>end</tt> is greater than <tt>length()</tt>,
98 * or if <tt>start</tt> is greater than <tt>end</tt>
100 CharSequence subSequence(int start, int end); argument
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DNativeObjectLifecycleManager.java33 abstract void end(final long ptr); method in class:NativeObjectLifecycleManager
39 @Override void end(final long ptr) { releaseNativeObject(ptr); } method in class:NativeObjectLifecycleManager.CFRetainRelease
46 @Override void end(final long ptr) { freeNativeObject(ptr); } method in class:NativeObjectLifecycleManager.Free
52 @Override void end(final long ptr) { } method in class:NativeObjectLifecycleManager.Nothing
/openjdk7/hotspot/test/compiler/6982370/
H A DTest6982370.java52 int end = start + ((i >> 4) & 7);
55 Arrays.fill(a, start, end, value);
57 for (int j = start; j < end; j++) {
71 int end = start + ((i >> 4) & 7);
74 Arrays.fill(a, start, end, value);
76 for (int j = start; j < end; j++) {
89 int end = start + ((i >> 4) & 7);
91 Arrays.fill(a, start, end, value);
93 for (int j = start; j < end; j++) {
106 int end
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DOptionalDataException.java60 OptionalDataException(boolean end) { argument
62 eof = end;

Completed in 74 milliseconds

1234567891011>>