HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 101 - 125 of 1097) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/io/
MultiInputStreamTest.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
87 InputStream in = joined.getInput(); local
88 assertFalse(in.markSupported());
89 assertEquals(10, in.available());
91 while (in.read() != -1) {
94 assertEquals(0, in.available());
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepFind.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 InputStream in = entry.openStream(); local
44 header.read(in);
49 in.close();
61 InputStream in = entry.openStream(); local
63 new ClassReader(in).accept(
69 in.close();
StringDumper.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 InputStream in = entry.openStream(); local
36 new ClassReader(in).accept(stringReader, 0);
40 in.close();
  /build/core/tasks/tools/
package-modules.mk 18 # Calculate the dest files in the output zip file.
40 define copy-tests-in-batch
53 $(call copy-tests-in-batch,$(wordlist 1,200,$(PRIVATE_COPY_PAIRS)))
54 $(call copy-tests-in-batch,$(wordlist 201,400,$(PRIVATE_COPY_PAIRS)))
55 $(call copy-tests-in-batch,$(wordlist 401,600,$(PRIVATE_COPY_PAIRS)))
56 $(call copy-tests-in-batch,$(wordlist 601,800,$(PRIVATE_COPY_PAIRS)))
57 $(call copy-tests-in-batch,$(wordlist 801,1000,$(PRIVATE_COPY_PAIRS)))
58 $(call copy-tests-in-batch,$(wordlist 1001,1200,$(PRIVATE_COPY_PAIRS)))
59 $(call copy-tests-in-batch,$(wordlist 1201,9999,$(PRIVATE_COPY_PAIRS)))
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
InMatcher.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
28 * A {@link Matcher} class for checking if value contained in a {@link Collection} or array.
58 description.appendText("in(").appendValue(mValues).appendText(")");
62 public static <T> Matcher<T> in(T... operand) { method in class:InMatcher
67 public static <T> Matcher<T> in(Collection<T> operand) { method in class:InMatcher
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
InitTest.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
36 float[] in = new float[INPUTSIZE]; local
42 in[i] = 0;
45 mIn.copy1DRangeFrom(0, INPUTSIZE, in);
  /developers/build/prebuilts/gradle/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.
  /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
  /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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
realpath.c 3 * found in the LICENSE file. */
35 const char* in = path; local
42 if (*in == '/') {
45 in++;
59 const char* next_slash = strchr(in, '/');
63 namelen = next_slash - in;
66 namelen = strlen(in);
67 next_in = in + namelen; // Move to the '\0'
73 } else if (namelen == 1 && strncmp(in, ".", 1) == 0) {
75 } else if (namelen == 2 && strncmp(in, "..", 2) == 0)
    [all...]
  /external/chromium_org/remoting/codec/
video_encoder_verbatim.cc 3 // found in the LICENSE file.
53 const uint8_t* in = frame.data() + rect.top() * in_stride + local
56 memcpy(out, in, row_size);
58 in += in_stride;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMerge.cpp 12 * This library is distributed in the hope that it will be useful,
55 FilterEffect* in = inputEffect(i); local
56 filterContext->drawImageBuffer(in->asImageBuffer(), drawingRegionOfInputImage(in->absolutePaintRect()));
  /external/chromium_org/third_party/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
128 BIO *in=NULL; local
194 BIO *in=NULL; local
261 BIO *in; local
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/dec/
streams.c 4 you may not use this file except in compliance with the License.
9 Unless required by applicable law or agreed to in writing, software
82 BrotliInput in; local
83 in.cb_ = BrotliStdinInputFunction;
84 in.data_ = NULL;
85 return in;
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Embed.c 14 /* 754 requires that FP exceptions run in "no stop" mode by default,
69 unsigned char *in; local
95 /* Overallocate; as multi-byte characters are in the argument, the
100 in = (unsigned char*)arg;
104 size_t converted = mbrtowc(out, (char*)in, argsize, &mbs);
111 unless there is a bug in the C library, or I
118 in the initial shift state. */
119 *out++ = 0xdc00 + *in++;
129 *out++ = 0xdc00 + *in++;
133 in += converted
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv20_state_frag.c 7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
60 uint64_t in; local
63 nv10_get_final_combiner(ctx, &in, &n);
66 PUSH_DATA (push, in);
67 PUSH_DATA (push, in >> 32)
    [all...]
  /external/chromium_org/third_party/opus/src/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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
filters_mips.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.
13 // MIPS optimized implementation of the Autocorrelation function in fixed point.
14 // NOTE! Different from SPLIB-version in how it scales the signal.
22 int16_t* in = (int16_t*)x; local
37 // Loop is unrolled 8 times, set accumulator to zero in branch delay slot.
43 "ulw %[r0], 0(%[in]) \n\t
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
genmacro.c 7 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS BE
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 FILE *in, *out; local
66 in = fopen(argv[i], "rt");
67 if (!in) {
76 while (fgets(str, MAXLINE, in)) {
    [all...]
  /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
40 * @param in the input stream to be wrapped
42 public CountingInputStream(InputStream in) {
43 super(in);
52 int result = in.read();
60 int result = in.read(b, off, len);
68 long result = in.skip(n);
74 in.mark(readlimit);
80 if (!in.markSupported())
    [all...]

Completed in 233 milliseconds

1 2 3 45 6 7 8 91011>>