Searched refs:single (Results 1 - 17 of 17) sorted by relevance

/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/test/java/util/concurrent/ExecutorService/
H A DInvoke.java79 ExecutorService single = Executors.newSingleThreadExecutor();
81 check(single.invokeAny(tasks) == save + 1);
85 single.shutdown();
/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/langtools/test/tools/javac/6400872/
H A DT6400872.java139 static <T> Iterable<T> iterable(T single) { argument
140 return Collections.singleton(single);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMixingMainMixer.java178 private final byte[] single = new byte[1];
204 int ret = read(single);
207 return single[0] & 0xFF;
H A DSoftMainMixer.java871 private final byte[] single = new byte[1];
907 int ret = read(single);
910 return single[0] & 0xFF;
/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/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/security/pkcs11/wrapper/
H A DFunctions.java165 int single;
168 single = value[i] & 0xFF;
170 if (single < 0x10) {
174 buffer.append(Integer.toString(single, 16));
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME129 Return the size of a single scan line in the output mask buffer
132 scan lines should overwrite each other in the single row-sized
141 Return a number with the appropriate single bit set for modifying
179 Return the size in bytes of a single scan line in the output
182 overwrite each other in the single row-sized buffer.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt69 WM_TRANSIENT_FOR value is a single window, so we can't directly make
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLSchemaMessages_pt_BR.properties166 src-single-facet-value = src-single-facet-value: O aspecto ''{0}'' foi definido mais de uma vez.
H A DXMLSchemaMessages_de.properties166 src-single-facet-value = src-single-facet-value: Facet "{0}" ist mehrmals definiert.
H A DXMLSchemaMessages_ja.properties166 src-single-facet-value = src-single-facet-value: \u30D5\u30A1\u30BB\u30C3\u30C8''{0}''\u304C\u8907\u6570\u56DE\u5B9A\u7FA9\u3055\u308C\u3066\u3044\u307E\u3059\u3002
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLScanner.java1058 * identifier must be normalized to single space characters (#x20), and
/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...]
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec1127 "threads above). Upon completion of a single threaded invoke, the invoking thread "
1129 "the single threaded invocation will not be suspended when the "
1202 "threads above). Upon completion of a single threaded invoke, the invoking thread "
1204 "the single threaded invocation will not be suspended when the "
1564 "threads above). Upon completion of a single threaded invoke, the invoking thread "
1566 "the single threaded invocation will not be suspended when the "
1723 "Suspending single threads with command has the same "
2159 "this class loader must be resolved to that single type. "
2575 "or you might single step to the same location as a "

Completed in 84 milliseconds