/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);
|
/external/apache-http/src/org/apache/http/impl/io/ |
IdentityInputStream.java | 12 * "License"); you may not use this file except in compliance 17 * Unless required by applicable law or agreed to in writing, 55 private final SessionInputBuffer in; field in class:IdentityInputStream 59 public IdentityInputStream(final SessionInputBuffer in) { 61 if (in == null) { 64 this.in = in; 68 if (!this.closed && this.in.isDataAvailable(10)) { 83 return this.in.read(); 91 return this.in.read(b, off, len) [all...] |
/external/autotest/server/ |
autoserv_utils.py | 4 # found in the LICENSE file. 42 @param results_directory: Absolute path to directory in which to deposit 57 in autoserv console logs. 151 raise ImportError('Unable to import drone_manager in autoserv_utils') namespace
|
/external/boringssl/src/crypto/x509/ |
by_file.c | 11 * apply to all code found in this distribution, be it the RC4, RSA, 16 * Copyright remains Eric Young's, and as such any Copyright notices in 18 * If this package is used in a product, Eric Young should be given attribution 20 * This can be in the form of a textual message at program startup or 21 * in documentation (online or textual) provided with the package. 23 * Redistribution and use in source and binary forms, with or without 28 * 2. Redistributions in binary form must reproduce the above copyright 29 * notice, this list of conditions and the following disclaimer in the 44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC 131 BIO *in=NULL; local 197 BIO *in=NULL; local 264 BIO *in; local [all...] |
x509cset.c | 6 * Redistribution and use in source and binary forms, with or without 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 21 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 29 * nor may "OpenSSL" appear in their names without prior written 35 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 40 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 47 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 83 ASN1_TIME *in; local 101 ASN1_TIME *in; local 140 ASN1_TIME *in; local 158 ASN1_INTEGER *in; local [all...] |
/external/chromium-trace/catapult/tracing/bin/ |
validate_all_metrics | 4 # found in the LICENSE file. 23 '/' + rel_path for rel_path in 28 print ('These metrics are unregistered: %s. Please import their modules in ' namespace 33 for m in all_possible_metrics:
|
/external/curl/lib/ |
hostip4.c | 10 * This software is licensed as described in the file COPYING, which 26 #include <netinet/in.h> 35 #include <in.h> 51 /* The last 3 #include files should be in this order */ 84 * detect which one this platform supports in the configure script and set up 130 struct in_addr in; local 133 if(Curl_inet_pton(AF_INET, hostname, &in) > 0) 135 return Curl_ip2addr(AF_INET, &in, hostname, port); 166 * The clearing of the buffer is a workaround for a gethostbyname_r bug in 217 * gethostbyname_r() in glibc [all...] |
/external/curl/tests/unit/ |
unit1396.c | 10 * This software is licensed as described in the file COPYING, which 38 const char *in; member in struct:test 80 for(i=0; list1[i].in; i++) { 83 list1[i].in, list1[i].inlen, 96 for(i=0; list2[i].in; i++) { 98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
|
/external/flac/libFLAC/include/private/ |
md5.h | 7 * written by Colin Plumb in 1993, no copyright is claimed. 8 * This code is in the public domain; do with it what you wish. 23 * Still in the public domain. 26 * Still in the public domain, with no warranty. 38 FLAC__uint32 in[16]; member in struct:__anon11231
|
/external/guava/guava/src/com/google/common/io/ |
CountingInputStream.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 42 * @param in the input stream to be wrapped 44 public CountingInputStream(@Nullable InputStream in) { 45 super(in); 54 int result = in.read(); 62 int result = in.read(b, off, len); 70 long result = in.skip(n); 76 in.mark(readlimit); 82 if (!in.markSupported()) [all...] |
/external/javassist/src/main/javassist/tools/ |
Dump.java | 6 * 1.1 (the "License"); you may not use this file except in compliance with 23 * Dump is a tool for viewing the class definition in the given 47 DataInputStream in = new DataInputStream( local 49 ClassFile w = new ClassFile(in);
|
/external/jcommander/src/main/java/com/beust/jcommander/internal/ |
DefaultConsole.java | 21 // Do not close the readers since System.in should not be closed 22 InputStreamReader isr = new InputStreamReader(System.in); 23 BufferedReader in = new BufferedReader(isr); local 24 String result = in.readLine();
|
/external/libcxx/src/ |
hash.cpp | 23 // handle all next_prime(i) for i in [1, 210), special case 0 138 // some potential prime numbers are not prime. In an ideal world, all potential 183 // If n is small enough, search in small_primes 189 // Start searching list of potential primes: L * k0 + indices[in] 194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L) local 196 n = L * k0 + indices[in]; 201 // 2. The i > sqrt(n), in which case n is prime. 561 if (++in == M) 564 in = 0; 566 n = L * k0 + indices[in]; [all...] |
/external/libdrm/tests/ |
auth.c | 6 * to deal in the Software without restriction, including without limitation 12 * paragraph) shall be included in all copies or substantial portions of the 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21 * IN THE SOFTWARE. 44 unsigned char in; local 46 ret = read(commfd[pipe], &in, 1); 49 event = in;
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gwt/ |
GwtBinaryTest.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
34 DataInputStream in = new DataInputStream(handle.read());
local 37 bytes[i] = in.readByte();
|
/external/libopus/tests/ |
test_opus_padding.c | 4 Redistribution and use in source and binary forms, with or without 11 - Redistributions in binary form must reproduce the above copyright 12 notice, this list of conditions and the following disclaimer in the 18 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER 23 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 /* Check for overflow in reading the padding length. 48 unsigned char *in = malloc(PACKETSIZE); local 52 if (!in || !out) { 56 in[0] = 0xff [all...] |
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_idct_intrin_sse2.c | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 17 __m128i in[2]; local 21 in[0] = load_input_data(input); 22 in[1] = load_input_data(input + 8); 26 idct4_sse2(in); 27 idct4_sse2(in); 82 __m128i in[8]; local [all...] |
/external/libweave/third_party/chromium/base/json/ |
string_escape_unittest.cc | 3 // found in the LICENSE file. 52 std::string in = cases[0].to_escape; local 54 EscapeJSONString(in, false, &out); 59 EscapeJSONString(in, true, &out_quoted); 64 // now try with a NULL in the string 67 in = null_prepend + in; 71 EscapeJSONString(in, false, &out); 86 std::string in = std::string(cases[i].to_escape); local 87 EXPECT_FALSE(IsStringUTF8(in)); [all...] |
/external/llvm/include/llvm/Support/ |
SwapByteOrder.h | 30 // The DLL version of the runtime lacks these functions (bug!?), but in a 101 } in, out; local 102 in.f = C; 103 out.i = SwapByteOrder_32(in.i); 111 } in, out; local 112 in.d = C; 113 out.i = SwapByteOrder_64(in.i);
|