/cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/ |
GetAccountRemovalAllowedTx.java | 45 public void writeToParcel(Parcel out, int flags) { 46 out.writeParcelable(account, flags); 47 out.writeBundle(result);
|
GetAuthTokenTx.java | 53 public void writeToParcel(Parcel out, int flags) { 54 out.writeParcelable(account, flags); 55 out.writeString(authTokenType); 56 out.writeBundle(options); 57 out.writeBundle(result);
|
HasFeaturesTx.java | 56 public void writeToParcel(Parcel out, int flags) { 57 out.writeParcelable(account, flags); 58 out.writeStringList(features); 59 out.writeBundle(result);
|
UpdateCredentialsTx.java | 53 public void writeToParcel(Parcel out, int flags) { 54 out.writeParcelable(account, flags); 55 out.writeString(authTokenType); 56 out.writeBundle(options); 57 out.writeBundle(result);
|
/cts/tests/tests/calllog/src/android/calllog/cts/ |
TestUtils.java | 45 StringBuilder out = new StringBuilder(); local 47 out.append(str); 49 return out.toString();
|
/cts/tests/tests/media/libndkaudio/ |
WaveTableOscillator.cpp | 88 float out = ((waveTable_[srcIndex] * delta1) local 91 outBuff[dstIndex++] = out; 92 outBuff[dstIndex++] = out;
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
GetAllocationTest.java | 43 int [] out = new int[INPUTSIZE]; local 44 mOut.copyTo(out); 48 out[i]);
|
InitTest.java | 37 float[] out = new float[INPUTSIZE]; local 51 mOut.copyTo(out); 52 checkArray(ref, out, INPUTSIZE, 1, 1, 0);
|
/developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/ |
MainActivity.java | 33 * the current text out and new text in when 53 * Set the in and out animations. Using the fade_in/out animations 58 Animation out = AnimationUtils.loadAnimation(this, local 61 mSwitcher.setOutAnimation(out); 67 * automatically animated using the in/out animations set above.
|
/developers/samples/android/ui/views/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/ |
MainActivity.java | 33 * the current text out and new text in when 53 * Set the in and out animations. Using the fade_in/out animations 58 Animation out = AnimationUtils.loadAnimation(this, local 61 mSwitcher.setOutAnimation(out); 67 * automatically animated using the in/out animations set above.
|
/development/samples/browseable/TextSwitcher/src/com.example.android.textswitcher/ |
MainActivity.java | 33 * the current text out and new text in when 53 * Set the in and out animations. Using the fade_in/out animations 58 Animation out = AnimationUtils.loadAnimation(this, local 61 mSwitcher.setOutAnimation(out); 67 * automatically animated using the in/out animations set above.
|
/device/google/accessory/arduino/AndroidAccessory/ |
AndroidAccessory.h | 35 uint8_t out; member in class:AndroidAccessory
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
OpenMapRealMatrix.java | 108 final OpenMapRealMatrix out = new OpenMapRealMatrix(this); local 113 out.setEntry(row, col, getEntry(row, col) + iterator.value()); 116 return out; 143 final OpenMapRealMatrix out = new OpenMapRealMatrix(this); local 148 out.setEntry(row, col, getEntry(row, col) - iterator.value()); 151 return out; 167 final BlockRealMatrix out = new BlockRealMatrix(rows, outCols); local 175 out.addToEntry(i, j, value * m.getEntry(k, j)); 179 return out; 198 OpenMapRealMatrix out = new OpenMapRealMatrix(rows, outCols) local [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
AnyTest.java | 51 DerOutputStream out = new DerOutputStream(ASN1Any.getInstance(), local 53 assertTrue("False", Arrays.equals(encoded, out.encoded));
|
BooleanTest.java | 60 DerOutputStream out = new DerOutputStream(asn1, Boolean.FALSE); local 61 assertTrue("Encoding false value", Arrays.equals(eFalse, out.encoded)); 64 out = new DerOutputStream(asn1, Boolean.TRUE); 65 assertTrue("Encoding true value", Arrays.equals(eTrue, out.encoded));
|
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/ |
FinishedTest.java | 41 HandshakeIODataStream out = new HandshakeIODataStream(); local 42 message.send(out); 43 byte[] encoded = out.getData(1000); 44 assertEquals("incorrect out data length", message.length(),
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
CertificateVerifyTest.java | 58 HandshakeIODataStream out = new HandshakeIODataStream(); local 59 message.send(out); 60 byte[] encoded = out.getData(1000); 61 assertEquals("incorrect out data length", message.length(),
|
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
RandomAccessFileInputStreamTest.java | 60 FileOutputStream out = new FileOutputStream(tempFile); local 61 out.write(testData); 62 out.flush(); 63 out.close(); 100 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 106 out.write(buffer, 0, numRead); 110 Assert.assertArrayEquals(testData, out.toByteArray()); 121 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 127 out.write(buffer, 0, numRead); 131 Assert.assertArrayEquals(testData, out.toByteArray()) [all...] |
/external/boringssl/src/crypto/base64/ |
base64_test.cc | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 44 uint8_t out[9]; local 45 size_t len = EVP_EncodeBlock(out, (const uint8_t*)t->decoded, 48 memcmp(out, t->encoded, len) != 0) { 50 t->decoded, (int)len, (const char*)out, t->encoded); 58 uint8_t out[6]; local 65 if (!EVP_DecodeBase64(out, &len, sizeof(out), 71 memcmp(out, t->decoded, len) != 0) { 73 t->encoded, (int)len, (const char*)out, t->decoded) [all...] |
/external/boringssl/src/crypto/cmac/ |
cmac_test.cc | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 33 uint8_t out[16]; local 35 if (!AES_CMAC(out, key, key_len, msg, msg_len)) { 40 if (CRYPTO_memcmp(out, expected, sizeof(out)) != 0) { 42 dump(out, expected, sizeof(out)); 70 if (!CMAC_Final(ctx.get(), out, &out_len)) { 75 if (out_len != sizeof(out)) { 81 if (CRYPTO_memcmp(out, expected, sizeof(out)) != 0) [all...] |
/external/boringssl/src/crypto/ec/ |
ec_test.cc | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 77 // EncodeECPrivateKey encodes |key| as an ECPrivateKey structure into |*out|. It 79 static bool EncodeECPrivateKey(std::vector<uint8_t> *out, EC_KEY *key) { 81 out->resize(len); 82 uint8_t *outp = out->data(); 95 std::vector<uint8_t> out; local 96 if (!EncodeECPrivateKey(&out, key.get())) { 104 out) { 147 std::vector<uint8_t> out; local 148 if (!key || !EncodeECPrivateKey(&out, key.get())) [all...] |
/external/boringssl/src/crypto/hkdf/ |
hkdf_test.c | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 33 const uint8_t out[82]; member in struct:__anon5821 229 if (memcmp(buf, test->out, test->out_len) != 0) {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERSet.java | 63 ASN1OutputStream out) 66 out.write(BERTags.SET | BERTags.CONSTRUCTED); 67 out.write(0x80); 72 out.writeObject((ASN1Encodable)e.nextElement()); 75 out.write(0x00); 76 out.write(0x00);
|
BERTaggedObject.java | 96 ASN1OutputStream out) 99 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 100 out.write(0x80); 135 out.writeObject((ASN1Encodable)e.nextElement()); 140 out.writeObject(obj); 144 out.write(0x00); 145 out.write(0x00);
|
DERNull.java | 35 ASN1OutputStream out) 38 out.writeEncoded(BERTags.NULL, zeroBytes);
|