/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 | 257 char out[] = {'0', '0', '0', '0'}; local 260 out[0] = str.charAt(0); 262 while ((incount < str.length()) && (count < out.length)) { 266 out[count++] = mapped; 271 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();
|
BCRSAPublicKey.java | 162 ObjectOutputStream out) 165 out.defaultWriteObject(); 169 out.writeObject(algorithmIdentifier.getEncoded());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
PKCS12BagAttributeCarrierImpl.java | 76 public void writeObject(ObjectOutputStream out) 81 out.writeObject(new Hashtable()); 82 out.writeObject(new Vector()); 99 out.writeObject(bOut.toByteArray());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
Base64Encoder.java | 59 OutputStream out) 72 out.write(encodingTable[(a1 >>> 2) & 0x3f]); 73 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]); 74 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]); 75 out.write(encodingTable[a3 & 0x3f]); 93 out.write(encodingTable[b1]); 94 out.write(encodingTable[b2]); 95 out.write(padding); 96 out.write(padding); 106 out.write(encodingTable[b1]) [all...] |
/external/chromium_org/chrome/browser/history/android/ |
sqlite_cursor_unittest.cc | 216 std::vector<uint8> out; local 217 base::android::JavaByteArrayToByteVector(env, data.obj(), &out); 218 EXPECT_EQ(data_bytes->data().size(), out.size()); 219 EXPECT_EQ(data_bytes->data()[0], out[0]);
|
/external/chromium_org/chrome/browser/search/suggestions/ |
suggestions_source.cc | 42 std::vector<std::string> out; local 43 out.push_back(kHtmlHeader); 44 out.push_back(kHtmlBody); 45 out.push_back("<h1>Suggestions</h1>\n<ul>"); 63 out.push_back(line); 65 out.push_back("</ul>"); 66 out.push_back(kHtmlFooter); 67 *output = JoinString(out, ""); 73 std::vector<std::string> out; local 74 out.push_back(kHtmlHeader) [all...] |