Searched defs:seq (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DStringBuilder.java120 * @param seq the sequence to copy.
121 * @throws NullPointerException if <code>seq</code> is <code>null</code>
123 public StringBuilder(CharSequence seq) { argument
124 this(seq.length() + 16);
125 append(seq);
H A DStringBuffer.java134 * @param seq the sequence to copy.
135 * @exception NullPointerException if <code>seq</code> is <code>null</code>
138 public StringBuffer(CharSequence seq) { argument
139 this(seq.length() + 16);
140 append(seq);
H A DCharacter.java4697 * @param seq a sequence of {@code char} values (Unicode code
4700 * code units) in {@code seq} to be converted
4702 * @exception NullPointerException if {@code seq} is null.
4705 * {@link CharSequence#length() seq.length()}.
4708 public static int codePointAt(CharSequence seq, int index) { argument
4709 char c1 = seq.charAt(index++);
4711 if (index < seq.length()) {
4712 char c2 = seq.charAt(index);
4804 * @param seq the {@code CharSequence} instance
4807 * @exception NullPointerException if {@code seq} i
4813 codePointBefore(CharSequence seq, int index) argument
5056 codePointCount(CharSequence seq, int beginIndex, int endIndex) argument
5133 offsetByCodePoints(CharSequence seq, int index, int codePointOffset) argument
[all...]
/libcore/ojluni/src/main/native/
H A DInet4AddressImpl.c81 jint tmout2, seq = 1; local
119 icmp->icmp_seq = htons(seq);
120 seq++;
H A DInet6AddressImpl.c155 jint tmout2, seq = 1; local
196 icmp6->icmp6_seq = htons(seq);
197 seq++;
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogRecord.java284 public void setSequenceNumber(long seq) { argument
285 sequenceNumber = seq;
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerOutputStream.java300 public void putSequence(DerValue[] seq) throws IOException { argument
304 for (i = 0; i < seq.length; i++)
305 seq[i].encode(bytes);

Completed in 289 milliseconds