OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:intArray
(Results
1 - 9
of
9
) sorted by null
/art/test/011-array-copy/src/
Main.java
79
int[]
intArray
= new int[ARRAY_SIZE];
84
initIntArray(
intArray
);
89
System.arraycopy(
intArray
, srcPos,
intArray
, dstPos, length);
93
if (
intArray
[i] != byteArray[i]) {
97
} else if (
intArray
[i] != shortArray[i]) {
101
} else if (
intArray
[i] != longArray[i]) {
109
": " + Arrays.toString(
intArray
));
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
SerializableBean.java
32
private int[]
intArray
;
64
return
intArray
;
67
public void setIntArray(int[]
intArray
) {
68
this.
intArray
=
intArray
;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
ArrayReferenceDebuggee.java
38
static int[]
intArray
= new int[10];
53
for (int i=0; i<
intArray
.length; i++) {
54
intArray
[i] = i;
/art/runtime/
transaction_test.cc
342
mirror::
IntArray
*
intArray
= intArrayField->GetObject(h_klass.Get())->AsIntArray();
343
ASSERT_TRUE(
intArray
!= nullptr);
344
ASSERT_EQ(
intArray
->GetLength(), 1);
345
ASSERT_EQ(
intArray
->GetWithoutChecks(0), 0);
392
intArray
->SetWithoutChecks<true>(0, 1);
405
EXPECT_EQ(
intArray
->GetWithoutChecks(0), 0);
/art/test/045-reflect-array/src/
Main.java
25
Object
intArray
;
27
intArray
= Array.newInstance(Integer.TYPE, 2);
29
int[] array = (int[])
intArray
;
31
Array.setInt(
intArray
, 1, 6);
33
if (Array.getInt(
intArray
, 0) != 5)
42
Array.setInt(
intArray
, 2, 27);
45
if (array.length != Array.getLength(
intArray
) ||
54
Array.set(
intArray
, 0, x123);
55
Array.set(
intArray
, 1, x456);
56
if (!Array.get(
intArray
, 0).equals(x123) || !Array.get(intArray, 1).equals(x456))
[
all
...]
/cts/tests/tests/content/src/android/content/pm/cts/
SignatureTest.java
89
int[]
intArray
= new int[1];
93
char[] charArray = signature.toChars(existingCharArray,
intArray
);
102
//
intArray
[0] represents the length of array.
103
assertEquals(
intArray
[0], SIGNATURE_BYTE_ARRAY.length);
108
int[]
intArray
= new int[1];
111
char[] charArray = signature.toChars(existingCharArray,
intArray
);
120
//
intArray
[0] represents the length of array.
121
assertEquals(
intArray
[0], SIGNATURE_BYTE_ARRAY.length);
126
int[]
intArray
= null;
129
char[] charArray = signature.toChars(existingCharArray,
intArray
);
[
all
...]
/cts/tests/tests/os/src/android/os/cts/
ParcelTest.java
481
int[]
intArray
= {111, 11, 1, 0, -1, -11, -111};
482
int[] intArray2 = new int[
intArray
.length];
484
p.writeValue(
intArray
);
489
assertEquals(
intArray
[i], intArray2[i]);
[
all
...]
BundleTest.java
403
int[]
intArray
= mBundle.getIntArray(KEY);
404
assertEquals(1006,
intArray
[0]);
405
assertEquals(1007,
intArray
[1]);
407
intArray
= mBundle.getIntArray(KEY);
408
assertEquals(1006,
intArray
[0]);
409
assertEquals(1007,
intArray
[1]);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar
Completed in 816 milliseconds