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

1 2

  /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) { }
mangle.cpp 400 struct AmbiguousBase { int ab; }; member in struct:test3::AmbiguousBase
406 template <class T> decltype(((T*) 0)->Path1::ab) get_ab_1(T &ref) { return ref.Path1::ab; }
409 template <class T> decltype(((T*) 0)->Path2::ab) get_ab_2(T &ref) { return ref.Path2::ab; }
  /dalvik/dx/tests/119-merge-conflict/com/android/dx/merge/
MergeConflictTest.java 31 DexBuffer 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);
  /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;
  /frameworks/compile/libbcc/runtime/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/v8/test/cctest/
test-hashing.cc 215 char ab[2] = {a, b}; local
216 check(i::Vector<const char>(ab, 2));
  /packages/apps/Settings/src/com/android/settings/
DockSettings.java 162 final AlertDialog.Builder ab = new AlertDialog.Builder(getActivity()); local
163 ab.setTitle(R.string.dock_not_found_title);
164 ab.setMessage(R.string.dock_not_found_text);
165 ab.setPositiveButton(android.R.string.ok, null);
166 return ab.create();
  /system/core/libpixelflinger/
fixed.cpp 258 uint64_t ab = uint64_t(a)*b; local
259 uint32_t hi = ab>>32;
260 uint32_t lo = ab;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockService.java 482 final AlertDialog.Builder ab = new AlertDialog.Builder(this); local
483 ab.setTitle(getString(R.string.bluetooth_dock_settings_title));
486 ab.setMultiChoiceItems(items, mCheckedItems, mMultiClickListener);
501 ab.setView(view, viewSpacingLeft, 0 /* top */, viewSpacingRight, 0 /* bottom */);
508 ab.setPositiveButton(getString(android.R.string.ok), mClickListener);
511 mDialog = ab.create();
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 430 ActionBar ab = getActionBar(); local
434 ab.setCustomView(mToggleSwitch, new ActionBar.LayoutParams(
438 ab.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_CUSTOM);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 128 HasMixins<A, B> ab; local
129 HasMixins<A, B> ab2 = ab;
  /external/clang/test/SemaTemplate/
friend-template.cpp 244 A<double>::B<double> ab; member in namespace:rdar11147355
  /external/regex-re2/re2/
prefilter.cc 141 // we know "ab" is a required string, then it doesn't help at all to
144 // regexps, matching ab will already allow this regexp to be a
309 Info *ab = new Info(); local
311 CrossProduct(a->exact_, b->exact_, &ab->exact_);
312 ab->is_exact_ = true;
316 return ab;
319 // Constructs an inexact Info for ab given a and b.
328 Info *ab = new Info();
330 ab->match_ = Prefilter::And(a->TakeMatch(), b->TakeMatch());
331 ab->is_exact_ = false
339 Info *ab = new Info(); local
361 Info *ab = new Info(); local
378 Info *ab = new Info(); local
    [all...]
  /external/skia/src/gpu/
GrPathUtils.cpp 284 SkVector ab = p[1]; local
285 ab -= p[0];
294 ab.scale(gLengthScale);
298 c0 += ab;
GrAAHairLinePathRenderer.cpp 374 // to edges ab and bc:
391 SkVector ab = b; local
392 ab -= a;
399 GrAssert(ab.length() > 0 && cb.length() > 0);
401 ab.normalize();
403 abN.setOrthog(ab, SkVector::kLeft_Side);
  /frameworks/compile/libbcc/tests/data/src/
otcc-ansi.c 6 void ab(int);
377 ab(1);
396 void ab (int j) { function
459 ab(0);
  /external/skia/src/core/
SkGeometry.cpp 90 float ab = a - b; local
92 if (ab < 0)
94 return ab == 0 || bc < 0;
206 SkScalar ab = SkScalarInterp(src[0], src[2], t);
208 return SkScalarInterp(ab, bc, t);
258 SkScalar ab = SkScalarInterp(src[0], src[2], t); local
262 dst[2] = ab;
263 dst[4] = SkScalarInterp(ab, bc, t);
497 SkScalar ab = SkScalarInterp(src[0], src[2], t);
500 SkScalar abc = SkScalarInterp(ab, bc, t)
570 SkScalar ab = SkScalarInterp(src[0], src[2], t); local
    [all...]
SkStroke.cpp 262 SkVector ab = pts[1] - pts[0]; local
266 bool degenerateAB = degenerate_vector(ab);
278 ab = pts[2] - pts[0];
279 degenerateAB = degenerate_vector(ab);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 237 float ab = interpolate(controlPoint0, controlPoint1, t); local
240 float abc = interpolate(ab, bc, t);
399 float ab = interpolate(controlPoint0, controlPoint1, t); local
402 float abc = interpolate(ab, bc, t);
407 dst[2] = ab;
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java 1035 AudioBuffer ab = (AudioBuffer) ad; local
    [all...]
  /external/skia/tests/
MathTest.cpp 109 SkLONGLONG ab = (SkLONGLONG)a * b;
111 ab = -ab;
113 return ab >> 16;
277 int ab = a * b; local
278 float s = ab / 255.0f;
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 297 DexBuffer ab = new DexMerger(a, b, CollisionPolicy.FAIL).merge(); local
298 outArray = ab.getBytes();
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 611 int ab = in.read(); local
612 int a = byte0(ab);
613 int b = byte1(ab);
632 int ab = in.read(); local
633 int a = byte0(ab);
634 int b = byte1(ab);
    [all...]
  /external/icu4c/test/cintltst/
custrtst.c 495 ab[] = { 0x61, 0x62, 0 }, local
637 if (u_strspn(testString, ab) != 2) {
    [all...]

Completed in 897 milliseconds

1 2