Searched defs:IsPointer (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/AST/
H A DMicrosoftMangle.cpp1491 bool IsPointer = T->isAnyPointerType() || T->isMemberPointerType() || local
1506 if (!IsPointer && Quals) {
1512 if ((!IsPointer && Quals) || isa<TagType>(T)) {
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp3993 bool IsPointer = T->isPointerType(); local
3994 if (IsPointer)
4026 if (IsPointer)
4049 if (IsPointer && T->getPointeeType()->isObjectType())
/external/clang/lib/Sema/
H A DSemaStmt.cpp3466 unsigned IsPointer : 1;
3472 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {}
3478 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) {
3480 IsPointer = true;
3482 if (IsPointer || QT->isReferenceType())
3490 CatchHandlerType(QualType QT, bool IsPointer) argument
3491 : QT(QT), IsPointer(IsPointer) {}
3494 bool isPointer() const { return IsPointer; }
3499 if (LHS.IsPointer !
[all...]
H A DSemaDeclCXX.cpp3022 const bool IsPointer = MemberTy->isPointerType(); local
3023 if (IsPointer) {
3045 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
3054 << (unsigned)IsPointer;

Completed in 160 milliseconds