Searched refs:start (Results 1 - 25 of 178) sorted by path

12345678

/libcore/dalvik/src/main/java/dalvik/system/
H A DZygote.java83 Daemons.start();
139 * Special method to start the system server process. In addition to the
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DBinaryHprofReader.java47 * by a matching start thread.
338 = HprofData.ThreadEvent.start(objectId, threadId,
H A DHprofData.java36 * <li>the start time of the last sampling period
37 * <li>the history of thread start and end events
59 public static ThreadEvent start(int objectId, int threadId, String threadName, method in class:HprofData.ThreadEvent
260 * Map of thread id to a start ThreadEvent
282 * The start time in milliseconds of the last profiling period.
289 * Set the time for the start of the current sampling period.
324 * Return an unmodifiable history of start and end thread events.
367 // the matching start, not a duplicate end.
H A DSamplingProfiler.java46 * profiler.start(100);
50 * profiler.start(100);
94 * Real hprof output examples don't start the thread and trace
95 * identifiers at one but seem to start at these arbitrary
105 * thread start and end events.
276 public void start(int interval) { method in class:SamplingProfiler
290 * #start(int)} to continue sampling.
415 // thread start/stop shouldn't happen too often and
470 = HprofData.ThreadEvent.start(nextObjectId++, threadId,
/libcore/dalvik/src/test/java/dalvik/system/profiler/
H A DSamplingProfilerTest.java54 profiler.start(100);
73 long start = System.currentTimeMillis();
121 // should have nothing in the thread history to start
127 ThreadEvent start1 = ThreadEvent.start(objectId, threadId,
159 // should have no samples to start
177 ThreadEvent start = ThreadEvent.start(objectId, threadId,
179 hprofData.addThreadEvent(start);
/libcore/dom/src/test/java/org/w3c/domts/
H A DXercesHTML2DocumentBuilderFactory.java152 public void characters(char ch[], int start, int length) throws argument
154 htmlBuilder.characters(ch, start, length);
157 public void ignorableWhitespace(char ch[], int start, int length) throws argument
159 htmlBuilder.ignorableWhitespace(ch, start, length);
H A DXercesHTMLDocumentBuilderFactory.java152 public void characters(char ch[], int start, int length) throws argument
154 htmlBuilder.characters(ch, start, length);
157 public void ignorableWhitespace(char ch[], int start, int length) throws argument
159 htmlBuilder.ignorableWhitespace(ch, start, length);
/libcore/json/src/main/java/org/json/
H A DJSONTokener.java203 int start = pos;
210 return new String(in.substring(start, pos - 1));
212 builder.append(in, start, pos - 1);
224 builder.append(in, start, pos - 1);
226 start = pos;
336 int start = pos;
340 return in.substring(start, pos);
343 return in.substring(start);
/libcore/luni/src/main/java/java/awt/font/
H A DNumericShaper.java657 * at index start and transforming count characters,
661 * @param start the start offset of the text.
665 public void shape(char[] text, int start, int count, int context) { argument
667 contextualShape(text, start, count, getIndexFromRange(context));
669 nonContextualShape(text, start, count);
675 * at index start and transforming count characters.
678 * @param start the start offset of the text.
681 public void shape(char[] text, int start, in argument
700 contextualShape(char[] text, int start, int count, int contextIndex) argument
741 nonContextualShape(char[] text, int start, int count) argument
[all...]
/libcore/luni/src/main/java/java/io/
H A DCharArrayWriter.java271 * specified by the parameters {@code start} and {@code end}. A call to
273 * CharArrayWriter.write(csq.subSequence(start, end).toString)}. If {@code
280 * @param start
288 * if {@code start < 0}, {@code end < 0}, {@code start > end},
292 public CharArrayWriter append(CharSequence csq, int start, int end) { argument
296 String output = csq.subSequence(start, end).toString();
H A DObjectInputStream.java952 int start = 0;
959 while (classSig.startsWith("[L", start)
961 start += 2;
965 if (start > 0) {
966 start -= 2;
968 return classSig.substring(start, end);
H A DPrintStream.java639 * @param start
647 * if {@code start > end}, {@code start < 0}, {@code end < 0} or
648 * either {@code start} or {@code end} are greater or equal than
651 public PrintStream append(CharSequence charSequence, int start, int end) { argument
655 print(charSequence.subSequence(start, end).toString());
H A DPrintWriter.java698 * PrintWriter.print(csq.subsequence(start, end).toString())}. If {@code
704 * @param start
712 * if {@code start > end}, {@code start < 0}, {@code end < 0} or
713 * either {@code start} or {@code end} are greater or equal than
717 public PrintWriter append(CharSequence csq, int start, int end) { argument
721 String output = csq.subSequence(start, end).toString();
H A DStringWriter.java206 * StringWriter.writer(csq.subsequence(start, end).toString())}. If {@code
212 * @param start
220 * if {@code start > end}, {@code start < 0}, {@code end < 0} or
221 * either {@code start} or {@code end} are greater or equal than
225 public StringWriter append(CharSequence csq, int start, int end) { argument
229 String output = csq.subSequence(start, end).toString();
H A DWriter.java209 * Writer.writer(csq.subsequence(start, end).toString())}. If {@code
215 * @param start
225 * if {@code start > end}, {@code start < 0}, {@code end < 0} or
226 * either {@code start} or {@code end} are greater or equal than
229 public Writer append(CharSequence csq, int start, int end) throws IOException { argument
233 write(csq.subSequence(start, end).toString());
/libcore/luni/src/main/java/java/lang/
H A DAbstractStringBuilder.java151 final void append0(CharSequence s, int start, int end) { argument
155 if ((start | end) < 0 || start > end || end > s.length()) {
159 int length = end - start;
169 ((String) s)._getChars(start, end, value, count);
172 System.arraycopy(other.value, start, value, count, length);
175 for (int i = start; i < end; i++) {
215 private StringIndexOutOfBoundsException startEndAndLength(int start, int end) { argument
216 throw new StringIndexOutOfBoundsException(count, start, end - start);
219 delete0(int start, int end) argument
304 getChars(int start, int end, char[] dst, int dstStart) argument
322 insert0(int index, char[] chars, int start, int length) argument
365 insert0(int index, CharSequence s, int start, int end) argument
405 replace0(int start, int end, String string) argument
591 substring(int start) argument
616 substring(int start, int end) argument
662 subSequence(int start, int end) argument
694 indexOf(String subString, int start) argument
762 lastIndexOf(String subString, int start) argument
872 codePointCount(int start, int end) argument
[all...]
H A DAppendable.java67 * to calling {@code append(csq.subSequence(start, end))}.
73 * @param start
81 * if {@code start < 0}, {@code end < 0}, {@code start > end}
86 Appendable append(CharSequence csq, int start, int end) throws IOException; argument
H A DCharSequence.java48 * Returns a {@code CharSequence} from the {@code start} index (inclusive)
51 * @param start
52 * the start offset of the sub-sequence. It is inclusive, that
61 * if {@code start < 0}, {@code end < 0}, {@code start > end},
62 * or if {@code start} or {@code end} are greater than the
65 public CharSequence subSequence(int start, int end); argument
H A DCharacter.java1560 private UnicodeBlock(String blockName, int start, int end) { argument
1988 * array of character units and is not less than {@code start}. If the unit
1990 * less than {@code start} and the unit at {@code index - 2} is a
2000 * @param start
2007 * if the {@code index <= start}, {@code start < 0},
2009 * if {@code start} is equal or greater than the length of
2013 public static int codePointBefore(char[] seq, int index, int start) { argument
2018 if (index <= start || index > len || start <
2298 offsetByCodePoints(char[] seq, int start, int count, int index, int codePointOffset) argument
[all...]
H A DDaemons.java38 public static void start() { method in class:Daemons
39 ReferenceQueueDaemon.INSTANCE.start();
40 FinalizerDaemon.INSTANCE.start();
41 FinalizerWatchdogDaemon.INSTANCE.start();
58 public synchronized void start() { method in class:Daemons.Daemon
65 thread.start();
H A DMath.java1045 * Returns the next double after {@code start} in the given {@code direction}.
1048 public static double nextAfter(double start, double direction) { argument
1049 if (start == 0 && direction == 0) {
1052 return nextafter(start, direction);
1056 * Returns the next float after {@code start} in the given {@code direction}.
1059 public static float nextAfter(float start, double direction) { argument
1060 if (Float.isNaN(start) || Double.isNaN(direction)) {
1063 if (start == 0 && direction == 0) {
1066 if ((start == Float.MIN_VALUE && direction < start)
[all...]
H A DProcessBuilder.java187 public Process start() throws IOException { method in class:ProcessBuilder
H A DProcessManager.java62 reaperThread.start();
H A DRuntime.java136 * the array containing the environment to start the new process
156 * the array containing the environment to start the new process
195 * the array containing the environment to start the new process
214 * the array containing the environment to start the new process
269 hook.start();
H A DStrictMath.java980 * Returns the next double after {@code start} in the given {@code direction}.
983 public static double nextAfter(double start, double direction) { argument
984 if (start == 0 && direction == 0) {
987 return nextafter(start, direction);
991 * Returns the next float after {@code start} in the given {@code direction}.
994 public static float nextAfter(float start, double direction) { argument
995 return Math.nextAfter(start, direction);

Completed in 405 milliseconds

12345678