/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
H A D | ExceptionsAttribute_info.java | 99 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 101 super.writeInClassFormat (out); 103 m_exceptions.writeInClassFormat (out);
|
H A D | GenericAttribute_info.java | 76 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 78 super.writeInClassFormat (out); 80 out.write (m_info, 0, m_info.length);
|
H A D | InnerClass_info.java | 66 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 68 out.writeU2 (m_inner_class_index); 69 out.writeU2 (m_outer_class_index); 70 out.writeU2 (m_inner_name_index); 71 out.writeU2 (m_inner_access_flags);
|
H A D | SourceFileAttribute_info.java | 72 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 74 super.writeInClassFormat (out); 76 out.writeU2 (m_sourcefile_index);
|
/external/emma/core/java12/com/vladium/jcd/cls/constant/ |
H A D | CONSTANT_Class_info.java | 78 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 80 super.writeInClassFormat (out); 82 out.writeU2 (m_name_index);
|
H A D | CONSTANT_Double_info.java | 71 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 73 super.writeInClassFormat (out); 75 out.writeDouble (m_value);
|
H A D | CONSTANT_Float_info.java | 62 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 64 super.writeInClassFormat (out); 66 out.writeFloat (m_value);
|
H A D | CONSTANT_Integer_info.java | 63 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 65 super.writeInClassFormat (out); 67 out.writeInt (m_value);
|
H A D | CONSTANT_Long_info.java | 72 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 74 super.writeInClassFormat (out); 76 out.writeLong (m_value);
|
H A D | CONSTANT_String_info.java | 65 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 67 super.writeInClassFormat (out); 69 out.writeU2 (m_string_index);
|
H A D | CONSTANT_Utf8_info.java | 67 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 69 super.writeInClassFormat (out); 71 out.writeUTF (m_value);
|
H A D | CONSTANT_info.java | 128 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument 130 out.writeByte (tag ());
|
/external/guava/guava-tests/test/com/google/common/io/ |
H A D | FileBackedOutputStreamTest.java | 47 FileBackedOutputStream out = new FileBackedOutputStream(0, true); 49 write(out, data, 0, 100, true); 50 final File file = out.getFile(); 53 out.close(); 56 out = null; 58 // times out and throws RuntimeException on failure 81 FileBackedOutputStream out = new FileBackedOutputStream(fileThreshold, resetOnFinalize); 82 InputSupplier<InputStream> supplier = out.getSupplier(); 88 write(out, data, 0, chunk1, singleByte); 92 File file = out 114 write( OutputStream out, byte[] b, int off, int len, boolean singleByte) argument [all...] |
/external/harfbuzz_ng/src/ |
H A D | test-buffer-serialize.cc | 103 char line[BUFSIZ], out[BUFSIZ]; local 118 out, sizeof (out), NULL, 121 puts (out);
|
/external/icu/icu4c/source/common/ |
H A D | bytestrie.cpp | 386 BytesTrie::getNextBytes(ByteSink &out) const { 392 append(out, *pos); // Next byte of a pending linear-match node. 409 getNextBranchBytes(pos, ++node, out); 413 append(out, *pos); 419 BytesTrie::getNextBranchBytes(const uint8_t *pos, int32_t length, ByteSink &out) { 422 getNextBranchBytes(jumpByDelta(pos), length>>1, out); 427 append(out, *pos++); 430 append(out, *pos); 434 BytesTrie::append(ByteSink &out, int c) { argument 436 out [all...] |
/external/icu/icu4c/source/layout/ |
H A D | CanonShaping.cpp | 63 le_int32 out = 0, dir = 1; local 66 out = charCount - 1; 70 for (i = 0; i < charCount; i += 1, out += dir) { 74 glyphStorage.setCharIndex(out, index, success);
|
/external/icu/icu4c/source/samples/citer/ |
H A D | citer.cpp | 18 static UFILE *out; variable 22 u_fprintf(out, "%S", &s); 28 u_fprintf(out, "%C", (UChar) ch); 30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 32 u_fprintf(out, "[%X]", ch); 53 u_fprintf(out, "testText = %s", testChars); 56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n"); 64 u_fprintf(out, "iter.getText() != clone.getText()\n"); 67 u_fprintf(out, "\n"); 70 u_fprintf(out, "Forwar [all...] |
/external/javassist/sample/evolve/ |
H A D | DemoServer.java | 47 public void doReply(InputStream in, OutputStream out, String cmd)
argument 51 runJava(out);
72 super.doReply(in, out, cmd);
76 OutputStreamWriter out = new OutputStreamWriter(outs);
77 out.write("HTTP/1.0 200 OK\r\n\r\n");
79 page.show(out);
80 out.close();
|
/external/javassist/src/main/javassist/ |
H A D | CtNewClass.java | 59 public void toBytecode(DataOutputStream out) argument 71 super.toBytecode(out);
|
/external/javassist/src/main/javassist/tools/reflect/ |
H A D | Compiler.java | 158 private static void help(PrintStream out) { argument 159 out.println("Usage: java javassist.tools.reflect.Compiler"); 160 out.println(" (<class> [-m <metaobject>] [-c <class metaobject>])+");
|
/external/jmdns/src/javax/jmdns/impl/tasks/ |
H A D | DNSTask.java | 71 * @param out 78 public DNSOutgoing addQuestion(DNSOutgoing out, DNSQuestion rec) throws IOException { argument 79 DNSOutgoing newOut = out; 101 * @param out 110 public DNSOutgoing addAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException { argument 111 DNSOutgoing newOut = out; 133 * @param out 141 public DNSOutgoing addAnswer(DNSOutgoing out, DNSRecord rec, long now) throws IOException { argument 142 DNSOutgoing newOut = out; 164 * @param out 171 addAuthoritativeAnswer(DNSOutgoing out, DNSRecord rec) argument 203 addAdditionalAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) argument [all...] |
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/ |
H A D | DNSResolverTask.java | 68 DNSOutgoing out = new DNSOutgoing(DNSConstants.FLAGS_QR_QUERY); 69 out = this.addQuestions(out); 71 out = this.addAnswers(out); 73 if (!out.isEmpty()) { 74 this.getDns().send(out); 91 * @param out 96 protected abstract DNSOutgoing addQuestions(DNSOutgoing out) throws IOException; argument 102 * @param out 107 addAnswers(DNSOutgoing out) argument [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
H A D | HtmlStripFunction.java | 95 public void filter(String in, Appendable out) throws IOException { argument 118 out.append(c); 133 appendDecodedEntityReference(out, amp); 143 out.append('&').append(amp).append(c); 147 out.append('&').append(amp).append(c); 158 * Attempts to decode the entity provided, if it succeeds appends it to the out string. 160 * @param out the string builder to add the decoded entity to. 163 private void appendDecodedEntityReference(Appendable out, CharSequence entityName) argument 175 appendNumberedEntity(out, entityName.subSequence(1, entityName.length())); 184 out 194 appendNumberedEntity(Appendable out, CharSequence entity) argument [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
H A D | SyntaxTreeDumper.java | 37 private final Appendable out; field in class:SyntaxTreeDumper 43 public SyntaxTreeDumper(Appendable out) { argument 44 this.out = out; 48 * Dumps to System.out. 51 this(System.out); 126 out.append(line); 133 * Simple command line tool for parsing a template and dumping out the AST. 145 tree.apply(new SyntaxTreeDumper(System.out));
|
/external/libopus/silk/ |
H A D | resampler_private_down_FIR.c | 37 opus_int16 *out, 83 *out++ = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( res_Q6, 6 ) ); 106 *out++ = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( res_Q6, 6 ) ); 135 *out++ = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( res_Q6, 6 ) ); 141 return out; 147 opus_int16 out[], /* O Output signal */ 177 out = silk_resampler_private_down_FIR_INTERPOL( out, buf, FIR_Coefs, S->FIR_Order, 36 silk_resampler_private_down_FIR_INTERPOL( opus_int16 *out, opus_int32 *buf, const opus_int16 *FIR_Coefs, opus_int FIR_Order, opus_int FIR_Fracs, opus_int32 max_index_Q16, opus_int32 index_increment_Q16 ) argument 145 silk_resampler_private_down_FIR( void *SS, opus_int16 out[], const opus_int16 in[], opus_int32 inLen ) argument
|