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

1 2 3 4 5 6 7

  /external/clang/test/CodeGenCXX/
atomic.cpp 4 template<typename _Tp> struct Ptr {
10 template<typename _Tp> inline void Ptr<_Tp>::f() {
16 void f(Ptr<int> *a) { a->f(); }
arm-cc.cpp 4 const char *Ptr;
debug-info-template-partial-specialization.cpp 28 unique_ptr<C> Ptr;
  /external/clang/test/FixIt/
fixit-vexing-parse-cxx0x.cpp 12 typedef int *Ptr;
14 Ptr p(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
fixit-vexing-parse.cpp 90 typedef void *Ptr;
93 Ptr p(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
97 Ptr p(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
  /external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 23 struct Ptr {};
29 typedef Ptr<T> pointer;
40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
const_pointer.pass.cpp 24 struct Ptr {};
30 typedef Ptr<T> pointer;
52 static_assert((std::is_same<std::allocator_traits<A<char> >::const_pointer, Ptr<const char> >::value), "");
const_void_pointer.pass.cpp 25 struct Ptr {};
31 typedef Ptr<T> pointer;
52 static_assert((std::is_same<std::allocator_traits<A<char> >::const_void_pointer, Ptr<const void> >::value), "");
void_pointer.pass.cpp 25 struct Ptr {};
31 typedef Ptr<T> pointer;
52 static_assert((std::is_same<std::allocator_traits<A<char> >::void_pointer, Ptr<void> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 23 struct Ptr {};
29 typedef Ptr<T> pointer;
40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
const_pointer.pass.cpp 24 struct Ptr {};
30 typedef Ptr<T> pointer;
52 static_assert((std::is_same<std::allocator_traits<A<char> >::const_pointer, Ptr<const char> >::value), "");
const_void_pointer.pass.cpp 25 struct Ptr {};
31 typedef Ptr<T> pointer;
52 static_assert((std::is_same<std::allocator_traits<A<char> >::const_void_pointer, Ptr<const void> >::value), "");
void_pointer.pass.cpp 25 struct Ptr {};
31 typedef Ptr<T> pointer;
52 static_assert((std::is_same<std::allocator_traits<A<char> >::void_pointer, Ptr<void> >::value), "");
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTerminatedArray.h 32 typedef RawPtr<HeapTerminatedArray> Ptr;
39 static PassPtr resize(PassPtr ptr, size_t capacity)
41 return reinterpret_cast<HeapTerminatedArray*>(Heap::reallocate<HeapTerminatedArray>(ptr, capacity * sizeof(T)));
  /external/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/
rv_value.pass.cpp 60 typedef std::unique_ptr<int, do_nothing> Ptr;
61 typedef std::vector<Ptr> C;
65 c1.push_back(Ptr(x+i));
68 c2.push_back(Ptr(x+i));
69 insert3at(c2, c2.begin(), Ptr(x+3), Ptr(x+4), Ptr(x+5));
70 test(std::move(c1), 0, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2)
    [all...]
  /external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/
difference_type.pass.cpp 52 typedef std::unique_ptr<int, do_nothing> Ptr;
53 Ptr p[5];
56 test(p, 3, Ptr(i+3));
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.cpp 26 return reinterpret_cast<const TUint8*>(iSucc) - Ptr();
29 const TUint8* TNodeBuffer::TNode::Ptr() const
52 Mem::Copy(start, aData.Ptr(), aData.Size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/
rv_value.pass.cpp 60 typedef std::unique_ptr<int, do_nothing> Ptr;
61 typedef std::vector<Ptr> C;
65 c1.push_back(Ptr(x+i));
68 c2.push_back(Ptr(x+i));
69 insert3at(c2, c2.begin(), Ptr(x+3), Ptr(x+4), Ptr(x+5));
70 test(std::move(c1), 0, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/
difference_type.pass.cpp 52 typedef std::unique_ptr<int, do_nothing> Ptr;
53 Ptr p[5];
56 test(p, 3, Ptr(i+3));
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
condition_variable_native_win.h 22 void* Ptr;
  /external/clang/lib/Lex/
TokenConcatenation.cpp 55 const char *Ptr = SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation()));
56 return IsStringPrefix(StringRef(Ptr, Tok.getLength()),
  /external/llvm/include/llvm/Support/
SMLoc.h 24 const char *Ptr;
26 SMLoc() : Ptr(nullptr) {}
28 bool isValid() const { return Ptr != nullptr; }
30 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
31 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
33 const char *getPointer() const { return Ptr; }
35 static SMLoc getFromPointer(const char *Ptr) {
37 L.Ptr = Ptr
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUTargetTransformInfo.cpp 106 const Value *Ptr = GEP->getPointerOperand();
107 const AllocaInst *Alloca = dyn_cast<AllocaInst>(GetUnderlyingObject(Ptr));
113 // alloca ptr, then we want to use a higher than normal loop unroll
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
refcount.h 23 // IUnknown (but no QueryInterface). Use a Ptr<> based smart pointer to hold
29 // Ptr<Foo> obj = new Foo(); // ref count = 1
33 // typedef Ptr<Foo> FooPtr; // common short-hand notation
177 class Ptr {
179 Ptr() : p_(NULL) {
184 Ptr(T* pT) : p_(NULL) {
188 Ptr(const Ptr<T>& p) : p_(NULL) {
192 ~Ptr() {
212 T* operator=(const Ptr<T>& p)
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
refcount.h 23 // IUnknown (but no QueryInterface). Use a Ptr<> based smart pointer to hold
29 // Ptr<Foo> obj = new Foo(); // ref count = 1
33 // typedef Ptr<Foo> FooPtr; // common short-hand notation
177 class Ptr {
179 Ptr() : p_(NULL) {
184 Ptr(T* pT) : p_(NULL) {
188 Ptr(const Ptr<T>& p) : p_(NULL) {
192 ~Ptr() {
212 T* operator=(const Ptr<T>& p)
    [all...]

Completed in 322 milliseconds

1 2 3 4 5 6 7