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

<<11121314151617181920>>

  /developers/samples/android/ui/views/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 * the current text out and new text in when
53 * Set the in and out animations. Using the fade_in/out animations
56 Animation in = AnimationUtils.loadAnimation(this, local
60 mSwitcher.setInAnimation(in);
66 * the new value is displayed in the TextSwitcher. The change of text is
67 * automatically animated using the in/out animations set above.
  /development/samples/browseable/TextSwitcher/src/com.example.android.textswitcher/
MainActivity.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 * the current text out and new text in when
53 * Set the in and out animations. Using the fade_in/out animations
56 Animation in = AnimationUtils.loadAnimation(this, local
60 mSwitcher.setInAnimation(in);
66 * the new value is displayed in the TextSwitcher. The change of text is
67 * automatically animated using the in/out animations set above.
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 uint8_t in; member in class:AndroidAccessory
  /device/google/contexthub/firmware/external/arm/
arm_sin_cos_f32.c 16 * Redistribution and use in source and binary forms, with or without
21 * - Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in
32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
37 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
169 * The input to the floating-point version is in radians while the
205 * @param[in] x input value in radians.
212 float32_t sinVal, fract, in; /* Temporary variables for input, output * local
301 float32_t cosVal, fract, in; \/* Temporary variables for input, output *\/ local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
AnyTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
45 DerInputStream in = new DerInputStream(encoded); local
47 .decode(in)));
BooleanTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
52 DerInputStream in = new DerInputStream(eFalse); local
53 assertEquals("Decoding false value", Boolean.FALSE, asn1.decode(in));
56 in = new DerInputStream(eTrue);
57 assertEquals("Decoding true value", Boolean.TRUE, asn1.decode(in));
80 DerInputStream in = new DerInputStream(invalid[i]); local
81 ASN1Boolean.getInstance().decode(in);
OidTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
155 // wrong content: is not encoded in fewest number of bytes
161 DerInputStream in = new DerInputStream(invalid[i]); local
162 ASN1Oid.getInstance().decode(in);