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

Declarations

tools/clang/include/clang/AST/Type.h
 2003   bool isVariableArrayType() const;

References

tools/clang/lib/AST/ExprConstant.cpp
14029         Exp->getTypeOfArgument()->isVariableArrayType())
tools/clang/lib/AST/MicrosoftMangle.cpp
 2532     } else if (ElementTy->isVariableArrayType()) {
tools/clang/lib/AST/Type.cpp
 2396   if (isVariableArrayType())
tools/clang/lib/Analysis/LiveVariables.cpp
  464   if (subEx->getType()->isVariableArrayType()) {
tools/clang/lib/CodeGen/CGExpr.cpp
 3331   if (!E->getType()->isVariableArrayType()) {
 3359   if (SubExpr->getType()->isVariableArrayType())
 3626       if (!BaseTy->isVariableArrayType()) {
tools/clang/lib/Sema/SemaChecking.cpp
 9797   } else if (!Ty->isVariableArrayType()) {
tools/clang/lib/Sema/SemaDecl.cpp
 5957         else if (T->isVariableArrayType())
 7686       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
 7700     if ((!FixedTInfo || FixedT.isNull()) && T->isVariableArrayType()) {
tools/clang/lib/Sema/SemaExpr.cpp
 4219   if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) {
 4590                                       !OriginalTy->isVariableArrayType()))) {
 6058     if (literalType->isVariableArrayType())
tools/clang/lib/Sema/SemaType.cpp
 2297   if (getLangOpts().OpenCL && T->isVariableArrayType()) {
 2302   if (T->isVariableArrayType() && !Context.getTargetInfo().isVLASupported()) {
 2314     if (T->isVariableArrayType()) {
 2329   if (T->isVariableArrayType()) {
 8194   if (T->isVariableArrayType())
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  881         assert(T->isVariableArrayType() && "Unknown non-constant-sized type.");
tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  555   if (!castTy->isVariableArrayType() && !originalTy->isVariableArrayType())
  555   if (!castTy->isVariableArrayType() && !originalTy->isVariableArrayType())
tools/clang/tools/extra/clang-tidy/modernize/AvoidCArraysCheck.cpp
   70        ArrayType->getTypePtr()->isVariableArrayType() ? UseVector : UseArray);