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

  /external/clang/test/Index/
comment-cplus-template-decls.cpp 72 // CHECK: <Declaration>template &lt;class PtrTy&gt; class OpaquePtr {}</Declaration>
78 class OpaquePtr {};
80 // CHECK: <Declaration>typedef OpaquePtr&lt;int&gt; DeclGroupPtrTy</Declaration>
81 typedef OpaquePtr<int> DeclGroupPtrTy;
  /external/clang/include/clang/Sema/
Ownership.h 22 // OpaquePtr
45 class OpaquePtr {
47 explicit OpaquePtr(void *Ptr) : Ptr(Ptr) {}
52 OpaquePtr() : Ptr(nullptr) {}
54 static OpaquePtr make(PtrTy P) { OpaquePtr OP; OP.set(P); return OP; }
85 static OpaquePtr getFromOpaquePtr(void *P) { return OpaquePtr(P); }
88 /// UnionOpaquePtr - A version of OpaquePtr suitable for membership
93 static UnionOpaquePtr make(OpaquePtr<T> P)
    [all...]
Sema.h 232 typedef OpaquePtr<DeclGroupRef> DeclGroupPtrTy;
233 typedef OpaquePtr<TemplateName> TemplateTy;
234 typedef OpaquePtr<QualType> TypeTy;
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 255 typedef OpaquePtr<DeclGroupRef> DeclGroupPtrTy;
256 typedef OpaquePtr<TemplateName> TemplateTy;
    [all...]

Completed in 301 milliseconds