Searched defs:end (Results 101 - 125 of 386) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DBalancedDTDGrammar.java187 * The end of a group for mixed or children content models.
201 * The end of the DTD.
233 private int addContentSpecNodes(int begin, int end) { argument
234 if (begin == end) {
237 final int middle = (begin + end) >>> 1;
240 addContentSpecNodes(middle + 1, end));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDurationDV.java108 int end = indexOf (str, start, endDate, 'Y');
109 if ( end!=-1 ) {
116 date.year=negate * parseInt(str,start,end);
117 start = end+1;
121 end = indexOf (str, start, endDate, 'M');
122 if ( end!=-1 ) {
129 date.month=negate * parseInt(str,start,end);
130 start = end+1;
134 end = indexOf (str, start, endDate, 'D');
135 if ( end!
332 parseSecond(String buffer, int start, int end) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java53 static final String substring(CharacterIterator iterator, int begin, int end) { argument
54 char[] src = new char[end-begin];
149 if (ch == '#') { // Skips chracters between '#' and a line end.
/openjdk7/corba/src/share/classes/javax/transaction/xa/
H A DXAResource.java49 * <code>end</code> method to disassociate the transaction from
52 * work performed on its data between the start and end method invocations.
108 void end(Xid xid, int flags) throws XAException; method in interface:XAResource
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DNativeSignatureIterator.java72 public void doObject(int begin, int end) { passObject(); jni_offset++; offset++; } argument
73 public void doArray (int begin, int end) { passObject(); jni_offset++; offset++; } argument
H A DSignatureIterator.java200 // Object types (begin indexes the first character of the entry, end
202 public abstract void doObject(int begin, int end); argument
203 public abstract void doArray (int begin, int end); argument
/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/undo/
H A DUndoManager.java93 * significant edit (or the end of the list). Continuing with the previous
100 * removing all edits from the index of the next edit to the end of
117 * Once <code>end</code> has been invoked on an <code>UndoManager</code>
271 * ({@code end} has been invoked)
273 * @see #end
278 if (!inProgress) throw new RuntimeException("Attempt to call UndoManager.setLimit() after UndoManager.end() has been called");
394 * Undoes the appropriate edits. If <code>end</code> has been
403 * @see CompoundEdit#end
420 * Returns true if edits may be undone. If <code>end</code> has
439 * Redoes the appropriate edits. If <code>end</cod
529 public synchronized void end() { method in class:UndoManager
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DStringBuilder.java43 * <code>append</code> method always adds these characters at the end
190 public StringBuilder append(CharSequence s, int start, int end) { argument
191 super.append(s, start, end);
249 public StringBuilder delete(int start, int end) { argument
250 super.delete(start, end);
265 public StringBuilder replace(int start, int end, String str) { argument
266 super.replace(start, end, str);
318 int start, int end)
320 super.insert(dstOffset, s, start, end);
317 insert(int dstOffset, CharSequence s, int start, int end) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DFieldPosition.java46 * <li>By an integer constant, whose names typically end with
76 * Input: Desired field to determine start and end offsets for.
100 * identified by constants, whose names typically end with _FIELD,
189 * Sets the end index. For use by subclasses of Format.
199 * field the FieldPosition is associated with, the begin/end will be
273 * An implementation of FieldDelegate that will adjust the begin/end
280 * is true, and <code>formatted</code> is invoked, the begin/end
286 int end, StringBuffer buffer) {
289 setEndIndex(end);
290 encounteredField = (start != end);
285 formatted(Format.Field attr, Object value, int start, int end, StringBuffer buffer) argument
294 formatted(int fieldID, Format.Field attr, Object value, int start, int end, StringBuffer buffer) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DInflater.java58 * decompresser.end();
221 * Returns true if the end of the compressed data stream has been
223 * @return true if the end of the compressed data stream has been
368 public void end() { method in class:Inflater
373 end(addr);
383 end();
406 private native static void end(long addr); method in class:Inflater
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java160 * of "rdns" in the range [beg,end)) and, optionally
164 // private LdapName(String name, List<Rdn> rdns, int beg, int end) {
166 private LdapName(String name, ArrayList rdns, int beg, int end) { argument
168 // this.rdns = rdns.subList(beg, end);
170 List sList = rdns.subList(beg, end);
373 private boolean doesListMatch(int beg, int end, List rdns) { argument
374 for (int i = beg; i < end; i++) {
384 * Returns true if components [beg,end) match the components of "n".
387 * The following must hold: end - beg == n.size().
389 private boolean matches(int beg, int end, Nam argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.inline.hpp130 HeapWord* end = start + word_size; local
131 assert(containing_hr->is_in(end - 1), "it should also contain end - 1");
133 MemRegion mr(start, end);
H A Dg1MMUTracker.cpp78 void G1MMUTrackerQueue::add_pause(double start, double end, bool gc_thread) { argument
82 double duration = end - start;
84 remove_expired_entries(end);
107 _array[_head_index] = G1MMUTrackerQueueElem(start, end);
H A Dg1MarkSweep.cpp200 // fail. At the end of the GC, the orginal mark word values
220 HeapWord* end = hr->end(); local
231 _mrbs->clear(MemRegion(hr->compaction_top(), end));
244 // at the end of the GC, so no point in updating those values here.
268 _mrbs->clear(MemRegion(hr->compaction_top(), hr->end()));
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparMarkBitMap.cpp150 assert(tmp_end < end_bit, "missing end bit");
258 const idx_t* const end = (const idx_t*)_virtual_space->committed_high_addr(); local
259 for (const idx_t* p = beg; p < end; ++p) {
H A DpsMarkSweepDecorator.cpp113 HeapWord* compact_end = dest->space()->end();
120 HeapWord* first_dead = space()->end(); /* The first dead object. */
152 compact_end = dest->space()->end();
177 assert(compact_top <= dest->space()->end(),
184 HeapWord* end = q; local
186 /* prefetch beyond end */
187 Prefetch::write(end, interval);
188 end += oop(end)->size();
189 } while (end <
312 HeapWord* end = _first_dead; local
372 HeapWord* const end = _first_dead; local
[all...]
H A DpsPromotionLAB.hpp71 HeapWord* end() const { return _end; } function in class:PSPromotionLAB
87 size_t capacity() const { return byte_size(bottom(), end()); }
89 size_t free() const { return byte_size(top(), end()); }
103 if (new_top > obj && new_top <= end()) {
136 if (new_top > obj && new_top <= end()) {
/openjdk7/hotspot/src/share/vm/memory/
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/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp198 julong* end = ((julong*)tohw) + aligned_count - 1; local
199 while (to <= end) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWTextAreaPeer.java133 final int end) {
141 getDelegate().getView().replaceRange(text, start, end);
132 replaceRange(final String text, final int start, final int end) argument
/openjdk7/jdk/src/share/bin/
H A Dversion_comp.c220 char *end; local
222 if ((end = JLI_StrChr(element, '&')) != NULL)
223 *end = '\0';
226 if (end != NULL)
227 element = end + 1;
228 } while (end != NULL);
243 char *end; local
246 if ((end = JLI_StrChr(vs, ' ')) != NULL)
247 *end = '\0';
252 if (end !
319 char *end; local
341 char *end; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dvectornode.cpp203 // [Start, end) half-open range defining which operands are vectors
204 void VectorNode::vector_operands(Node* n, uint* start, uint* end) { argument
212 *end = 0; // no vector operands
219 *end = MemNode::ValueIn + 1; // 1 vector operand
225 *end = 2; // 1 vector operand
235 *end = 3; // 2 vector operands
239 *end = n->req();
243 *end = n->req(); // default is all operands
/openjdk7/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.hpp51 void set_end(address end) { argument
52 assert(_begin <= end, "begin & end not properly ordered");
53 _end = end;
58 assert(_end == NULL || begin <= _end, "begin & end not properly ordered");
85 address end() const { return _end; } function in class:StubCodeDesc
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp190 template <MEMFLAGS F> void BasicHashtable<F>::copy_table(char** top, char* end) { argument
202 if (*top + entry_size() > end) {
257 template <MEMFLAGS F> void BasicHashtable<F>::copy_buckets(char** top, char* end) { argument
265 if (*top + len > end) {

Completed in 102 milliseconds

1234567891011>>