HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 276 - 300 of 4335) sorted by null

<<11121314151617181920>>

  /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/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:__anon6686
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);
DEROctetString.java 45 ASN1OutputStream out)
48 out.writeEncoded(BERTags.OCTET_STRING, string);
DERTaggedObject.java 81 ASN1OutputStream out)
90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
109 out.writeTag(flags, tagNo);
110 out.writeImplicitObject(primitive);
115 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
DLTaggedObject.java 75 ASN1OutputStream out)
84 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
103 out.writeTag(flags, tagNo);
104 out.writeImplicitObject(primitive);
109 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
  /external/ceres-solver/scripts/
make_docs.py 29 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
105 out = fptr.read() variable
108 out = out.replace(input_pattern, output_pattern) variable
114 pre_breadcrumb_start, post_breadcrumb_start = out.split(breadcrumb_start)
117 out = pre_breadcrumb_start + post_breadcrumb_end variable
122 fptr.write(out)
  /external/clang/
clang-host-build.mk 45 define transform-host-clang-td-to-out
  /external/curl/tests/unit/
unit1396.c 40 const char *out; member in struct:test
82 char *out = curl_easy_unescape(hnd, variable
86 abort_unless(out != NULL, "returned NULL!");
88 fail_unless(!memcmp(out, list1[i].out, list1[i].outlen),
93 curl_free(out); variable
98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen); variable
99 abort_unless(out != NULL, "returned NULL!");
101 outlen = (int)strlen(out);
103 fail_unless(!memcmp(out, list2[i].out, list2[i].outlen)
108 curl_free(out); variable
    [all...]
  /external/eigen/unsupported/doc/examples/
FFT.cpp 36 T out=0; local
38 out += mag2(vec[k]);
39 return out;
45 T out=0; local
47 out += mag2(vec[k]);
48 return out;
  /external/guava/guava/src/com/google/common/io/
FileBackedOutputStream.java 47 private OutputStream out; field in class:FileBackedOutputStream
94 out = memory;
156 out = memory;
169 out.write(b);
179 out.write(b, off, len);
183 out.close();
187 out.flush();
207 out = transfer;
  /external/guava/guava-tests/test/com/google/common/io/
CountingOutputStreamTest.java 30 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
31 CountingOutputStream counter = new CountingOutputStream(out);
32 assertEquals(written, out.size());
37 assertEquals(written, out.size());
43 assertEquals(written, out.size());
48 assertEquals(written, out.size());
53 assertEquals(written, out.size());
62 assertEquals(written, out.size());
TestWriter.java 31 private final TestOutputStream out; field in class:TestWriter
37 public TestWriter(TestOutputStream out) {
38 super(new OutputStreamWriter(checkNotNull(out), UTF_8));
39 this.out = out;
61 return out.closed();

Completed in 39 milliseconds

<<11121314151617181920>>