Searched defs:end (Results 26 - 50 of 386) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DRing.java44 * Use {@link #begin()} and {@link #end(Ring)} to start/end a ring scope.
128 public static void end(Ring old) { method in class:Ring
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DSharedInputStream.java63 * up to <code>end</code> (exclusive). <code>start</code> must be
64 * non-negative. If <code>end</code> is -1, the new stream ends
69 * @param end the ending position + 1
72 public InputStream newStream(long start, long end); argument
77 public void writeTo(long start,long end, OutputStream out); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DHandler.java77 Label end; field in class:Handler
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryExceptionHandler.java42 BinaryExceptionHandler(int start, int end, argument
45 endPC = end;
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DReferencesTest.java119 private static void loadBundles(int start, int end) throws Exception { argument
120 for (int i = start; i < end; i++) {
135 private static int countLoaders(int start, int end) { argument
137 for (int i = start; i < end; i++) {
/openjdk7/jdk/test/sun/nio/cs/
H A DISCIITest.java38 int end,
45 for (int i = start; i <= end; i++ ) {
71 int end,
77 for (int i = start; i <= end; i++ ) {
97 private static void checkRange(int start, int end, argument
105 for (int i=start; i <= end; i++ ) {
37 mapEquiv(int start, int end, String testName) argument
70 checkUnmapped(int start, int end, String testName) argument
/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
H A DDoubleByteDecoder.java45 * every string has 0x10*(end-start+1) characters.
50 protected int end; field in class:DoubleByteDecoder
57 int start, int end ) {
62 this.end = end;
176 || ((byte2 < start) || (byte2 > end)))
179 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
/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/javax/swing/undo/
H A DStateEdit.java46 * // "end" the edit when you are done modifying the object
47 * newEdit.end();
135 public void end() { method in class:StateEdit
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DListPeer.java63 * Deletes items from the list. All items from start to end should are
64 * deleted, including the item at the start and end indices.
67 * @param end the last item to be deleted
69 void delItems(int start, int end); argument
/openjdk7/jdk/src/share/classes/java/io/
H A DStringWriter.java151 * end)</tt> when <tt>csq</tt> is not <tt>null</tt>, behaves in
155 * out.write(csq.subSequence(start, end).toString()) </pre>
166 * @param end
173 * If <tt>start</tt> or <tt>end</tt> are negative, <tt>start</tt>
174 * is greater than <tt>end</tt>, or <tt>end</tt> is greater than
179 public StringWriter append(CharSequence csq, int start, int end) { argument
181 write(cs.subSequence(start, end).toString());
H A DWriter.java236 * end)</tt> when <tt>csq</tt> is not <tt>null</tt> behaves in exactly the
240 * out.write(csq.subSequence(start, end).toString()) </pre>
251 * @param end
258 * If <tt>start</tt> or <tt>end</tt> are negative, <tt>start</tt>
259 * is greater than <tt>end</tt>, or <tt>end</tt> is greater than
267 public Writer append(CharSequence csq, int start, int end) throws IOException { argument
269 write(cs.subSequence(start, end).toString());
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java45 * class must invoke the {@link #begin begin} and {@link #end end} methods
47 * indefinitely. In order to ensure that the {@link #end end} method is always
58 * end(completed);
61 * <p> The <tt>completed</tt> argument to the {@link #end end} method tells
74 * {@link #end end} method will throw the appropriate exception.
150 * <p> This method should be invoked in tandem with the {@link #end en
195 protected final void end(boolean completed) method in class:AbstractInterruptibleChannel
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.cpp41 HeapWord* end = lab.end(); local
44 set_end(end);
59 end = end - filler_header_size;
60 set_end(end);
67 assert(this->top() <= this->end(), "pointers out of order");
74 assert(top() <= end(), "pointers out of order");
83 HeapWord* tlab_end = end() + filler_header_size;
123 assert(top() <= end(), "pointer
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DspaceDecorator.hpp93 // Methods for top and end that delegate to the specific
96 virtual HeapWord* end() const = 0;
107 // Mangle all the unused region [top, end)
131 HeapWord* end() const { return _sp->end(); } function in class:GenSpaceMangler
144 HeapWord* end() const { return _sp->end(); } function in class:MutableSpaceMangler
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DASCIIUtility.java46 * from <code>start</code> till, but not including <code>end</code>. <p>
50 public static int parseInt(byte[] b, int start, int end, int radix) argument
62 if (end > start) {
71 if (i < end) {
75 "illegal number: " + toString(b, start, end)
81 while (i < end) {
113 * till, but not including <code>end</code>. <p>
115 public static String toString(byte[] b, int start, int end) { argument
116 int size = end - start;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DASCIIUtility.java45 * from <code>start</code> till, but not including <code>end</code>. <p>
49 public static int parseInt(byte[] b, int start, int end, int radix) argument
61 if (end > start) {
70 if (i < end) {
74 "illegal number: " + toString(b, start, end)
80 while (i < end) {
112 * till, but not including <code>end</code>. <p>
114 public static String toString(byte[] b, int start, int end) { argument
115 int size = end - start;
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c57 char *end; local
66 end = &begin[strlen(begin)];
67 while (end > begin && isspace(end[-1])) {
68 end--;
71 if (begin == end) {
78 value_len = (size_t)(end - begin);
/openjdk7/jdk/src/share/native/java/io/
H A DFileInputStream.c78 jlong end = jlong_zero; local
86 } else if ((end = IO_Lseek(fd, toSkip, (jint)SEEK_CUR)) == -1) {
89 return (end - cur);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DClassDefinitionTables.h80 TTGlyphID end; member in struct:ClassRangeRecord
/openjdk7/jdk/test/java/util/zip/
H A DConstructDeflaterInput.java38 public void end() { method in class:ConstructDeflaterInput.MyDeflater
39 fail("MyDeflater had end() called");
40 super.end();
H A DConstructInflaterOutput.java38 public void end() { method in class:ConstructInflaterOutput.MyInflater
39 fail("MyInflater had end() called");
40 super.end();
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DNTLMTest.java127 static void handleConnection(Socket s, String[] resp, int start, int end) { argument
131 for (int i=start; i<end; i++) {

Completed in 226 milliseconds

1234567891011>>