Home
last modified time | relevance | path

Searched refs:bp1 (Results 1 – 18 of 18) sorted by relevance

/external/clang/test/SemaCXX/
Daddress-space-conversion.cpp52 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) { in test_static_cast() argument
55 (void)static_cast<A_ptr_1>(bp1); in test_static_cast()
72 (void)static_cast<A_ptr>(bp1); // expected-error{{is not allowed}} in test_static_cast()
77 (void)static_cast<A_ptr_2>(bp1); // expected-error{{is not allowed}} in test_static_cast()
103 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) { in test_dynamic_cast() argument
106 (void)dynamic_cast<A_ptr_1>(bp1); in test_dynamic_cast()
115 (void)dynamic_cast<A_ptr>(bp1); // expected-error{{casts away qualifiers}} in test_dynamic_cast()
120 (void)dynamic_cast<A_ptr_2>(bp1); // expected-error{{casts away qualifiers}} in test_dynamic_cast()
133 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2, in test_reinterpret_cast() argument
139 (void)reinterpret_cast<A_ptr>(bp1); in test_reinterpret_cast()
[all …]
Dnullability-declspec.cpp7 _Nonnull int (^bp1)(int); // expected-error{{nullability specifier '_Nonnull' cannot be applied to … variable
/external/v8/test/mjsunit/
Ddebug-enable-disable-breakpoints.js52 bp1 = Debug.setBreakPoint(f);
57 Debug.disableBreakPoint(bp1);
62 Debug.enableBreakPoint(bp1);
77 Debug.disableBreakPoint(bp1);
82 Debug.enableBreakPoint(bp1);
88 Debug.disableBreakPoint(bp1);
98 Debug.enableBreakPoint(bp1);
Ddebug-breakpoints.js44 bp1 = Debug.setBreakPoint(f, 0, 8);
50 Debug.clearBreakPoint(bp1);
81 bp1 = Debug.setBreakPoint(g, 2, 0);
102 Debug.clearBreakPoint(bp1);
140 bp1 = setBreakpointByPosition(f, 8);
146 Debug.clearBreakPoint(bp1);
167 bp1 = setBreakpointByPosition(g, 12);
188 Debug.clearBreakPoint(bp1);
220 bp1 = setBreakpointByPosition(h, scenario[i][0],
224 Debug.clearBreakPoint(bp1);
Ddebug-multiple-breakpoints.js56 bp1 = Debug.setBreakPoint(f);
66 Debug.clearBreakPoint(bp1);
78 bp1 = Debug.setBreakPoint(g);
87 Debug.clearBreakPoint(bp1);
Ddebug-conditional-breakpoints.js136 bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0');
142 Debug.clearBreakPoint(bp1);
147 bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0');
153 Debug.clearBreakPoint(bp1);
Ddebug-step.js36 var bp1, bp2; variable
65 bp1 = Debug.setBreakPoint(f, 1);
Ddebug-clearbreakpointgroup.js97 var bp1 = Debug.setScriptBreakPointById(scriptId, 1, null, null, groupId1); variable
/external/boringssl/src/crypto/obj/
Dobj_xref.pl56 my$bp1 = $oid_tbl{$xref_tbl{$b}[0]};
57 return $ap1 - $bp1 if ($ap1 != $bp1);
/external/clang/test/Sema/
Dblock-misc.c165 void (^bp1)(); in test17() local
170 f(1 ? bp : bp1); in test17()
/external/eigen/test/
Dgeo_alignedbox.cpp60 BoxType *bp1 = new BoxType(dim); in alignedbox() local
61 bp0->extend(*bp1); in alignedbox()
63 delete bp1; in alignedbox()
/external/clang/test/FixIt/
Dfixit-nullability-declspec.cpp9 _Nonnull int (^bp1)(int); // expected-error{{nullability specifier '_Nonnull' cannot be applied to … variable
/external/opencv/cv/src/
Dcvcontourtree.cpp78 a, ap1, ap2, an1, an2, b, bp1, bp2, bn1, bn2; in icvCreateContourTree() local
207 &ap1, &bp1 )); in icvCreateContourTree()
359 bp2 = bp1; in icvCreateContourTree()
360 bp1 = b; in icvCreateContourTree()
400 &bp1 )); in icvCreateContourTree()
485 tree_one.r2 = bp1 / ap1; in icvCreateContourTree()
/external/llvm/test/CodeGen/AArch64/
Darm64-ldp.ll288 %bp1 = bitcast i64* %p1 to i8*
289 %bp1p1 = getelementptr inbounds i8, i8* %bp1, i64 1
311 %bp1 = bitcast i32* %p1 to i8*
312 %bp1p1 = getelementptr inbounds i8, i8* %bp1, i64 1
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
DPhysicsSpace.java199 public boolean needBroadphaseCollision(BroadphaseProxy bp, BroadphaseProxy bp1) { in setOverlapFilterCallback()
200 boolean collides = (bp.collisionFilterGroup & bp1.collisionFilterMask) != 0; in setOverlapFilterCallback()
202 collides = (bp1.collisionFilterGroup & bp.collisionFilterMask) != 0; in setOverlapFilterCallback()
207 …h.CollisionObject colOb1 = (com.bulletphysics.collision.dispatch.CollisionObject) bp1.clientObject; in setOverlapFilterCallback()
/external/clang/test/CXX/drs/
Ddr1xx.cpp507 dr142::B *bp1 = this; // expected-error {{private base class}} in f() local
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/
DParticleSystem.java527 float bp1 = ap0 + r; in computeDepthForGroup()
532 if (bp0 > bp1) { in computeDepthForGroup()
533 m_depthBuffer[b] = bp1; in computeDepthForGroup()
/external/v8/test/cctest/
Dtest-debug.cc910 int bp1 = SetBreakPoint(foo, 0); in TEST() local
920 ClearBreakPoint(bp1); in TEST()
1319 int bp1 = SetBreakPointFromJS(env->GetIsolate(), "foo", 0, 3); in TEST() local
1340 ClearBreakPointFromJS(env->GetIsolate(), bp1); in TEST()
1348 CHECK_EQ(1, bp1); in TEST()