HomeSort by relevance Sort by last modified time
    Searched defs:ab (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/compiler-rt/lib/asan/lit_tests/TestCases/Helpers/
initialization-nobug-extra.cc 3 static int ab = getAB(); variable
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
copy_alloc.pass.cpp 32 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
33 int* an = ab + sizeof(ab)/sizeof(ab[0]);
34 test(std::deque<int, test_allocator<int> >(ab, an, test_allocator<int>(3)),
38 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
39 int* an = ab + sizeof(ab)/sizeof(ab[0]);
40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3))
45 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
    [all...]
move_alloc.pass.cpp 25 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
26 int* an = ab + sizeof(ab)/sizeof(ab[0]);
29 for (int* p = ab; p < an; ++p)
32 for (int* p = ab; p < an; ++p)
40 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
41 int* an = ab + sizeof(ab)/sizeof(ab[0])
55 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
71 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
    [all...]
move_assign.pass.cpp 25 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
26 int* an = ab + sizeof(ab)/sizeof(ab[0]);
29 for (int* p = ab; p < an; ++p)
32 for (int* p = ab; p < an; ++p)
41 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
42 int* an = ab + sizeof(ab)/sizeof(ab[0])
57 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
74 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
    [all...]
copy.pass.cpp 30 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
31 int* an = ab + sizeof(ab)/sizeof(ab[0]);
32 test(std::deque<int>(ab, an));
50 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
51 int* an = ab + sizeof(ab)/sizeof(ab[0]);
52 test(std::deque<int, min_allocator<int>>(ab, an))
    [all...]
move.pass.cpp 25 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
26 int* an = ab + sizeof(ab)/sizeof(ab[0]);
29 for (int* p = ab; p < an; ++p)
32 for (int* p = ab; p < an; ++p)
40 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
41 int* an = ab + sizeof(ab)/sizeof(ab[0])
56 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
    [all...]
op_equal.pass.cpp 31 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
32 int* an = ab + sizeof(ab)/sizeof(ab[0]);
33 test(std::deque<int>(ab, an));
51 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
52 int* an = ab + sizeof(ab)/sizeof(ab[0]);
53 test(std::deque<int, min_allocator<int>>(ab, an))
    [all...]
iter_iter_alloc.pass.cpp 39 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
40 int* an = ab + sizeof(ab)/sizeof(ab[0]);
41 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), test_allocator<int>(3));
42 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), test_allocator<int>(4));
43 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), test_allocator<int>(5));
44 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), test_allocator<int>(6));
46 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), min_allocator<int>());
47 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), min_allocator<int>())
    [all...]
iter_iter.pass.cpp 52 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; local
53 int* an = ab + sizeof(ab)/sizeof(ab[0]);
54 test(input_iterator<const int*>(ab), input_iterator<const int*>(an));
55 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an));
56 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an));
57 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an));
58 test<stack_allocator<int, 4096> >(ab, an);
60 test<min_allocator<int> >(ab, an)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-581.js 39 var ab = a.concat(b); variable
40 assertEquals(2 * pow31 - 1, ab.length);
41 assertEquals(31, ab[pow31]);
42 assertEquals(32, ab[2 * pow31 - 1]);
regress-copy-hole-to-field.js 47 var o = {ab:5};
50 o.ab = a[i];
57 assertEquals(undefined, o.ab);
  /external/clang/test/CodeGenCXX/
atomicinit.cpp 30 void atomic_init_bool(_Atomic(bool) *ab, bool b) {
34 __c11_atomic_init(ab, b);
39 _Atomic(bool) ab; member in struct:AtomicBoolMember
47 AtomicBoolMember::AtomicBoolMember(bool b) : ab(b) { }
  /dalvik/dx/tests/119-merge-conflict/com/android/dx/merge/
MergeConflictTest.java 31 Dex ab = new DexMerger(a, b, CollisionPolicy.FAIL).merge(); local
33 // a and ab overlap; this should fail
34 DexMerger dexMerger = new DexMerger(a, ab, CollisionPolicy.FAIL);
  /developers/samples/android/ui/actionbarcompat/Styled/Styled/src/main/src/com/example/android/actionbarcompat/styled/
MainActivity.java 46 ActionBar ab = getSupportActionBar(); local
47 ab.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
50 ab.addTab(ab.newTab().setText("Tab 1").setTabListener(this));
51 ab.addTab(ab.newTab().setText("Tab 2").setTabListener(this));
52 ab.addTab(ab.newTab().setText("Tab 3").setTabListener(this));
  /external/clang/test/Sema/
decl-in-prototype.c 23 struct ab { // expected-note {{previous definition is here}} expected-note {{previous definition is here}} struct in struct:aA
28 int f5(struct aA { struct ab { int j; } b; struct ab { char glorx; } glorx; } *); // expected-warning {{declaration of 'struct aA' will not be visible}} expected-warning {{redefinition of 'ab' will not be visible}} expected-warning {{redefinition of 'ab' will not be visible}}
  /external/compiler-rt/lib/ppc/
gcc_qmul.c 21 double ab, tmp, tau; local
23 ab = A * B;
26 if (ab == 0.0) {
27 dst.s.hi = ab;
32 const doublebits abBits = { .d = ab };
34 dst.s.hi = ab;
45 tmp = LOWORDER(ab, aHi, aLo, bHi, bLo);
47 tau = ab + tmp;
49 dst.s.lo = (ab - tau) + tmp;
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_quota_unittest.cc 567 std::vector<std::string> ab; local
568 ab.push_back("a");
569 ab.push_back("b");
574 EXPECT_EQ(0u, storage_->GetBytesInUse(ab));
581 EXPECT_EQ(2u, storage_->GetBytesInUse(ab));
588 EXPECT_EQ(4u, storage_->GetBytesInUse(ab));
595 EXPECT_EQ(4u, storage_->GetBytesInUse(ab));
  /external/chromium_org/v8/test/cctest/
test-hashing.cc 222 uint8_t ab[2] = {a, b}; local
223 check(i::Vector<const uint8_t>(ab, 2));
test-weaktypedarrays.cc 55 static bool HasArrayBufferInWeakList(Heap* heap, JSArrayBuffer* ab) {
59 if (ab == o) return true;
155 i::OS::SNPrintF(source, "ab%d = null;", i);
165 i::OS::SNPrintF(source, "ab%d", j);
166 v8::Handle<v8::ArrayBuffer> ab = local
169 *v8::Utils::OpenHandle(*ab)));
188 v8::Handle<v8::ArrayBuffer> ab = v8::ArrayBuffer::New(2048); local
189 Handle<JSArrayBuffer> iab = v8::Utils::OpenHandle(*ab);
192 v8::Handle<View> ta1 = View::New(ab, 0, 256);
195 v8::Handle<View> ta2 = View::New(ab, 0, 128)
287 v8::Handle<v8::ArrayBuffer> ab = local
311 v8::Handle<v8::ArrayBuffer> ab = local
331 v8::Handle<v8::ArrayBuffer> ab = local
    [all...]
  /external/v8/test/cctest/
test-hashing.cc 215 char ab[2] = {a, b}; local
216 check(i::Vector<const char>(ab, 2));
  /external/eigen/blas/
level1_impl.h 86 Scalar ab = internal::abs(b); local
87 if((aa+ab)==Scalar(0))
97 Scalar amax = aa>ab ? a : b;
102 if (aa > ab) z = *s;
103 if (ab > aa && *c!=RealScalar(0))
  /system/core/libpixelflinger/
fixed.cpp 259 uint64_t ab = uint64_t(a)*b; local
260 uint32_t hi = ab>>32;
261 uint32_t lo = ab;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockService.java 500 final AlertDialog.Builder ab = new AlertDialog.Builder(this); local
513 ab.setTitle(getString(R.string.bluetooth_dock_settings_title));
516 ab.setMultiChoiceItems(items, mCheckedItems, mMultiClickListener);
532 ab.setTitle(getString(R.string.bluetooth_dock_settings_title));
548 ab.setView(view, viewSpacingLeft, 0 /* top */, viewSpacingRight, 0 /* bottom */);
551 ab.setPositiveButton(getString(android.R.string.ok), mClickListener);
554 mDialog = ab.create();
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 445 ActionBar ab = getActionBar(); local
449 ab.setCustomView(mToggleSwitch, new ActionBar.LayoutParams(
453 ab.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_CUSTOM);
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsQuad.cpp 208 double ab = SkDInterp(src[0], src[2], t); local
210 double abc = SkDInterp(ab, bc, t);
283 double ab = SkDInterp(src[0], src[2], t); local
286 dst[2] = ab;
287 dst[4] = SkDInterp(ab, bc, t);

Completed in 646 milliseconds

1 2 3 4