HomeSort by relevance Sort by last modified time
    Searched refs:pointer (Results 301 - 325 of 3421) sorted by null

<<11121314151617181920>>

  /external/google-breakpad/src/testing/include/gmock/
gmock-more-actions.h 48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
150 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
151 // mock function to *pointer.
154 AND_1_VALUE_PARAMS(pointer)) {
155 *pointer = ::std::tr1::get<k>(args);
158 // Action SaveArgPointee<k>(pointer) saves the value pointed to
159 // by the k-th (0-based) argument of the mock function to *pointer.
162 AND_1_VALUE_PARAMS(pointer)) {
163 *pointer = *::std::tr1::get<k>(args)
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-more-actions.h 48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
167 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
168 // mock function to *pointer.
171 AND_1_VALUE_PARAMS(pointer)) {
172 *pointer = ::testing::get<k>(args);
175 // Action SaveArgPointee<k>(pointer) saves the value pointed to
176 // by the k-th (0-based) argument of the mock function to *pointer.
179 AND_1_VALUE_PARAMS(pointer)) {
180 *pointer = *::testing::get<k>(args)
    [all...]
  /external/iptables/extensions/
Android.mk 23 -Wno-pointer-arith \
24 -Wno-pointer-bool-conversion \
26 -Wno-tautological-pointer-compare \
  /external/v8/src/zone/
zone.h 131 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
140 static void Delete(void* pointer) {}
202 void operator delete(void* pointer) { UNREACHABLE(); }
203 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
223 void operator delete(void* pointer) { UNREACHABLE(); }
224 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
  /external/v8/testing/gmock/include/gmock/
gmock-more-actions.h 48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
167 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
168 // mock function to *pointer.
171 AND_1_VALUE_PARAMS(pointer)) {
172 *pointer = ::testing::get<k>(args);
175 // Action SaveArgPointee<k>(pointer) saves the value pointed to
176 // by the k-th (0-based) argument of the mock function to *pointer.
179 AND_1_VALUE_PARAMS(pointer)) {
180 *pointer = *::testing::get<k>(args)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 61 typedef typename traits::pointer pointer; typedef in class:mcld::DataIterator
111 typedef typename Alloc::pointer pointer; typedef in class:mcld::GCFactoryBase
136 void deallocate(pointer& pPtr, size_type N) {
142 void deallocate(pointer& pPtr) {
  /prebuilts/go/darwin-x86/test/
complit1.go 29 // these are okay because they are slicing a pointer to an array
49 _ = TP{i: 0, f: 0, s: "", next: {}} // ERROR "invalid pointer type"
50 _ = &Ti{} // ERROR "invalid pointer type"
  /prebuilts/go/darwin-x86/test/interface/
receiver.go 8 // mixed pointer and non-pointer receivers.
97 // println("--struct pointer--");
  /prebuilts/go/linux-x86/test/
complit1.go 29 // these are okay because they are slicing a pointer to an array
49 _ = TP{i: 0, f: 0, s: "", next: {}} // ERROR "invalid pointer type"
50 _ = &Ti{} // ERROR "invalid pointer type"
  /prebuilts/go/linux-x86/test/interface/
receiver.go 8 // mixed pointer and non-pointer receivers.
97 // println("--struct pointer--");
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
unwind.s 8 foo1: @ Typical frame pointer prologue
39 foo4: @ Thumb frame pointer
55 foo6: @ Nested function with frame pointer
  /art/libartbase/base/
allocator.h 107 typedef typename std::allocator<T>::pointer pointer; typedef in class:art::TrackingAllocatorImpl
129 pointer allocate(size_type n, const_pointer hint ATTRIBUTE_UNUSED = 0) {
132 return reinterpret_cast<pointer>(malloc(size));
  /external/icu/icu4c/source/common/
uelement.h 32 * It may be either a 32-bit integral value or an opaque void* pointer.
33 * The void* pointer may be smaller than 32 bits (e.g. 24 bits)
36 * Because a UElement is the size of a native pointer or a 32-bit
40 void* pointer; member in union:UElement
63 * a pointer, or clone a pointer, as appropriate.
  /external/libcxx/test/std/iterators/iterator.primitives/iterator.basic/
iterator.pass.cpp 13 // class Pointer = T*, class Reference = T&>
18 // typedef Pointer pointer;
35 static_assert((std::is_same<typename It::pointer, T*>::value), "");
47 static_assert((std::is_same<typename It::pointer, T*>::value), "");
59 static_assert((std::is_same<typename It::pointer, const T*>::value), "");
71 static_assert((std::is_same<typename It::pointer, const T*>::value), "");
  /external/libcxx/test/std/iterators/iterator.primitives/iterator.traits/
const_pointer.pass.cpp 17 // typedef const T* pointer;
32 static_assert((std::is_same<It::pointer, const A*>::value), "");
const_volatile_pointer.pass.cpp 25 static_assert((std::is_same<It::pointer, const volatile A*>::value), "");
pointer.pass.cpp 17 // typedef T* pointer;
32 static_assert((std::is_same<It::pointer, A*>::value), "");
volatile_pointer.pass.cpp 25 static_assert((std::is_same<It::pointer, volatile A*>::value), "");
  /external/libcxx/test/std/utilities/memory/default.allocator/
allocator_void.pass.cpp 16 // typedef void* pointer;
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
  /external/python/cpython2/Doc/includes/
capsulethunk.h 27 #define PyCapsule_New(pointer, name, destructor) \
28 (PyCObject_FromVoidPtr(pointer, destructor))
35 #define PyCapsule_SetPointer(capsule, pointer) \
36 __PyCapsule_SetField(capsule, cobject, pointer)
  /external/python/cpython2/Lib/ctypes/test/
test_pointers.py 15 class A(POINTER(c_ulong)):
18 POINTER(c_ulong)(c_ulong(22))
19 # Pointer can't set contents: has no _type_
28 ## func.argtypes = (POINTER(c_int),)
32 func.restype = POINTER(c_int)
33 res = func(pointer(i))
42 func.restype = POINTER(c_int)
43 func.argtypes = (POINTER(c_int),)
45 res = func(pointer(i))
64 # a function type receiving a pointer
    [all...]
  /external/python/cpython3/Doc/includes/
capsulethunk.h 27 #define PyCapsule_New(pointer, name, destructor) \
28 (PyCObject_FromVoidPtr(pointer, destructor))
35 #define PyCapsule_SetPointer(capsule, pointer) \
36 __PyCapsule_SetField(capsule, cobject, pointer)
  /external/python/cpython3/Lib/ctypes/test/
test_pointers.py 15 class A(POINTER(c_ulong)):
18 POINTER(c_ulong)(c_ulong(22))
19 # Pointer can't set contents: has no _type_
31 ## func.argtypes = (POINTER(c_int),)
35 func.restype = POINTER(c_int)
36 res = func(pointer(i))
45 func.restype = POINTER(c_int)
46 func.argtypes = (POINTER(c_int),)
48 res = func(pointer(i))
67 # a function type receiving a pointer
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h 152 // available, otherwise a properly aligned pointer to 'numBytes' of memory.
251 typedef T* pointer; typedef in class:pool_allocator
261 pointer address(reference x) const { return &x; }
289 pointer allocate(size_type n) {
290 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
292 pointer allocate(size_type n, const void*) {
293 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
295 void deallocate(pointer, size_type) {}
298 void construct(pointer p, const T& val) { new ((void *)p) T(val); }
299 void destroy(pointer p) { p->T::~T();
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
VertexArray.h 41 bool normalized, bool pureInteger, GLsizei stride, const void *pointer);

Completed in 524 milliseconds

<<11121314151617181920>>