HomeSort by relevance Sort by last modified time
    Searched refs:array2 (Results 1 - 25 of 265) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/test/SemaCXX/
warn-self-comparisons.cpp 4 void f(int (&array1)[2], int (&array2)[2]) {
5 if (array1 == array2) { } // no warning
non-empty-class-size-zero.cpp 7 int array2[0]; member in struct:X
c99-variable-length-array-cxx11.cpp 22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} local
  /libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java 28 private Object[] array2; field in class:DeepArrayOpsBenchmark
35 array2 = new Object[arrayLength * 13];
38 array2[i] = new IntWrapper(i);
41 array2[i + 1] = new16ElementObjectarray();
44 array2[i + 2] = new boolean[16];
47 array2[i + 3] = new byte[16];
50 array2[i + 4] = new char[16];
53 array2[i + 5] = new short[16];
56 array2[i + 6] = new float[16];
59 array2[i + 7] = new long[16]
    [all...]
  /art/test/559-bce-ssa/src/
Main.java 19 public static void foo(int[] array, int[] array2, int start, int end) {
21 array[i] = array2[array.length] + 1;
  /external/clang/test/Sema/
self-comparison.c 50 int array2[2]; local
65 return array1 == array2; // expected-warning{{array comparison always evaluates to false}}
66 return array1 != array2; // expected-warning{{array comparison always evaluates to true}}
71 return array1 < array2; // expected-warning{{array comparison always evaluates to a constant}}
72 return array1 <= array2; // expected-warning{{array comparison always evaluates to a constant}}
73 return array1 > array2; // expected-warning{{array comparison always evaluates to a constant}}
74 return array1 >= array2; // expected-warning{{array comparison always evaluates to a constant}}
vector-ops.c 21 int array2[17]; local
23 (void)(array2[v2ua]); // expected-error{{array subscript is not an integer}}
  /art/test/554-checker-rtp-checkcast/src/
Main.java 60 int[] array2 = (int[]) returnIntArray(); local
65 catch_phi = array2;
  /ndk/tests/device/test-gnustl-full/unit/
insert_test.cpp 34 char const* array2 [] = { "amanda", "saskia", "carrie" }; local
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
58 char const* array2 [] = { "amanda", "saskia", "carrie" }; local
62 copy(array2, array2 + 3, inserter(names, i));
  /ndk/tests/device/test-stlport/unit/
insert_test.cpp 34 char const* array2 [] = { "amanda", "saskia", "carrie" }; local
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
58 char const* array2 [] = { "amanda", "saskia", "carrie" }; local
62 copy(array2, array2 + 3, inserter(names, i));
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 19 int array2[X2<>::value? 1 : -1]; variable
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
KeyGeneratorThread.java 43 byte[] array2 = k.getEncoded();
46 if (array1[i] == array2[i]) {
61 array2 = k.getEncoded();
63 if (array1[i] == array2[i]) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java 65 byte[] array1, array2;
68 array2 = bytes1;
71 array2 = bytes2;
79 if (array1[i] != array2[i]) {
97 int length2 = array2.length;
125 if (!mMatchFlags2[j] && c1 == array2[j]) {
144 if (array1[i] != array2[j]) {
  /external/proguard/src/proguard/util/
ArrayUtil.java 34 * @param array2 the second array.
38 public static boolean equal(byte[] array1, byte[] array2, int size)
42 if (array1[index] != array2[index])
55 * @param array2 the second array.
59 public static boolean equal(short[] array1, short[] array2, int size)
63 if (array1[index] != array2[index])
76 * @param array2 the second array.
80 public static boolean equal(int[] array1, int[] array2, int size)
84 if (array1[index] != array2[index])
97 * @param array2 the second array
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stackdepot_test.cc 62 uptr array2[] = {1, 2, 3, 4, 8, 9}; local
63 StackTrace s2(array2, ARRAY_SIZE(array2));
70 uptr array2[] = {7, 1, 3, 0}; local
75 StackTrace s2(array2, ARRAY_SIZE(array2));
  /external/eigen/test/eigen2/
eigen2_map.cpp 20 Scalar* array2 = ei_aligned_new<Scalar>(size); local
25 Map<VectorType>(array2, size) = Map<VectorType>(array1, size);
28 VectorType ma2 = Map<VectorType, Aligned>(array2, size);
34 ei_aligned_delete(array2, size);
47 Scalar* array2 = ei_aligned_new<Scalar>(size); local
48 for(int i = 0; i < size; i++) array2[i] = Scalar(1);
53 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>((const Scalar*)array1, rows, cols); // test non-const-correctness support in eigen2
56 MatrixType ma2 = Map<MatrixType, Aligned>(array2, rows, cols);
62 ei_aligned_delete(array2, size);
74 Scalar* array2 = ei_aligned_new<Scalar>(size) local
    [all...]
  /external/valgrind/drd/tests/
custom_alloc.c 60 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
61 array2 = 0; // leak
  /art/compiler/utils/
dedupe_set_test.cc 71 const std::vector<uint8_t>* array2; local
75 array2 = deduplicator.Add(self, test2);
76 ASSERT_EQ(array2, array1);
77 ASSERT_TRUE(std::equal(test2.begin(), test2.end(), array2->begin()));
  /external/eigen/test/
mapped_matrix.cpp 25 Scalar* array2 = internal::aligned_new<Scalar>(size); local
30 Map<VectorType, Aligned>(array2, size) = Map<VectorType,Aligned>(array1, size);
33 VectorType ma2 = Map<VectorType, Aligned>(array2, size);
43 internal::aligned_delete(array2, size);
57 Scalar* array2 = internal::aligned_new<Scalar>(size); local
58 for(int i = 0; i < size; i++) array2[i] = Scalar(1);
63 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>(array1, rows, cols);
66 MatrixType ma2 = Map<MatrixType, Aligned>(array2, rows, cols);
72 internal::aligned_delete(array2, size);
85 Scalar* array2 = internal::aligned_new<Scalar>(size) local
124 Scalar* array2 = reinterpret_cast<Scalar*>(sizeof(Scalar)\/2+std::size_t(array1)); local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-263276.js 33 var array2 = []; variable
34 array2.bar = true;
42 bad(array2); // Length is now 1.
43 bad(array2); // Length is now 2.
45 bad(array2); // Length is now 3.
46 assertEquals(3, array2.length);
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 37 int array2[sizeof(X3<int>)]; variable
  /external/clang/test/Preprocessor/
line-directive.c 93 extern char array2[\
  /external/clang/test/SemaTemplate/
instantiate-declref-ice.cpp 25 int array2[X0<int>::value == sizeof(int)? 1 : -1]; variable
  /packages/apps/ContactsCommon/src/com/android/contacts/common/format/
FormatUtils.java 57 * Finds the earliest point in array1 at which the first part of array2 matches. For example,
60 public static int overlapPoint(char[] array1, char[] array2) {
61 if (array1 == null || array2 == null) {
65 int count2 = array2.length;
68 while (count1 > 0 && count2 > 0 && array1[count1 - 1] == array2[count2 - 1]) {
80 if (array1[i+j] != array2[j]) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
ResizableIntArrayTests.java 39 int[] array2 = null, array3 = null; local
46 array2 = src.getPrimitiveArray();
54 assertSame("array after add " + i, array2, src.getPrimitiveArray());
119 final int[] array2 = src.getPrimitiveArray(); local
121 assertNotSame("array after reset", array, array2);
132 assertSame("array after add " + i, array2, src.getPrimitiveArray());
150 final int[] array2 = src.getPrimitiveArray(); local
152 assertNotSame("array after larger setLength", array, array2);
153 assertEquals("array length after larger setLength", largerLength, array2.length);
167 assertSame("array after smaller setLength", array2, array3)
207 final int[] array2 = dst.getPrimitiveArray(); local
    [all...]

Completed in 1380 milliseconds

1 2 3 4 5 6 7 8 91011