reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clangd/ExpectedTypes.cpp
   23   if (T.isNull() || T->isDependentType())
   23   if (T.isNull() || T->isDependentType())
   26   T = T.getCanonicalType().getNonReferenceType();
   26   T = T.getCanonicalType().getNonReferenceType();
   28   if (T->isBooleanType())
   30   if (T->isIntegerType() && !T->isEnumeralType())
   30   if (T->isIntegerType() && !T->isEnumeralType())
   32   if (T->isFloatingType() && !T->isComplexType())
   32   if (T->isFloatingType() && !T->isComplexType())
   36   if (T->isArrayType()) // Decay arrays to pointers.
   37     return Ctx.getPointerType(QualType(T->getArrayElementTypeNoTypeQual(), 0))
   41   return T.getTypePtr();