Searched defs:pointer (Results 1 - 25 of 342) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dpointer_type.pass.cpp14 // 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/utilities/memory/unique.ptr/unique.ptr.single/
H A Dpointer_type.pass.cpp14 // 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/chromium_org/third_party/icu/source/common/
H A Duelement.h30 * 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/chromium_org/third_party/openmax_dl/dl/sp/src/test/
H A Daligned_ptr.c29 void FreeAlignedPointer(struct AlignedPtr* pointer) { argument
30 free(pointer->raw_pointer_);
31 free(pointer);
/external/chromium_org/ui/events/gesture_detection/
H A Dmotion_event_generic_unittest.cc76 PointerProperties pointer; local
77 pointer.id = 0;
78 MotionEventGeneric event0(MotionEvent::ACTION_DOWN, event_time, pointer);
84 pointer.id = 7;
85 event1.PushPointer(pointer);
92 pointer.id = 3;
93 event2.PushPointer(pointer);
/external/icu/icu4c/source/common/
H A Duelement.h30 * 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/utilities/memory/allocator.traits/allocator.traits.types/
H A Dpointer.pass.cpp15 // 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), "");
H A Dconst_pointer.pass.cpp16 // | 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
H A Dconst_void_pointer.pass.cpp16 // | pointer_traits<pointer>::rebind<const void>
31 typedef Ptr<T> pointer; typedef in struct:A
H A Dvoid_pointer.pass.cpp16 // | pointer_traits<pointer>::rebind<void>
31 typedef Ptr<T> pointer; typedef in struct:A
H A Ddifference_type.pass.cpp16 // | pointer_traits<pointer>::difference_type difference_type;
40 struct pointer {}; struct in struct:C
50 struct pointer_traits<C<char>::pointer>
H A Dsize_type.pass.cpp39 struct pointer {}; struct in struct:C
49 struct pointer_traits<C<char>::pointer>
/external/chromium_org/mojo/system/
H A Dmemory.cc17 bool IsAligned(const void* pointer) { argument
18 return reinterpret_cast<uintptr_t>(pointer) % alignment == 0;
25 bool IsAligned<8>(const void* pointer) { argument
26 return reinterpret_cast<uintptr_t>(pointer) % 4 == 0;
31 void MOJO_SYSTEM_IMPL_EXPORT CheckUserPointer(const void* pointer) { argument
32 CHECK(pointer && IsAligned<alignment>(pointer));
43 CheckUserPointerWithCount(const void* pointer, size_t count) { argument
45 CHECK(count == 0 || (pointer && IsAligned<alignment>(pointer)));
59 CheckUserPointerWithSize(const void* pointer, size_t size) argument
78 CheckUserPointerWithSize(const void* pointer, size_t size) argument
[all...]
/external/chromium_org/ui/base/win/
H A Dtouch_input.cc11 PTOUCHINPUT pointer,
19 return get_touch_input_info_func(handle, count, pointer, size);
9 GetTouchInputInfoWrapper(HTOUCHINPUT handle, UINT count, PTOUCHINPUT pointer, int size) argument
/external/libcxx/test/iterators/iterator.primitives/iterator.traits/
H A Diterator.pass.cpp17 // 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/
H A Dmain.cpp21 struct contained *pointer; member in struct:container
/external/bison/lib/
H A Dmsvc-inval.c80 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/chromium_org/media/midi/
H A Dusb_midi_device_factory_android.cc41 uintptr_t pointer = reinterpret_cast<uintptr_t>(this); local
42 raw_factory_.Reset(Java_UsbMidiDeviceFactoryAndroid_create(env, pointer));
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextRun.cpp32 const void* pointer; member in struct:blink::ExpectedTextRunSize
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAlignment.h63 inline bool isAlignedTo(const void* pointer) argument
65 return !(reinterpret_cast<uintptr_t>(pointer) & mask);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DMediaSource.java52 private static native State nativeState(long pointer); argument
/external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
H A Dnull_cipher.c58 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/clang/test/CodeGenCXX/
H A Ddebug-info-template-partial-specialization.cpp24 typedef typename __pointer_type2<_Tp, _Dp>::type pointer; typedef in class:unique_ptr
25 unique_ptr(pointer __p, _Dp __d) {}
/external/srtp/crypto/cipher/
H A Dnull_cipher.c58 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/stlport/stlport/stl/
H A D_raw_storage_iter.h50 typedef void pointer; typedef in class:raw_storage_iterator

Completed in 6444 milliseconds

1234567891011>>