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

<<11121314151617181920>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GetElementAt.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
30 private int[] in; field in class:GetElementAt
49 in = new int[size];
51 in[i] = random.nextInt(100);
60 gIn.copyFrom(in);
69 assertEquals("idx = " + k, in[k], out[k]);
81 gIn.copyFrom(in);
90 assertEquals("idx = " + k, in[k], out[k]);
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.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
45 ImageView in = (ImageView) findViewById(R.id.displayin); local
46 in.setImageBitmap(mBitmapIn);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ExplicitTest.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
176 DerInputStream in = new DerInputStream((byte[]) taggedType[i][1]); local
178 ((ASN1Type) taggedType[i][2]).decode(in));