HomeSort by relevance Sort by last modified time
    Searched refs:BPtr (Results 1 - 16 of 16) sorted by null

  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move_convert.single.pass.cpp 141 typedef std::unique_ptr<B> BPtr;
142 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
146 typedef std::unique_ptr<B, Deleter<B> > BPtr;
147 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
151 typedef std::unique_ptr<B, NCDeleter<A>&> BPtr;
152 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
156 typedef std::unique_ptr<B, const NCConstDeleter<A>&> BPtr;
157 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
168 typedef std::unique_ptr<B> BPtr;
170 BPtr b(new B)
    [all...]
move_convert.pass.cpp 154 typedef std::unique_ptr<VT> BPtr;
155 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
159 typedef std::unique_ptr<VT, CDeleter<VT> > BPtr;
160 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
164 typedef std::unique_ptr<VT, NCDeleter<const VT>&> BPtr;
165 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
169 typedef std::unique_ptr<VT, const NCConstDeleter<const VT>&> BPtr;
170 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move_convert.single.pass.cpp 141 typedef std::unique_ptr<B> BPtr;
142 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
146 typedef std::unique_ptr<B, Deleter<B> > BPtr;
147 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
151 typedef std::unique_ptr<B, NCDeleter<A>&> BPtr;
152 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
156 typedef std::unique_ptr<B, const NCConstDeleter<A>&> BPtr;
157 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
168 typedef std::unique_ptr<B> BPtr;
170 BPtr b(new B)
    [all...]
move_convert.pass.cpp 154 typedef std::unique_ptr<VT> BPtr;
155 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
159 typedef std::unique_ptr<VT, CDeleter<VT> > BPtr;
160 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
164 typedef std::unique_ptr<VT, NCDeleter<const VT>&> BPtr;
165 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
169 typedef std::unique_ptr<VT, const NCConstDeleter<const VT>&> BPtr;
170 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
Misc.c 841 UINT16 *BPtr;
899 BPtr = (UINT16 *) Buffer;
900 *BPtr++ = CallIndex;
904 *BPtr++ = TO_OFFSET (MemPageAddress);
905 *BPtr++ = TO_SEGMENT (MemPageAddress);
909 BPtr = (UINT16 *) Buffer;
910 DEBUG ((DEBUG_NET, " Buffer = %04X %04X %04X", *BPtr, *(BPtr + 1), *(BPtr + 2)));
932 BPtr = (UINT16 *) Buffer;
    [all...]
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
move_convert.runtime.pass.cpp 24 template <class APtr, class BPtr>
25 void testAssign(APtr& aptr, BPtr& bptr) {
26 A* p = bptr.get();
28 aptr = std::move(bptr);
30 assert(bptr.get() == 0);
move_convert.pass.cpp 291 typedef std::unique_ptr<VT> BPtr;
292 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
296 typedef std::unique_ptr<VT, CDeleter<VT> > BPtr;
297 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
301 typedef std::unique_ptr<VT, NCDeleter<const VT>&> BPtr;
302 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
306 typedef std::unique_ptr<VT, const NCConstDeleter<const VT>&> BPtr;
307 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
move_convert.single.pass.cpp 25 template <class APtr, class BPtr>
26 void testAssign(APtr& aptr, BPtr& bptr) {
27 A* p = bptr.get();
29 aptr = std::move(bptr);
31 assert(bptr.get() == 0);
120 std::unique_ptr<B> bptr(new B);
122 testAssign(aptr, bptr);
128 std::unique_ptr<B, Deleter<B> > bptr(new B, std::move(del));
130 testAssign(aptr, bptr);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
move_convert.runtime.pass.cpp 24 template <class APtr, class BPtr>
25 void testAssign(APtr& aptr, BPtr& bptr) {
26 A* p = bptr.get();
28 aptr = std::move(bptr);
30 assert(bptr.get() == 0);
move_convert.pass.cpp 291 typedef std::unique_ptr<VT> BPtr;
292 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
296 typedef std::unique_ptr<VT, CDeleter<VT> > BPtr;
297 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
301 typedef std::unique_ptr<VT, NCDeleter<const VT>&> BPtr;
302 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
306 typedef std::unique_ptr<VT, const NCConstDeleter<const VT>&> BPtr;
307 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
move_convert.single.pass.cpp 25 template <class APtr, class BPtr>
26 void testAssign(APtr& aptr, BPtr& bptr) {
27 A* p = bptr.get();
29 aptr = std::move(bptr);
31 assert(bptr.get() == 0);
120 std::unique_ptr<B> bptr(new B);
122 testAssign(aptr, bptr);
128 std::unique_ptr<B, Deleter<B> > bptr(new B, std::move(del));
130 testAssign(aptr, bptr);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ipf/
EbcSupport.c 737 UINT8 *BPtr;
770 BPtr = (UINT8 *) MemPtr;
772 *BPtr = (UINT8) Low64;
774 BPtr++;
778 *BPtr = (UINT8) High64;
780 BPtr++;
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp     [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
read_test.go 776 BPtr *bool
804 <BPtr></BPtr>
838 BPtr: &zBool,
869 BPtr: &vBool1,
895 BPtr: &zBool,
  /prebuilts/go/linux-x86/src/encoding/xml/
read_test.go 776 BPtr *bool
804 <BPtr></BPtr>
838 BPtr: &zBool,
869 BPtr: &vBool1,
895 BPtr: &zBool,
  /external/libmojo/mojo/public/cpp/bindings/tests/
interface_ptr_unittest.cc 691 BPtr b;

Completed in 280 milliseconds