Searched defs:single (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/test/tools/javac/6400872/
H A DT6400872.java139 static <T> Iterable<T> iterable(T single) { argument
140 return Collections.singleton(single);
/openjdk7/langtools/test/tools/javac/Paths/6638501/
H A DJarFromManifestFailure.java156 static <T> Iterable<T> iterable(T single) { argument
157 return Collections.singleton(single);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUTF16.java168 * Extract a single UTF-32 value from a string.
187 char single = source.charAt(offset16);
188 if (single < LEAD_SURROGATE_MIN_VALUE) {
189 return single;
191 return _charAt(source, offset16, single);
194 private static int _charAt(String source, int offset16, char single) { argument
195 if (single > TRAIL_SURROGATE_MAX_VALUE) {
196 return single;
203 if (single <= LEAD_SURROGATE_MAX_VALUE) {
208 return UCharacterProperty.getRawSupplementary(single, trai
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DSSLStreams.java590 byte single[] = new byte [1]; field in class:SSLStreams.InputStream
593 int n = read (single, 0, 1);
597 return single[0] & 0xFF;
610 byte single[] = new byte[1]; field in class:SSLStreams.OutputStream
617 single[0] = (byte)b;
618 write (single, 0, 1);
/openjdk7/jdk/src/share/back/
H A DeventHelper.c510 CommandSingle *single = &(recc->singleCommand[i]); local
511 switch (single->singleKind) {
513 thread = single->u.eventCommand.info.thread;
516 thread = single->u.frameEventCommand.thread;
538 CommandSingle *single = &(recc->singleCommand[i]); local
539 switch (single->singleKind) {
542 &single->u.eventCommand);
546 &single->u.unloadCommand);
550 &single->u.frameEventCommand);
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java58 * compiles an expression and matches an input sequence against it in a single
365 * expression <tt>\\</tt> matches a single backslash and <tt>\{</tt> matches a
381 * <tt>"&#92;b"</tt>, for example, matches a single backspace character when
856 * "single-line" mode, which is what this is called in Perl.) </p>
2529 Use "single" node instead of bits when dealing with unicode
2558 * Parse a single character or a character range in a character class
2582 ch = single();
2592 int m = single();
2606 private int single() { method in class:Pattern
3031 * Prev could be a single o
[all...]

Completed in 37 milliseconds