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

References

tools/clang/lib/AST/ASTContext.cpp
 2992   assert((T->isArrayType() || T->isFunctionType()) && "T does not decay");
 2992   assert((T->isArrayType() || T->isFunctionType()) && "T does not decay");
 3001   if (T->isArrayType())
 3002     Decayed = getArrayDecayedType(T);
 3008   if (T->isFunctionType())
 3009     Decayed = getPointerType(T);
 3012   AdjustedType::Profile(ID, T, Decayed);
 3024   AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical);