Searched defs:start (Results 501 - 525 of 865) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/java/text/
H A DBidi.java53 * by indexing to get the start, limit, and level of a run. The level represents
144 * @param textStart the index into the text array of the start of the paragraph.
147 * @param embStart the index into the embedding array of the start of the paragraph.
179 * @param lineStart the offset from the start of the paragraph to the start of the line.
180 * @param lineLimit the offset from the start of the paragraph to the limit of the line.
266 * Return the index of the character at the start of the nth logical run in this line, as
267 * an offset from the start of the line.
269 * @return the start of the run
277 * an offset from the start o
297 requiresBidi(char[] text, int start, int limit) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java203 * elements from index {@code lo}, inclusive, to {@code start},
209 * @param start the index of the first element in the range that is
210 * not already known to be sorted ({@code lo <= start <= hi})
213 private static void binarySort(Object[] a, int lo, int hi, int start) { argument
214 assert lo <= start && start <= hi;
215 if (start == lo)
216 start++;
217 for ( ; start < hi; start
[all...]
H A DTimSort.java235 * elements from index {@code lo}, inclusive, to {@code start},
241 * @param start the index of the first element in the range that is
242 * not already known to be sorted ({@code lo <= start <= hi})
246 private static <T> void binarySort(T[] a, int lo, int hi, int start, argument
248 assert lo <= start && start <= hi;
249 if (start == lo)
250 start++;
251 for ( ; start < hi; start
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.java71 * <p> The explicit state of a matcher includes the start and end indices of
72 * the most recent successful match. It also includes the start and end
332 * Returns the start index of the previous match. </p>
340 public int start() { method in class:Matcher
347 * Returns the start index of the subsequence captured by the given group
352 * the expression <i>m.</i><tt>start(0)</tt> is equivalent to
353 * <i>m.</i><tt>start()</tt>. </p>
370 public int start(int group) { method in class:Matcher
430 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(),</tt>&nbsp;<i>m.</i><tt>end())</tt>
454 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(</t
613 find(int start) argument
985 region(int start, int end) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DImmutableDescriptor.java284 private static int findNonEmpty(Descriptor[] ds, int start) { argument
285 for (int i = start; i < ds.length; i++) {
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DGaugeMonitor.java225 public synchronized void start() { method in class:GaugeMonitor
228 "start", "the monitor is already active");
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java124 * for some reason or if it is inevitable that its {@link #start()
125 * start} method will fail.
158 * for some reason or if it is inevitable that its {@link #start()
159 * start} method will fail.
196 * for some reason or if it is inevitable that its {@link #start()
197 * start} method will fail.
199 * @see #start
219 final String msg = "URL path must be empty or start with " +
342 public synchronized void start() throws IOException { method in class:RMIConnectorServer
346 if (tracing) logger.trace("start", "alread
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.inline.hpp86 HeapWord* start = mr.start(); local
92 assert(hr == g1h->heap_region_containing(start), "sanity");
100 BitMap::idx_t start_idx = card_bitmap_index_for(start);
131 HeapWord* addr = mr.start();
245 HeapWord* start_addr = MAX2(startWord(), mr.start());
249 // Right-open interval [start-offset, end-offset).
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionManager.cpp158 // We set the old lab's start array.
262 int start, int end) {
263 assert(start <= end, "invariant");
265 T* p = base + start;
284 int start; local
288 start = end - _array_chunk_size;
289 assert(start > 0, "invariant");
290 arrayOop(old)->set_length(start);
295 start = 0;
301 process_array_chunk_work<narrowOop>(obj, start, en
260 process_array_chunk_work( oop obj, int start, int end) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp37 VirtualSpaceSummary(HeapWord* start, HeapWord* committed_end, HeapWord* reserved_end) : argument
38 _start(start), _committed_end(committed_end), _reserved_end(reserved_end) { }
40 HeapWord* start() const { return _start; } function in class:VirtualSpaceSummary
54 SpaceSummary(HeapWord* start, HeapWord* end, size_t used) : argument
55 _start(start), _end(end), _used(used) { }
57 HeapWord* start() const { return _start; } function in class:SpaceSummary
H A DgcTimer.cpp136 jlong pause = phase->end() - phase->start();
197 static void validate_pause_phase(GCPhase* phase, int level, const char* name, jlong start, jlong end) { argument
200 assert(phase->start() == start, "Incorrect start");
H A DgcTimer.hpp58 jlong start() { return _start; } function in class:GCPhase
H A DmutableSpace.cpp48 HeapWord *start = (HeapWord*)round_to((intptr_t) mr.start(), page_size); local
50 if (end > start) {
51 size_t size = pointer_delta(end, start, sizeof(char));
54 os::free_memory((char*)start, size, page_size);
56 os::numa_make_global((char*)start, size);
62 for (volatile char *p = (char*)mr.start(); p < (char*)mr.end(); p += os::vm_page_size()) {
72 assert(Universe::on_page_boundary(mr.start()) && Universe::on_page_boundary(mr.end()),
91 if (mr.start() <= intersection.start()) {
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.cpp135 (start() == NULL && end() == NULL && top() == NULL),
177 void ThreadLocalAllocBuffer::fill(HeapWord* start, argument
184 assert(top <= start + new_size - alignment_reserve(), "size too small");
185 initialize(start, top, start + new_size - alignment_reserve());
191 void ThreadLocalAllocBuffer::initialize(HeapWord* start, argument
194 set_start(start);
202 initialize(NULL, // start
304 HeapWord* p = start();
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldStreams.hpp79 FieldStreamBase(typeArrayHandle fields, constantPoolHandle constants, int start, int limit) { argument
82 _index = start;
84 if (limit < start) {
/openjdk7/hotspot/src/share/vm/opto/
H A DgenerateOptoStub.cpp52 // The procedure start
53 StartNode* start = new (C) StartNode(root(), jdomain); local
54 _gvn.set_type_bottom(start);
75 map()->init_req(i, _gvn.transform(new (C) ParmNode(start, i)));
266 C->init_start(start);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAdaptiveCoding.java67 public void writeArrayTo(OutputStream out, int[] a, int start, int end) throws IOException { argument
68 writeArray(this, out, a, start, end);
71 private static void writeArray(AdaptiveCoding run, OutputStream out, int[] a, int start, int end) throws IOException { argument
73 int mid = start+run.headLength;
75 run.headCoding.writeArrayTo(out, a, start, mid);
76 start = mid;
83 run.tailCoding.writeArrayTo(out, a, start, end);
86 public void readArrayFrom(InputStream in, int[] a, int start, int end) throws IOException { argument
87 readArray(this, in, a, start, end);
89 private static void readArray(AdaptiveCoding run, InputStream in, int[] a, int start, in argument
[all...]
H A DHistogram.java64 Histogram(int[] valueSequence, int start, int end) { argument
65 this(sortedSlice(valueSequence, start, end));
578 int[] sortedSlice(int[] valueSequence, int start, int end) { argument
579 if (start == 0 && end == valueSequence.length &&
583 int[] slice = new int[end-start];
584 System.arraycopy(valueSequence, start, slice, 0, slice.length);
H A DNativeUnpack.java54 private synchronized native long start(ByteBuffer buf, long offset); method in class:NativeUnpack
193 long counts = start(presetInput, 0);
H A DPopulationCoding.java197 public int[][] encodeValues(int[] values, int start, int end) { argument
199 int[] tokens = new int[end-start];
202 int val = values[start+i];
214 int val = values[start+i];
238 public void writeArrayTo(OutputStream out, int[] a, int start, int end) throws IOException { argument
239 int[][] vals = encodeValues(a, start, end);
272 public void readArrayFrom(InputStream in, int[] a, int start, int end) throws IOException { argument
274 setFavoredValues(readFavoredValuesFrom(in, end-start));
276 tokenCoding.readArrayFrom(in, a, start, end);
280 for (int i = start;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DFilter.java211 static byte[] unescapeFilterValue(byte[] orig, int start, int end) argument
218 dprint("unescape: " , orig, start, end);
221 int len = end - start;
224 for (int i = start; i < end; i++) {
267 private static int indexOf(byte[] str, char ch, int start, int end) { argument
268 for (int i = start; i < end; i++) {
275 private static int indexOf(byte[] str, String target, int start, int end) { argument
276 int where = indexOf(str, target.charAt(0), start, end);
287 private static int findUnescaped(byte[] str, char ch, int start, int end) { argument
288 while (start < en
710 encodeFilterList(BerEncoder ber, byte[] filter, int filterType, int start, int end) argument
834 dprint(String msg, byte[] str, int start, int end) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMixer.java422 final synchronized void start(Line line) { method in class:AbstractMixer
424 if (Printer.trace) Printer.trace(">> AbstractMixer: start(" + line + ")");
428 if (Printer.trace) Printer.trace("<< AbstractMixer: start(" + line + ") nothing done");
432 // we just start the mixer regardless of anything else here.
434 if (Printer.debug) Printer.debug("AbstractMixer: start(line): starting the mixer");
439 if (Printer.trace) Printer.trace("<< AbstractMixer: start(" + line + ") succeeded");
H A DEventDispatcher.java86 * This start() method starts an event thread if one is not already active.
88 synchronized void start() { method in class:EventDispatcher
240 start();
H A DSoftMixingSourceDataLine.java463 public void start() { method in class:SoftMixingSourceDataLine
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJSAdapter.java92 public Object get(String name, Scriptable start) { argument
97 start = getAdaptee();
98 return start.get(name, start);
102 public Object get(int index, Scriptable start) { argument
107 start = getAdaptee();
108 return start.get(index, start);
112 public boolean has(String name, Scriptable start) { argument
118 start
123 has(int index, Scriptable start) argument
134 put(String name, Scriptable start, Object value) argument
148 put(int index, Scriptable start, Object value) argument
[all...]

Completed in 556 milliseconds

<<21222324252627282930>>