/external/clang/test/Parser/ |
pragma-visibility2.c | 13 int v2; variable 14 // CHECK: @v2 = common global i32 0, align 4
|
/external/oprofile/libutil++/tests/ |
string_filter_tests.cpp | 52 vector<string> v2; local 54 string_filter f6(v1, v2); 61 string_filter f7(v1, v2); 68 v2.push_back("no"); 69 v2.push_back("no2"); 71 string_filter f8(v1, v2); 79 string_filter f9(v1, v2);
|
/external/clang/test/CodeGen/ |
cxx-value-init.cpp | 5 float v2 = float(); variable
|
mmx-inline-asm.c | 9 __m64 v1, v2, v3, v4, v5, v6, v7; local 19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
|
/external/clang/test/SemaTemplate/ |
qualified-names-diag.cpp | 14 vector<Real> v2; local 15 v1 = v2; // expected-error{{no viable overloaded '='}}
|
instantiate-deeply.cpp | 10 c v2 = v1 * v1; local 13 field += v2 + v4;
|
/external/stlport/test/unit/ |
fib.h | 6 Fibonacci() : v1(0), v2(1) {} 10 int v2; member in class:Fibonacci 16 int r = v1 + v2; 17 v1 = v2; 18 v2 = r;
|
setinter_test.cpp | 40 int v2[4] = { 10, 13, 17, 23 }; local 43 set_intersection((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result); 55 vector <int> v2(10); 56 __iota(v2.begin(), v2.end(), 7); 59 set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(inter));
|
setunion_test.cpp | 40 int v2[4] = { 10, 13, 17, 23 }; local 43 set_union((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result); 58 vector <int> v2(10); 59 __iota(v2.begin(), v2.end(), 7); 62 set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
|
/ndk/tests/device/test-gnustl-full/unit/ |
fib.h | 6 Fibonacci() : v1(0), v2(1) {} 10 int v2; member in class:Fibonacci 16 int r = v1 + v2; 17 v1 = v2; 18 v2 = r;
|
setinter_test.cpp | 40 int v2[4] = { 10, 13, 17, 23 }; local 43 set_intersection((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result); 55 vector <int> v2(10); 56 __iota(v2.begin(), v2.end(), 7); 59 set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(inter));
|
setunion_test.cpp | 40 int v2[4] = { 10, 13, 17, 23 }; local 43 set_union((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result); 58 vector <int> v2(10); 59 __iota(v2.begin(), v2.end(), 7); 62 set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
|
/ndk/tests/device/test-stlport/unit/ |
fib.h | 6 Fibonacci() : v1(0), v2(1) {} 10 int v2; member in class:Fibonacci 16 int r = v1 + v2; 17 v1 = v2; 18 v2 = r;
|
setinter_test.cpp | 40 int v2[4] = { 10, 13, 17, 23 }; local 43 set_intersection((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result); 55 vector <int> v2(10); 56 __iota(v2.begin(), v2.end(), 7); 59 set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(inter));
|
setunion_test.cpp | 40 int v2[4] = { 10, 13, 17, 23 }; local 43 set_union((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result); 58 vector <int> v2(10); 59 __iota(v2.begin(), v2.end(), 7); 62 set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
|
/cts/tests/tests/view/src/android/view/cts/ |
View_FocusHandlingTest.java | 146 View v2 = activity.findViewById(R.id.view2); local 151 assertNotNull(v2); 157 assertFalse(v2.isFocusable()); 162 v2.setFocusable(true); 167 assertTrue(v2.isFocusable()); 174 v2.setNextFocusLeftId(R.id.view1); 175 v2.setNextFocusDownId(R.id.view4); 187 assertEquals(R.id.view1, v2.getNextFocusLeftId()); 188 assertEquals(R.id.view4, v2.getNextFocusDownId()); 197 assertSame(v2, v1.focusSearch(View.FOCUS_RIGHT)) [all...] |
/cts/tests/appsecurity-tests/src/com/android/cts/monkey/ |
VerbosityTest.java | 36 String v2 = mDevice.executeShellCommand("monkey -v -v -p " + PKGS[0] + " 500"); local 37 assertTrue(v2.contains("Events injected")); 38 assertTrue(v2.contains("Sending Touch")); 39 assertTrue(v2.contains("Sending Trackball")); 40 assertTrue(v2.contains("Switch")); 41 assertTrue(v2.contains("Sleeping")); 44 assertTrue(v1.length() < v2.length());
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/invokestatic/jm/ |
T_invokestatic_4.java | 21 static long v2 = 123456789l; field in class:T_invokestatic_4 24 return v2;
|
/external/clang/test/Sema/ |
attr-cleanup.c | 12 int v2 __attribute((cleanup(1, 2))); // expected-error {{attribute takes one argument}} 32 int v2 __attribute__((cleanup(c3))); // expected-error {{'cleanup' function 'c3' parameter has type 'struct s' which is incompatible with type 'int *'}} local
|
vector-assign.c | 10 v2u v2; local 15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2u'}} 20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2s'}} 21 v2 = v3; // expected-error {{assigning to 'v2u' from incompatible type 'v1s'}} 22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2f'}} 23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v4ss'}} 26 v3 = v2; // expected-error {{assigning to 'v1s' from incompatible type 'v2u'}} 31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2u'}} 36 v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2u'}}
|
vector-cast.c | 10 t2 v2; local 13 v2 = (t2)v1; // -expected-error {{invalid conversion between vector type \ 15 v1 = (t1)v2; // -expected-error {{invalid conversion between vector type \ 17 v3 = (t3)v2;
|
/system/extras/tests/bionic/libc/other/ |
test_aligned.c | 10 unsigned v2; local 20 v2 = *(unsigned*)(tab+o); 22 if (v2 != val) { 23 printf( "FAIL (%08x)\n", v2 ); 33 unsigned v2; local 40 v2 = ((unsigned)tab[o+0] << 24) | 45 if (v2 != val) { 46 printf( "FAIL (%08x)\n", v2 ); 56 unsigned short v2; local 64 v2 = *(unsigned short*)(tab+o) 77 unsigned short v2; local [all...] |
/external/chromium/chrome/browser/sync/sessions/ |
status_controller_unittest.cc | 83 std::vector<int64> v2; local 84 v2.push_back(1); 85 status.set_unsynced_handles(v2);
|
/external/clang/test/SemaCXX/ |
type-convert-construct.cpp | 5 int v2 = typeof(int)(1,2); // expected-error {{excess elements in scalar initializer}} local
|
/external/dropbear/libtommath/ |
bn_mp_exteuclid.c | 23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local 26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) { 34 /* initialize, (v1,v2,v3) = (0,1,b) */ 35 mp_set(&v2, 1); 43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */ 46 if ((err = mp_mul(&v2, &q, &tmp)) != MP_OKAY) { goto _ERR; } 51 /* (u1,u2,u3) = (v1,v2,v3) */ 53 if ((err = mp_copy(&v2, &u2)) != MP_OKAY) { goto _ERR; } 56 /* (v1,v2,v3) = (t1,t2,t3) */ 58 if ((err = mp_copy(&t2, &v2)) != MP_OKAY) { goto _ERR; [all...] |