/libcore/luni/src/main/java/libcore/reflect/ |
Types.java | 93 * Appends the best {@link #toString} name for {@code c} to {@code out}. 99 public static void appendTypeName(StringBuilder out, Class<?> c) { 105 out.append(c.getName()); 107 out.append("[]"); 112 * Appends names of the {@code types} to {@code out} separated by commas. 114 public static void appendArrayGenericType(StringBuilder out, Type[] types) { 118 appendGenericType(out, types[0]); 120 out.append(','); 121 appendGenericType(out, types[i]); 125 public static void appendGenericType(StringBuilder out, Type type) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Any.java | 96 public void encodeASN(BerOutputStream out) { 97 out.encodeANY(); 100 public void encodeContent(BerOutputStream out) { 101 out.encodeANY(); 104 public void setEncodingContent(BerOutputStream out) { 105 out.length = ((byte[]) out.content).length; 108 public int getEncodedLength(BerOutputStream out) { 109 return out.length;
|
ASN1Integer.java | 83 public void encodeContent(BerOutputStream out) { 84 out.encodeInteger(); 87 public void setEncodingContent(BerOutputStream out) { 88 out.length = ((byte[]) out.content).length;
|
ASN1Oid.java | 101 public void encodeContent(BerOutputStream out) { 102 out.encodeOID(); 105 public void setEncodingContent(BerOutputStream out) { 106 int[] oid = (int[]) out.content; 130 out.length = length; 178 @Override public void setEncodingContent(BerOutputStream out) { 180 out.content = ObjectIdentifier.toIntArray((String) out.content); 181 super.setEncodingContent(out);
|
ASN1StringType.java | 46 public void setEncodingContent(BerOutputStream out) { 47 byte[] bytes = ((String) out.content).getBytes(StandardCharsets.UTF_8); 48 out.content = bytes; 49 out.length = bytes.length; 102 public void encodeASN(BerOutputStream out) { 103 out.encodeTag(id); 104 encodeContent(out); 107 public void encodeContent(BerOutputStream out) { 108 out.encodeString(); 111 public void setEncodingContent(BerOutputStream out) { [all...] |
ASN1Type.java | 107 DerOutputStream out = new DerOutputStream(this, object); local 108 return out.encoded; 141 public abstract void encodeASN(BerOutputStream out); 143 public abstract void encodeContent(BerOutputStream out); 145 public abstract void setEncodingContent(BerOutputStream out); 147 public int getEncodedLength(BerOutputStream out) { //FIXME name 154 if (out.length > 127) { 157 for (int cur = out.length >> 8; cur > 0; len++) { 161 len += out.length;
|
ASN1UTCTime.java | 86 @Override public void encodeContent(BerOutputStream out) { 87 out.encodeUTCTime(); 97 @Override public void setEncodingContent(BerOutputStream out) { 100 out.content = sdf.format(out.content).getBytes(StandardCharsets.UTF_8); 101 out.length = ((byte[]) out.content).length;
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldAndroidPipedStreamTest.java | 43 final PipedOutputStream out = new PipedOutputStream(in); local 80 out.write(toWrite); 82 out.close(); 110 final PipedOutputStream out = new PipedOutputStream(in); local 165 out.write(writeBytes, 0, writeBytes.length); 167 out.close(); 195 final PipedOutputStream out = new PipedOutputStream(in); local 236 out.write(writeBytes, 0, writeBytes.length); 237 out.close();
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldErrorManagerTest.java | 28 private final PrintStream out = System.out; field in class:OldErrorManagerTest 32 System.setOut(out);
|
/libcore/luni/src/test/java/libcore/util/ |
SerializationTester.java | 83 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 84 new ObjectOutputStream(out).writeObject(object); 85 return out.toByteArray();
|
/libcore/support/src/test/java/tests/support/ |
Support_Exec.java | 76 * Starts the specified process, collects its output from standard out and 93 String out = ""; local 95 out = outFuture.get(30, TimeUnit.SECONDS); 106 "Failed to execute " + builder.command() + "; output was:\n" + out); 110 return out; 119 * 'expectedOut' on stdout and 'expectedErr' on stderr. Times out after
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
sed.c | 66 /* If set, don't write out the line unless explicitly told to */ 95 FILE *out = errmsg ? stderr : stdout; local 97 fprintf(out, _("GNU sed home page: <http://www.gnu.org/software/sed/>.\n\ 104 fprintf(out, _("E-mail bug reports to: <%s>.\n\ 114 FILE *out = status ? stderr : stdout; local 122 fprintf(out, _("\ 126 fprintf(out, _(" -n, --quiet, --silent\n\ 128 fprintf(out, _(" -e script, --expression=script\n\ 130 fprintf(out, _(" -f script-file, --file=script-file\n\ 133 fprintf(out, _(" --follow-symlinks\n [all...] |
/packages/apps/Email/src/com/beetstra/jutf7/ |
UTF7StyleCharsetDecoder.java | 20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
72 if (!out.hasRemaining())
74 out.put((char)shift);
79 if (!out.hasRemaining())
81 CoderResult result = handleBase64(in, out, b);
94 if (!out.hasRemaining())
96 out.put((char)b);
115 * @param out The output buffer
120 private CoderResult handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) { [all...] |
UTF7StyleCharsetEncoder.java | 20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
102 * @param out The output byte buffer
105 protected CoderResult implFlush(ByteBuffer out) {
107 if (out.remaining() < 2)
110 out.put(base64.getChar(sextet));
111 out.put(unshift);
141 * @param out The output byte buffer
144 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) {
146 if (out.remaining() < 4)
150 unshift(out, ch); [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
Romkan.java | 188 StrSegment[] out; local 190 out = new StrSegment[1]; 191 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 192 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 194 out = new StrSegment[2]; 195 out[0] = new StrSegment(match.substring(0, match.length() - 1), 197 out[1] = new StrSegment(match.substring(match.length() - 1), 199 text.replaceStrSegment(1, out, MAX_LENGTH - start);
|
RomkanFullKatakana.java | 192 StrSegment[] out; local 194 out = new StrSegment[1]; 195 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 196 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 198 out = new StrSegment[2]; 199 out[0] = new StrSegment(match.substring(0, match.length() - 1), 201 out[1] = new StrSegment(match.substring(match.length() - 1), 203 text.replaceStrSegment(1, out, MAX_LENGTH - start);
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
codecvt.h | 115 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 233 * the value returned. @see out for more information.
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
codecvt.h | 115 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 233 * the value returned. @see out for more information.
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
codecvt.h | 115 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 233 * the value returned. @see out for more information.
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
codecvt.h | 115 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 233 * the value returned. @see out for more information.
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|