Searched defs:start (Results 351 - 375 of 865) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DSegment.java228 * Returns the start index of the text.
281 public CharSequence subSequence(int start, int end) { argument
282 if (start < 0) {
283 throw new StringIndexOutOfBoundsException(start);
288 if (start > end) {
289 throw new StringIndexOutOfBoundsException(end - start);
293 segment.offset = this.offset + start;
294 segment.count = end - start;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DPlatformFont.java243 int start, int len)
248 int stringIndex = start;
258 int end = start + len;
259 if (start < 0 || end > data.length) {
242 makeConvertedMultiFontChars(char[] data, int start, int len) argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DExtendedTextLabel.java118 public abstract TextLineComponent getSubset(int start, int limit, int dir); argument
H A DScriptRun.java62 * int start = scriptRun.getScriptStart();
67 * start + " to " + limit + ".");
95 * @param start the index of the first character over which to iterate
98 public ScriptRun(char[] chars, int start, int count) argument
100 init(chars, start, count);
103 public void init(char[] chars, int start, int count) argument
105 if (chars == null || start < 0 || count < 0 || count > chars.length - start) {
110 textStart = start;
111 textLimit = start
[all...]
H A DStandardTextSource.java38 int start; field in class:StandardTextSource
54 * source; start, like cstart, is relative to the start of the
63 int start,
78 if (start < cstart) {
79 throw new IllegalArgumentException("bad start: " + start + " for cstart: " + cstart);
90 if ((start + len) > (cstart + clen)) {
91 throw new IllegalArgumentException("bad len: " + len + " start: " + start
62 StandardTextSource(char[] chars, int start, int len, int cstart, int clen, int level, int flags, Font font, FontRenderContext frc, CoreMetrics cm) argument
119 StandardTextSource(char[] chars, int start, int len, int level, int flags, Font font, FontRenderContext frc, CoreMetrics cm) argument
190 getSubSource(int start, int length, int dir) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java42 * of process attributes. The {@link #start()} method creates a new
44 * #start()} method can be invoked repeatedly from the same instance
128 * subsequently started by that object's {@link #start()} method, but
132 * <p>Most error checking is performed by the {@link #start()} method.
134 * #start()} will fail. For example, setting the command attribute to
135 * an empty list will not throw an exception unless {@link #start()}
147 * Process p = new ProcessBuilder("myCommand", "myArg").start();
165 * Process p = pb.start();
171 * <p>To start a process with an explicit set of environment
278 * this object's {@link #start()} metho
1002 public Process start() throws IOException { method in class:ProcessBuilder
[all...]
H A DStringBuilder.java48 * whose current contents are "<code>start</code>", then
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/net/
H A DURLStreamHandler.java117 * @param start the character index at which to begin parsing. This is
125 protected void parseURL(URL u, String spec, int start, int limit) { argument
143 if (start < limit) {
145 queryOnly = queryStart == start;
156 boolean isUNCName = (start <= limit - 4) &&
157 (spec.charAt(start) == '/') &&
158 (spec.charAt(start + 1) == '/') &&
159 (spec.charAt(start + 2) == '/') &&
160 (spec.charAt(start + 3) == '/');
161 if (!isUNCName && (start <
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DFieldPosition.java76 * Input: Desired field to determine start and end offsets for.
285 public void formatted(Format.Field attr, Object value, int start, argument
288 setBeginIndex(start);
290 encounteredField = (start != end);
295 int start, int end, StringBuffer buffer) {
297 setBeginIndex(start);
299 encounteredField = (start != end);
294 formatted(int fieldID, Format.Field attr, Object value, int start, int end, StringBuffer buffer) argument
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DStringMonitor.java152 public synchronized void start() { method in class:StringMonitor
155 "start", "the monitor is already active");
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimerMBean.java58 public void start(); method in interface:TimerMBean
363 * A timer MBean is marked active when the {@link #start start} method is called.
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.hpp89 static CodeBlob* find_blob(void* start);
90 static nmethod* find_nmethod(void* start);
94 static CodeBlob* find_blob_unsafe(void* start) { argument
98 CodeBlob* result = (CodeBlob*)_heap->find_start(start);
100 // heapblock containing start. That block can often be larger than
110 // assert(result == NULL || result->blob_contains((address)start), "found wrong CodeBlob");
112 if (result != NULL && !result->blob_contains((address)start)) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.cpp130 // We cannot start the SLT thread ourselves since we need
175 // create and start a new ConcurrentMarkSweep Thread for given CMS generation
176 ConcurrentMarkSweepThread* ConcurrentMarkSweepThread::start(CMSCollector* collector) { function in class:ConcurrentMarkSweepThread
178 assert(cmst() == NULL, "start() called twice?");
329 // Check if we should start a CMS collection cycle
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.inline.hpp117 G1CollectedHeap::dirty_young_block(HeapWord* start, size_t word_size) { argument
123 DEBUG_ONLY(HeapRegion* containing_hr = heap_region_containing_raw(start);)
124 assert(containing_hr != NULL && start != NULL && word_size > 0,
126 assert(containing_hr->is_in(start), "it should contain start");
130 HeapWord* end = start + word_size;
133 MemRegion mr(start, end);
H A Dg1MMUTracker.cpp78 void G1MMUTrackerQueue::add_pause(double start, double end, bool gc_thread) { argument
79 double longest_allowed = longest_pause_internal(start);
82 double duration = end - start;
107 _array[_head_index] = G1MMUTrackerQueueElem(start, end);
/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.hpp47 MemRegion(HeapWord* start, size_t word_size) : argument
48 _start(start), _word_size(word_size) {};
49 MemRegion(HeapWord* start, HeapWord* end) : argument
50 _start(start), _word_size(pointer_delta(end, start)) {
51 assert(end >= start, "incorrect constructor arguments");
63 HeapWord* start() const { return _start; } function in class:VALUE_OBJ_CLASS_SPEC
67 void set_start(HeapWord* start) { _start = start; } argument
82 (start()
[all...]
H A Drestore.cpp84 void do_region(u_char* start, size_t size) { argument
85 assert((intptr_t)start % sizeof(oop) == 0, "bad alignment");
89 *(oop*)start = nextOop();
90 start += sizeof(oop);
H A DsharedHeap.hpp207 // "strong_roots_parity()" method. Collectors that start parallel tasks
311 HeapWord* start = perm_gen()->reserved().start(); local
312 return VirtualSpaceSummary(start, (HeapWord*)((uintptr_t)start + perm_gen()->capacity()), perm_gen()->reserved().end());
/openjdk7/hotspot/src/share/vm/opto/
H A Dregmask.cpp412 OptoReg::Name start = rm.find_first_elem(); // Get a register local
413 if (OptoReg::is_valid(start)) { // Check for empty mask
414 rm.Remove(start); // Yank from mask
415 OptoReg::dump(start, st); // Print register
416 OptoReg::Name last = start;
431 if (start == last) { // 1-register run; no special printing
432 } else if (start+1 == last) {
439 st->print(","); // Seperate start of new run
440 start = last = reg; // Start a new register run
441 OptoReg::dump(start, s
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadReference.java224 * @param start the index of the first frame to retrieve.
234 * <pre> start &lt; 0
235 * start &gt;= {@link #frameCount}
237 * (start+length) &gt; {@link #frameCount}</pre>
239 List<StackFrame> frames(int start, int length) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DBerEncoder.java36 * NOTE : the buffer is filled from end to start. This means the caller
56 start = b.length ;
65 * filled from end to start. The encoded data must be shift before
75 final int result = bytes.length - start ;
77 // for (int i = start ; i < bytes.length ; i++) {
78 // bytes[i-start] = bytes[i] ;
81 java.lang.System.arraycopy(bytes,start,bytes,0,result);
83 start = bytes.length ;
229 java.lang.System.arraycopy(s,0,bytes,start-byteCount,byteCount);
230 start
466 protected int start = -1 ; field in class:BerEncoder
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBerEncoder.java158 int start = seqOffset[curSeqIndex] + 3; // index beyond length field
159 int len = offset - start;
162 shiftSeqData(start, len, -2);
165 shiftSeqData(start, len, -1);
173 shiftSeqData(start, len, 1);
184 * Shifts contents of buf in the range [start,start+len) a specified amount.
187 private void shiftSeqData(int start, int len, int shift) { argument
191 System.arraycopy(buf, start, buf, start
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractDataLine.java181 public final void start() { method in class:AbstractDataLine
184 if (Printer.trace) Printer.trace("> "+getClass().getName()+".start() - AbstractDataLine");
190 mixer.start(this);
201 if (Printer.trace) Printer.trace("< "+getClass().getName()+".start() - AbstractDataLine");
243 // start() and stop(). This state is accessed now through the
295 * running is true after start is called and before stop is called,
H A DDataPusher.java82 public synchronized void start() { method in class:DataPusher
83 start(false);
86 public synchronized void start(boolean loop) { method in class:DataPusher
87 if (DEBUG || Printer.debug) Printer.debug("> DataPusher.start(loop="+loop+")");
91 if (DEBUG || Printer.trace)Printer.trace("DataPusher.start(): calling stop()");
103 if (DEBUG || Printer.trace)Printer.trace("DataPusher: source.start()");
104 source.start();
106 if (DEBUG || Printer.debug) Printer.debug("DataPusher.start(): Starting push");
117 if (DEBUG || Printer.debug) Printer.debug("< DataPusher.start(loop="+loop+")");
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/
H A DResourceResolver.java228 * @param start
230 public static void register(Class<? extends ResourceResolverSpi> className, boolean start) { argument
233 register(resourceResolverSpi, start);
245 * @param start
247 public static void register(ResourceResolverSpi resourceResolverSpi, boolean start) { argument
249 if (start) {

Completed in 88 milliseconds

<<11121314151617181920>>