Home
last modified time | relevance | path

Searched refs:bp1 (Results 1 – 17 of 17) 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-ignore-breakpoints.js52 bp1 = Debug.setBreakPoint(f);
55 Debug.changeBreakPointIgnoreCount(bp1, 1);
67 Debug.changeBreakPointIgnoreCount(bp1, 2);
79 Debug.changeBreakPointIgnoreCount(bp1, 4);
Ddebug-conditional-breakpoints.js149 bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0');
155 assertEquals(5, Debug.findBreakPoint(bp1, false).hit_count());
157 Debug.clearBreakPoint(bp1);
162 bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0');
168 assertEquals(5, Debug.findBreakPoint(bp1, false).hit_count());
170 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-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/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/Sema/
Dblock-misc.c165 void (^bp1)(); in test17() local
170 f(1 ? bp : bp1); in test17()
/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/clang/test/CXX/drs/
Ddr1xx.cpp507 dr142::B *bp1 = this; // expected-error {{private base class}} in f() local
/external/v8/test/cctest/
Dtest-debug.cc922 int bp1 = SetBreakPoint(foo, 0); in TEST() local
932 ClearBreakPoint(bp1); in TEST()
1331 int bp1 = SetBreakPointFromJS(env->GetIsolate(), "foo", 0, 3); in TEST() local
1352 ClearBreakPointFromJS(env->GetIsolate(), bp1); in TEST()
1360 CHECK_EQ(1, bp1); in TEST()