Searched defs:out (Results 276 - 300 of 2458) sorted by relevance

<<11121314151617181920>>

/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DTextContent.java25 public void emit (final HTMLWriter out) argument
29 out.write (m_text);
/external/emma/core/java12/com/vladium/emma/rt/
H A DInstrClassLoadHook.java55 ByteArrayOStream out)
62 $assert.ASSERT (bytes != null, "out is null");
115 ClassWriter.writeClassTable (clsDef, out);
53 processClassDef(final String className, final byte [] bytes, final int length, ByteArrayOStream out) argument
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DBridgeAttribute_info.java62 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument
64 super.writeInClassFormat (out);
H A DLineNumber_info.java76 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument
78 out.writeU2 (m_start_pc);
79 out.writeU2 (m_line_number);
H A DSyntheticAttribute_info.java79 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument
81 super.writeInClassFormat (out);
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_ref_info.java49 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument
51 super.writeInClassFormat (out);
53 out.writeU2 (m_class_index);
54 out.writeU2 (m_name_and_type_index);
/external/emma/core/java12/com/vladium/jcd/compiler/
H A DCodeGen.java26 public static void load_local_object_var (final ByteArrayOStream out, final int index) argument
30 out.write (_aload_0 + index); // aload_n
34 out.write2 (_aload,
39 out.write4 (_wide,
46 public static void store_local_object_var (final ByteArrayOStream out, final int index) argument
50 out.write (_astore_0 + index); // astore_n
54 out.write2 (_astore,
59 out.write4 (_wide,
68 public static void push_int_value (final ByteArrayOStream out, final ClassDef cls, final int value) argument
72 out
106 push_constant_index(final ByteArrayOStream out, final int index) argument
[all...]
/external/guava/guava/src/com/google/common/io/
H A DCountingOutputStream.java39 * @param out the output stream to be wrapped
41 public CountingOutputStream(OutputStream out) { argument
42 super(out);
51 out.write(b, off, len);
56 out.write(b);
/external/guava/guava-gwt/src/com/google/common/collect/
H A DArrayListMultimap_CustomFieldSerializer.java31 ArrayListMultimap<?, ?> out) {
41 public static void serialize(SerializationStreamWriter out, argument
43 Multimap_CustomFieldSerializerBase.serialize(out, multimap);
30 deserialize(SerializationStreamReader in, ArrayListMultimap<?, ?> out) argument
H A DHashMultimap_CustomFieldSerializer.java32 HashMultimap<?, ?> out) {
41 public static void serialize(SerializationStreamWriter out, argument
43 Multimap_CustomFieldSerializerBase.serialize(out, multimap);
31 deserialize(SerializationStreamReader in, HashMultimap<?, ?> out) argument
H A DLinkedHashMultimap_CustomFieldSerializer.java33 LinkedHashMultimap<?, ?> out) {
53 public static void serialize(SerializationStreamWriter out, argument
55 Multimap_CustomFieldSerializerBase.serialize(out, multimap);
57 out.writeObject(entry.getKey());
58 out.writeObject(entry.getValue());
32 deserialize(SerializationStreamReader in, LinkedHashMultimap<?, ?> out) argument
H A DLinkedListMultimap_CustomFieldSerializer.java33 LinkedListMultimap<?, ?> out) {
48 public static void serialize(SerializationStreamWriter out, argument
50 out.writeInt(multimap.size());
52 out.writeObject(entry.getKey());
53 out.writeObject(entry.getValue());
32 deserialize(SerializationStreamReader in, LinkedListMultimap<?, ?> out) argument
H A DTreeMultimap_CustomFieldSerializer.java33 TreeMultimap<?, ?> out) {
47 public static void serialize(SerializationStreamWriter out, argument
49 out.writeObject(multimap.keyComparator());
50 out.writeObject(multimap.valueComparator());
51 Multimap_CustomFieldSerializerBase.serialize(out, multimap);
32 deserialize(SerializationStreamReader in, TreeMultimap<?, ?> out) argument
/external/guava/guava-tests/test/com/google/common/io/
H A DLittleEndianDataInputStreamTest.java44 DataOutputStream out = new DataOutputStream(baos);
46 initializeData(out);
51 private void initializeData(DataOutputStream out) throws IOException { argument
52 /* Write out various test values NORMALLY */
53 out.write(new byte[] { -100, 100 });
54 out.writeBoolean(true);
55 out.writeBoolean(false);
56 out.writeByte(100);
57 out.writeByte(-100);
58 out
[all...]
H A DLittleEndianDataOutputStreamTest.java38 private LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos); field in class:LittleEndianDataOutputStreamTest
42 /* Write out various test values in LITTLE ENDIAN FORMAT */
43 out.write(new byte[] { -100, 100 });
44 out.writeBoolean(true);
45 out.writeBoolean(false);
46 out.writeByte(100);
47 out.writeByte(-100);
48 out.writeByte((byte) 200);
49 out.writeChar('a');
50 out
[all...]
/external/hamcrest/src/org/hamcrest/
H A DStringDescription.java9 private final Appendable out; field in class:StringDescription
15 public StringDescription(Appendable out) { argument
16 this.out = out;
40 out.append(str);
48 out.append(c);
58 return out.toString();
/external/icu/icu4c/source/samples/case/
H A Dcase.cpp15 U_CFUNC int c_main(UFILE *out);
17 void printUnicodeString(UFILE *out, const UnicodeString &s) { argument
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
25 UFILE *out; local
27 out = u_finit(stdout, NULL, NULL);
28 if(!out) {
32 ucnv_setFromUCallBack(u_fgetConverter(out), UCNV_FROM_U_CALLBACK_ESCAPE,
35 u_fprintf(out, "Warning- couldn't set the substitute callback - err %s\n", u_errorName(status));
40 u_fprintf(out,"ICU Case Mapping Sample Program\n\n");
41 u_fprintf(out, "
[all...]
H A Ducase.c21 int c_main(UFILE *out) argument
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
41 u_fprintf(out, "tolower() = %C\n", ch);
43 u_fprintf(out, "totitle(%C) = %C\n", char_k, ch);
45 u_fprintf(out, "u_foldCase(%C, U_FOLD_CASE_DEFAULT) = %C\n", char_K, (UChar) ch);
53 u_fprintf(out, "error in u_strToLower(Turkish locale)=%ld error=%s\n", length,
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
66 u_fprintf(out, "error in u_strToLower(English locale)=%ld error=%s\n", length,
69 u_fprintf(out, "u_strToUpper(%S, english) -> %S\n", lower, buffer);
78 u_fprintf(out, "erro
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcctest.c38 static void copyDefaultConverterName(char *out, UErrorCode *status) { argument
41 out[0]=0;
47 strcpy(out, itsName);
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DIoUtil.java31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException { argument
36 out.write(buf, 0, amt);
43 OutputStream out = new FileOutputStream(to);
45 pipe(in, out, buf);
47 out.close();
/external/jemalloc/test/unit/
H A Dhash.c84 uint32_t out; local
85 out = hash_x86_32(key, i, 256-i);
86 memcpy(&hashes[i*hashbytes], &out, hashbytes);
89 uint64_t out[2]; local
90 hash_x86_128(key, i, 256-i, out);
91 memcpy(&hashes[i*hashbytes], out, hashbytes);
94 uint64_t out[2]; local
95 hash_x64_128(key, i, 256-i, out);
96 memcpy(&hashes[i*hashbytes], out, hashbytes);
105 uint32_t out local
109 uint64_t out[2]; local
114 uint64_t out[2]; local
[all...]
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
H A DServiceInfoResolver.java61 protected DNSOutgoing addAnswers(DNSOutgoing out) throws IOException { argument
62 DNSOutgoing newOut = out;
80 protected DNSOutgoing addQuestions(DNSOutgoing out) throws IOException { argument
81 DNSOutgoing newOut = out;
H A DServiceResolver.java46 protected DNSOutgoing addAnswers(DNSOutgoing out) throws IOException { argument
47 DNSOutgoing newOut = out;
62 protected DNSOutgoing addQuestions(DNSOutgoing out) throws IOException { argument
63 DNSOutgoing newOut = out;
H A DTypeResolver.java48 protected DNSOutgoing addAnswers(DNSOutgoing out) throws IOException { argument
49 DNSOutgoing newOut = out;
63 protected DNSOutgoing addQuestions(DNSOutgoing out) throws IOException { argument
64 return this.addQuestion(out, DNSQuestion.newQuestion("_services._dns-sd._udp.local.", DNSRecordType.TYPE_PTR, DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE));
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DSimpleEscapingFunction.java85 public void filter(String in, Appendable out) throws IOException { argument
98 out.append(in, start, pos);
100 out.append(escapeString);
108 out.append(in, start, pos);

Completed in 6024 milliseconds

<<11121314151617181920>>