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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
pointer_type.pass.cpp 14 // Test unique_ptr<T[]>::pointer type
21 struct pointer {}; struct in struct:Deleter
28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/
pointer_type.pass.cpp 14 // Test unique_ptr::pointer type
21 struct pointer {}; struct in struct:Deleter
28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
pointer_type.pass.cpp 14 // Test unique_ptr<T[]>::pointer type
21 struct pointer {}; struct in struct:Deleter
28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/
pointer_type.pass.cpp 14 // Test unique_ptr::pointer type
21 struct pointer {}; struct in struct:Deleter
28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /external/icu/icu4c/source/common/
uelement.h 30 * It may be either a 32-bit integral value or an opaque void* pointer.
31 * The void* pointer may be smaller than 32 bits (e.g. 24 bits)
34 * Because a UElement is the size of a native pointer or a 32-bit
38 void* pointer; member in union:UElement
61 * a pointer, or clone a pointer, as appropriate.
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 15 // typedef Alloc::pointer | value_type* pointer;
29 typedef Ptr<T> pointer; typedef in struct:A
40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
41 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
const_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<const value_type>
30 typedef Ptr<T> pointer; typedef in struct:A
46 typedef CPtr<T> pointer; typedef in struct:C
const_void_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<const void>
31 typedef Ptr<T> pointer; typedef in struct:A
void_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<void>
31 typedef Ptr<T> pointer; typedef in struct:A
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 15 // typedef Alloc::pointer | value_type* pointer;
29 typedef Ptr<T> pointer; typedef in struct:A
40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
41 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
const_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<const value_type>
30 typedef Ptr<T> pointer; typedef in struct:A
46 typedef CPtr<T> pointer; typedef in struct:C
const_void_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<const void>
31 typedef Ptr<T> pointer; typedef in struct:A
void_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<void>
31 typedef Ptr<T> pointer; typedef in struct:A
  /external/bison/lib/
msvc-inval.c 80 struct gl_msvc_inval_per_thread *pointer = local
82 if (pointer == NULL)
85 pointer =
88 if (pointer == NULL)
90 pointer = &not_per_thread;
91 TlsSetValue (tls_index, pointer);
93 return pointer;
  /external/clang/test/CodeGenCXX/
debug-info-template-partial-specialization.cpp 26 typedef typename __pointer_type2<_Tp, _Dp>::type pointer; typedef in class:unique_ptr
27 unique_ptr(pointer __p, _Dp __d) {}
  /external/libcxx/test/std/iterators/iterator.primitives/iterator.traits/
iterator.pass.cpp 17 // typedef typename Iter::pointer pointer;
31 typedef A* pointer; typedef in struct:test_iterator
41 static_assert((std::is_same<It::pointer, A*>::value), "");
  /external/lldb/test/functionalities/data-formatter/rdar-9974002/
main.cpp 21 struct contained *pointer; member in struct:container
  /external/srtp/crypto/cipher/
null_cipher.c 58 uint8_t *pointer; local
64 pointer = (uint8_t*)crypto_alloc(sizeof(null_cipher_ctx_t) + sizeof(cipher_t));
65 if (pointer == NULL)
69 *c = (cipher_t *)pointer;
71 (*c)->state = pointer + sizeof(cipher_t);
132 NULL /* pointer to next testcase */
  /external/srtp/crypto/hash/
null_auth.c 58 uint8_t *pointer; local
64 pointer = (uint8_t*)crypto_alloc(sizeof(null_auth_ctx_t) + sizeof(auth_t));
65 if (pointer == NULL)
69 *a = (auth_t *)pointer;
71 (*a)->state = pointer + sizeof (auth_t);
141 NULL /* pointer to next testcase */
  /frameworks/base/core/jni/
android_nio_utils.h 25 * Given an nio.Buffer, return a pointer to it, beginning at its current
26 * position. The returned pointer is only valid for the current JNI stack-frame.
35 * and the returned pointer when the caller is through with it.
38 * @return The pointer to the memory in the buffer object
44 * Pass that array and the returned pointer when you are done accessing the
45 * pointer. If called (i.e. array is non-null), it must be called in the same
50 * @param pointer The pointer returned by android_nio_getPointer
51 * @param commit JNI_FALSE if the pointer was just read, and JNI_TRUE if
52 * the pointer was written to
62 void* pointer() const { return fPointer; } function in class:android::AutoBufferPointer
    [all...]
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 38 Data* pointer = m_pTestee->allocate(10); local
39 ASSERT_FALSE(0 == pointer);
45 Data* pointer = m_pTestee->allocate(); local
46 ASSERT_FALSE(0 == pointer);
52 Data* pointer = m_pTestee->allocate(CHUNK_SIZE + 1); local
53 ASSERT_TRUE(0 == pointer);
59 Data* pointer = m_pTestee->allocate(); local
60 m_pTestee->construct(pointer);
61 ASSERT_TRUE(1 == pointer->one);
62 ASSERT_TRUE(2 == pointer->two)
68 Data* pointer = m_pTestee->allocate(); local
79 Data* pointer = m_pTestee->allocate(10); local
88 Data* pointer = m_pTestee->allocate(10); local
100 Data* pointer = m_pTestee->allocate(); local
117 Data* pointer = m_pTestee->allocate(10); local
    [all...]
RTLinearAllocatorTest.cpp 39 Data* pointer = m_pTestee->allocate(10); local
40 ASSERT_FALSE(0 == pointer);
46 Data* pointer = m_pTestee->allocate(); local
47 ASSERT_FALSE(0 == pointer);
53 Data* pointer = m_pTestee->allocate(CHUNK_SIZE + 1); local
54 ASSERT_TRUE(0 == pointer);
60 Data* pointer = m_pTestee->allocate(); local
61 m_pTestee->construct(pointer);
62 ASSERT_TRUE(1 == pointer->one);
63 ASSERT_TRUE(2 == pointer->two)
69 Data* pointer = m_pTestee->allocate(); local
80 Data* pointer = m_pTestee->allocate(10); local
89 Data* pointer = m_pTestee->allocate(10); local
101 Data* pointer = m_pTestee->allocate(); local
118 Data* pointer = m_pTestee->allocate(10); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/iterator.traits/
iterator.pass.cpp 17 // typedef typename Iter::pointer pointer;
31 typedef A* pointer; typedef in struct:test_iterator
41 static_assert((std::is_same<It::pointer, A*>::value), "");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
iterator.hpp 26 class Pointer = T*, class Reference = T&>
31 typedef Pointer pointer; typedef in struct:boost::iterator
40 template <class Category, class T, class Distance, class Pointer, class Reference>
42 struct iterator_base : std::iterator<Category, T, Distance, Pointer, Reference> {};
47 typedef Pointer pointer;
54 class Pointer = T*, class Reference = T&>
55 struct iterator : boost::detail::iterator_base<Category, T, Distance, Pointer, Reference> {};
  /art/runtime/base/
iteration_range.h 32 typedef typename std::iterator_traits<Iter>::pointer pointer; typedef in class:art::IterationRange

Completed in 1262 milliseconds

1 2 3 4 5 6 7 8 91011>>