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

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DPrintJob.java78 public abstract void end(); method in class:PrintJob
91 * @see #end
95 end();
/openjdk10/hotspot/src/share/vm/memory/
H A DmemRegion.cpp37 HeapWord* res_end = MIN2(end(), mr2.end());
48 if (mr2.is_empty()) return MemRegion(start(), end());
51 assert(((start() <= mr2.start()) && (end() >= mr2.start())) ||
52 ((mr2.start() <= start()) && (mr2.end() >= start())),
56 HeapWord* res_end = MAX2(end(), mr2.end());
76 if (mr2.end() <= start()) {
78 return MemRegion(start(), end());
80 if (mr2.start() <= start() && mr2.end() <
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-shape.cc49 parse_space (const char **pp, const char *end) argument
51 while (*pp < end && ISSPACE (**pp))
57 parse_char (const char **pp, const char *end, char c) argument
59 parse_space (pp, end);
61 if (*pp == end || **pp != c)
69 parse_uint (const char **pp, const char *end, unsigned int *pv) argument
72 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp));
93 parse_bool (const char **pp, const char *end, unsigned int *pv) argument
95 parse_space (pp, end);
98 while (*pp < end
113 parse_feature_value_prefix(const char **pp, const char *end, hb_feature_t *feature) argument
126 parse_feature_tag(const char **pp, const char *end, hb_feature_t *feature) argument
162 parse_feature_indices(const char **pp, const char *end, hb_feature_t *feature) argument
187 parse_feature_value_postfix(const char **pp, const char *end, hb_feature_t *feature) argument
200 parse_one_feature(const char **pp, const char *end, hb_feature_t *feature) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DStringCharacterIterator.java57 private int end; field in class:StringCharacterIterator
58 // invariant: begin <= pos <= end
88 * @param end Index of the character following the last character
91 public StringCharacterIterator(String text, int begin, int end, int pos) { argument
96 if (begin < 0 || begin > end || end > text.length())
99 if (pos < begin || pos > end)
103 this.end = end;
121 this.end
[all...]
/openjdk10/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DBasicLogEvent.java46 * The event's end time.
48 protected double end; field in class:BasicLogEvent
57 this.end = start;
66 return end;
69 public final void setEnd(double end) { argument
70 this.end = end;
/openjdk10/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
/openjdk10/jdk/src/java.desktop/macosx/native/libawt_lwawt/awt/
H A DCPopupMenu.h33 @end //implementationCPopupMenu : CMenu
/openjdk10/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleTextSequence.java31 * the requested triplet of a {@code String}, and the start and end
45 * The end index of the text sequence.
58 * @param end the ending index of the span of text
62 public AccessibleTextSequence(int start, int end, String txt) { argument
64 endIndex = end;
/openjdk10/jdk/src/java.base/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;
/openjdk10/jdk/src/java.base/share/classes/java/util/regex/
H A DMatchResult.java88 public int end(); method in interface:MatchResult
96 * the expression <i>m.</i>{@code end(0)} is equivalent to
97 * <i>m.</i>{@code end()}. </p>
114 public int end(int group); method in interface:MatchResult
121 * <i>s.</i>{@code substring(}<i>m.</i>{@code start(),}&nbsp;<i>m.</i>{@code end())}
144 * ),}&nbsp;<i>m.</i>{@code end(}<i>g</i>{@code ))}
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DHandler.java76 Label end; field in class:Handler
101 * Removes the range between start and end from the given exception
108 * @param end
109 * the end of the range to be removed. Maybe null.
110 * @return the exception handler list with the start-end range removed.
112 static Handler remove(Handler h, Label start, Label end) { argument
116 h.next = remove(h.next, start, end);
119 int hend = h.end.position;
121 int e = end == null ? Integer.MAX_VALUE : end
[all...]
/openjdk10/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;
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DMatcherFactory.java24 public abstract Matcher create(Regex regex, char[] chars, int p, int end); argument
28 public Matcher create(final Regex regex, final char[] chars, final int p, final int end) {
29 return new ByteCodeMachine(regex, chars, p, end);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DLocalVariableGen.java42 private InstructionHandle end; field in class:LocalVariableGen
54 * @param end until where the instruction is valid (null means to the end)
57 final InstructionHandle start, final InstructionHandle end) {
65 setEnd(end);
75 * Note that for local variables whose scope end at the last instruction of
78 * at first index beyond the end of the code are valid.
85 if ((start != null) && (end != null)) {
87 length = end.getPosition() - start_pc;
88 if (end
56 LocalVariableGen(final int index, final String name, final Type type, final InstructionHandle start, final InstructionHandle end) argument
139 setEnd(final InstructionHandle end) argument
[all...]
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DspaceDecorator.cpp44 if (v < end()) {
59 HeapWord* mangled_end = MIN2(top_for_allocations(), end());
64 check_mangled_unused_area(end());
79 MemRegion mangle_mr(top(), end());
94 // cause paging by touching the end of the space.
98 // being reshaped so skip the test if the end of the
100 if (end() > limit) return;
102 assert(top() == end() ||
105 (top_for_allocations() >= end()) ||
108 assert(top() == end() ||
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/ast/
H A DStringNode.java34 public int end; field in class:StringNode
42 public StringNode(final char[] chars, final int p, final int end) { argument
45 this.end = end;
51 chars[end++] = c;
58 final int len = (end - p) + ahead;
61 System.arraycopy(chars, p, tmp, 0, end - p);
70 final int len = (end - p) + ahead;
72 System.arraycopy(chars, p, tmp, 0, end - p);
74 end
129 set(final char[] chars, final int p, final int end) argument
[all...]
/openjdk10/jdk/src/java.base/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...]
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHeaderParser.java65 * values) range from "start" to "end-1"
67 public HeaderParser subsequence(int start, int end) { argument
68 if (start == 0 && end == nkeys) {
71 if (start < 0 || start >= end || end > nkeys) {
72 throw new IllegalArgumentException("invalid start or end");
77 System.arraycopy (tab, start, n.tab, 0, (end-start));
78 n.nkeys= (end-start);
87 int beg = 0, end = 0, i = 0;
91 while (end < le
[all...]
/openjdk10/jdk/src/java.desktop/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...]
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DPipeInputStream.java40 private int end; field in class:PipeInputStream
45 if (start == end && !closed) {
48 while (start == end) {
82 while (totalRead < len && start != end) {
97 int newEnd = (end + 1) % buffer.length;
101 int rightPart = (end > start ? end : buffer.length) - start;
102 int leftPart = end > start ? 0 : start - 1;
107 end = rightPart + leftPart;
108 newEnd = end
[all...]
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dicache_ppc.cpp32 address end = start + (unsigned int)lines*ICache::line_size; local
33 assert(start <= end, "flush_icache parms");
36 for (address a = start; a < end; a += ICache::line_size) {
52 for (address a = start; a < end; a += ICache::line_size) {
/openjdk10/hotspot/test/compiler/c1/
H A DTestPinnedIntrinsics.java40 long end = System.nanoTime();
41 checkNanoTime(end - start);
52 long end = System.currentTimeMillis();
53 checkCurrentTimeMillis(end - start);
/openjdk10/jdk/src/java.desktop/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.
92 private Comparable<Date> start, end; field in class:SpinnerDateModel
123 * between <code>start</code> and <code>end</code>. The
132 * The <code>start</code> and <code>end</code> parameters can be
136 * <code>start</code> and <code>end</code> are specified and
144 * @param end the last date in the sequence or <code>null</code>
168 * false: <code>(start &lt;= value &lt;= end)</code>.
176 public SpinnerDateModel(Date value, Comparable<Date> start, Comparable<Date> end, in argument
285 setEnd(Comparable<Date> end) argument
[all...]
/openjdk10/hotspot/src/share/vm/prims/
H A Dforte.hpp32 static void register_stub(const char* name, address start, address end)
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DimmutableSpace.cpp33 HeapWord* end = mr.end(); local
35 assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
39 _end = end;
44 HeapWord* t = end();
53 while (p < end()) {
67 tty->print_cr(" [" INTPTR_FORMAT_W(#-6) "," INTPTR_FORMAT_W(#-6) ")", p2i(bottom()), p2i(end()));
74 HeapWord* t = end();
81 guarantee(p == end(), "end o
[all...]

Completed in 150 milliseconds

1234567891011>>