/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
TypeListItem.java | 92 protected void writeTo0(DexFile file, AnnotatedOutput out) { 96 if (out.annotates()) { 97 out.annotate(0, offsetString() + " type_list"); 98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz)); 102 out.annotate(ELEMENT_SIZE, 107 out.writeInt(sz); 110 out.writeShort(typeIds.indexOf(list.getType(i)));
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
TwoColumnOutput.java | 32 private final Writer out; field in class:TwoColumnOutput 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 90 if (out == null) { 91 throw new NullPointerException("out == null"); 109 this.out = out; 121 * @param out {@code non-null;} stream to send final output to 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer) [all...] |
/dalvik/dx/src/com/android/dx/command/findusages/ |
FindUsages.java | 39 private final PrintWriter out; field in class:FindUsages 44 public FindUsages(final Dex dex, String declaredBy, String memberName, final PrintWriter out) { 46 this.out = out; 83 out.println(location() + ": field reference " + dex.fieldIds().get(fieldId) 93 out.println(location() + ": method reference " + dex.methodIds().get(methodId) 111 * Prints usages to out. 130 out.println(location() + " field declared " + dex.fieldIds().get(fieldIndex)); 138 out.println(location() + " method declared " + dex.methodIds().get(methodIndex));
|
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationItem.java | 155 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 156 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 159 encodedForm = out.toByteArray(); 170 * @param out {@code non-null;} where to output to 173 public void annotateTo(AnnotatedOutput out, String prefix) { 174 out.annotate(0, prefix + "visibility: " + 176 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 182 out.annotate(0, prefix + name.toHuman() + ": " + 189 protected void writeTo0(DexFile file, AnnotatedOutput out) { 190 boolean annotates = out.annotates() [all...] |
TypeListItem.java | 91 protected void writeTo0(DexFile file, AnnotatedOutput out) { 95 if (out.annotates()) { 96 out.annotate(0, offsetString() + " type_list"); 97 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz)); 101 out.annotate(ELEMENT_SIZE, 106 out.writeInt(sz); 109 out.writeShort(typeIds.indexOf(list.getType(i)));
|
/dalvik/dx/src/com/android/dx/merge/ |
InstructionTransformer.java | 51 ShortArrayCodeOutput out = new ShortArrayCodeOutput(size); local 54 instruction.encode(out); 58 return out.getArray();
|
/dalvik/dx/src/com/android/dx/util/ |
TwoColumnOutput.java | 32 private final Writer out; field in class:TwoColumnOutput 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 90 if (out == null) { 91 throw new NullPointerException("out == null"); 109 this.out = out; 121 * @param out {@code non-null;} stream to send final output to 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer) [all...] |
/development/samples/BackupRestore/src/com/example/android/backuprestore/ |
ExampleAgent.java | 127 // out of the buffering stream object and send it off. 178 * Write out the new state file: the version number, followed by the 183 DataOutputStream out = new DataOutputStream(outstream); local 185 out.writeInt(AGENT_VERSION); 186 out.writeInt(mFilling); 187 out.writeBoolean(mAddMayo); 188 out.writeBoolean(mAddTomato); 195 * be running while we change its data out from under it. That, in 196 * turn, means that there is no need to send out any sort of notification
|
MultiRecordExampleAgent.java | 107 DataOutputStream out = new DataOutputStream(bufStream); local 111 out.writeInt(mFilling); 117 out.writeBoolean(mAddMayo); 123 out.writeBoolean(mAddTomato); 132 * Write out the new state file: the version number, followed by the 137 DataOutputStream out = new DataOutputStream(outstream); local 139 out.writeInt(mFilling); 140 out.writeBoolean(mAddMayo); 141 out.writeBoolean(mAddTomato); 154 * On restore, we pull the various bits of data out of the restore stream [all...] |
/device/generic/goldfish/camera/ |
CallbackNotifier.cpp | 60 int out = 0; local 61 while (msg != 0 && out < max && index < lCameraMessagesNum) { 67 strings[out] = lCameraMessages[index]; 68 out++; 74 return out;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
ChoiceTest.java | 116 DerOutputStream out = new DerOutputStream(choice, testcases[i][0]); local 118 (byte[]) testcases[i][1], out.encoded));
|
SequenceTest.java | 163 DerOutputStream out = new DerOutputStream(sequence, testcases[i][0]); local 165 (byte[]) testcases[i][1], out.encoded));
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
EDIPartyNameTest.java | 46 System.out.print(prefix + "0x" + tail + delimiter); 49 System.out.println(); 52 System.out.println(); 75 System.out.println("Got encoded form of EDIPartyName is:"); 77 System.out.println("But should be like this:"); 79 System.out.println(""); 97 System.out.println("Got encoded form of GeneralName is:"); 99 System.out.println("But should be like this:"); 101 System.out.println(""); 121 System.out.println("Got encoded form of GeneralNames is:") [all...] |
GeneralNameTest.java | 157 System.out.print((bts[i] & 0xFF) + " "); 159 System.out.println(""); 160 System.out.println(ip);
|
/external/apache-http/src/org/apache/commons/codec/language/ |
Soundex.java | 262 char out[] = {'0', '0', '0', '0'}; local 265 out[0] = str.charAt(0); 267 while ((incount < str.length()) && (count < out.length)) { 271 out[count++] = mapped; 276 return new String(out);
|
/external/bison/src/ |
print.c | 47 fprintf (out, _(" type %d is %s\n"), extnum, tags[token]); 71 print_core (FILE *out, state *s) 89 fputc ('\n', out); 104 rule_lhs_print (&rules[r], previous_lhs, out); 108 fprintf (out, " %s", symbols[*sp]->tag); 109 fputs (" .", out); 111 fprintf (out, " %s", symbols[*sp]->tag); 116 state_rule_lookahead_tokens_print (s, &rules[r], out); 118 fputc ('\n', out); 125 | OUT. 506 FILE *out = xfopen (spec_verbose_file, "w"); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BEROctetString.java | 136 ASN1OutputStream out) 139 out.write(BERTags.CONSTRUCTED | BERTags.OCTET_STRING); 141 out.write(0x80); 144 // write out the octet array 148 out.writeObject((ASN1Encodable)e.nextElement()); 151 out.write(0x00); 152 out.write(0x00);
|
DERApplicationSpecific.java | 206 void encode(ASN1OutputStream out) throws IOException 214 out.writeEncoded(classBits, tag, octets);
|
DERBitString.java | 213 ASN1OutputStream out) 221 out.writeEncoded(BERTags.BIT_STRING, bytes);
|
DERGeneralizedTime.java | 329 ASN1OutputStream out) 332 out.writeEncoded(BERTags.GENERALIZED_TIME, time);
|
DERUTCTime.java | 243 ASN1OutputStream out) 246 out.write(BERTags.UTC_TIME); 250 out.writeLength(length); 254 out.write((byte)time[i]);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
BCDHPublicKey.java | 195 ObjectOutputStream out) 198 out.defaultWriteObject(); 200 out.writeObject(dhSpec.getP()); 201 out.writeObject(dhSpec.getG()); 202 out.writeInt(dhSpec.getL());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/ |
BCDSAPrivateKey.java | 158 ObjectOutputStream out) 161 out.defaultWriteObject(); 163 out.writeObject(dsaSpec.getP()); 164 out.writeObject(dsaSpec.getQ()); 165 out.writeObject(dsaSpec.getG());
|
BCDSAPublicKey.java | 162 ObjectOutputStream out) 165 out.defaultWriteObject(); 167 out.writeObject(dsaSpec.getP()); 168 out.writeObject(dsaSpec.getQ()); 169 out.writeObject(dsaSpec.getG());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
BCRSAPrivateKey.java | 134 ObjectOutputStream out) 137 out.defaultWriteObject();
|