HomeSort by relevance Sort by last modified time
    Searched defs:MemPtr (Results 1 - 8 of 8) sorted by null

  /external/clang/test/SemaCXX/
member-pointer-ms.cpp 3 // RUN: %clang_cc1 -std=c++11 -fms-compatibility -fsyntax-only -triple=x86_64-pc-win32 -verify -DVMV -fms-memptr-rep=virtual %s
188 typedef int MemPtrInBody::*MemPtr;
190 operator MemPtr() const {
195 static_assert(sizeof(MemPtrInBody::MemPtr) == kSingleDataSize, "");
constexpr-printing.cpp 71 constexpr int MemPtr(int (MemPtrTest::*a), void (MemPtrTest::*b)(), int &c) {
74 static_assert(MemPtr(&MemPtrTest::n, &MemPtrTest::f, mpt.*&MemPtrTest::n), ""); // expected-error {{constant expression}} \
75 expected-note {{in call to 'MemPtr(&MemPtrTest::n, &MemPtrTest::f, mpt.n)'}}
  /external/clang/test/SemaTemplate/
explicit-instantiation.cpp 42 typedef int X1::*MemPtr;
44 template MemPtr X0<MemPtr>::f0(MemPtr); // expected-note{{requested here}}
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 82 llvm::Value *MemPtr,
355 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
358 /// - method pointers are virtual if (memptr.ptr & 1) is nonzero
359 /// - the this-adjustment is (memptr.adj)
360 /// - the virtual offset is (memptr.ptr - 1)
363 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
364 /// - the this-adjustment is (memptr.adj >> 1)
365 /// - the virtual offset is (memptr.ptr)
372 /// If the member is non-virtual, memptr.ptr is the address of
390 llvm::BasicBlock *FnVirtual = CGF.createBasicBlock("memptr.virtual")
    [all...]
CGExpr.cpp 91 llvm::Value *MemPtr = EmitScalarExpr(E);
92 return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT);
    [all...]
CGExprScalar.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
SemaExprCXX.cpp     [all...]

Completed in 984 milliseconds