/openjdk7/hotspot/src/share/vm/memory/ |
H A D | memRegion.cpp | 35 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 D | memRegion.hpp | 49 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 D | PrintJob.java | 70 public abstract void end(); method in class:PrintJob 74 * @see #end 77 end();
|
H A D | LinearGradientPaint.java | 38 * 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 D | AS_NS_ConversionUtils.h | 34 @end 38 @end
|
H A D | NS_Java_ConversionUtils.h | 33 @end
|
/openjdk7/jdk/test/demo/jvmti/mtrace/ |
H A D | JFrameCreateTime.java | 40 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 D | StringCharacterIterator.java | 56 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 D | BasicLogEvent.java | 37 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 D | DBCSDecoderMapping.java | 42 * 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 D | OptionalDataException.java | 29 * 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 D | MatchResult.java | 88 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> <i>m.</i><tt>end())</tt> 143 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(</tt><i>g</i><tt>),</tt> <i>m.</i><tt>end(</tt><i>g</i><tt>))</tt>
|
/openjdk7/jdk/src/share/classes/javax/accessibility/ |
H A D | AccessibleTextSequence.java | 45 * 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 D | CPopupMenu.h | 33 @end //implementationCPopupMenu : CMenu
|
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | forte.hpp | 32 static void register_stub(const char* name, address start, address end);
|
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/ |
H A D | Util.java | 43 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 D | spaceDecorator.cpp | 43 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 D | immutableSpace.cpp | 34 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 D | HeaderParser.java | 68 * 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 D | Segment.java | 160 * 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 D | SpinnerDateModel.java | 35 * <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 <= value <= 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 D | CharSequence.java | 85 * 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 D | NativeObjectLifecycleManager.java | 33 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 D | Test6982370.java | 52 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 D | OptionalDataException.java | 60 OptionalDataException(boolean end) { argument 62 eof = end;
|