Home
last modified time | relevance | path

Searched refs:IsArray (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExprCXX.cpp116 CXXNewExprBits.IsArray = ArraySize != nullptr; in CXXNewExpr()
170 CXXNewExpr::CXXNewExpr(EmptyShell Empty, bool IsArray, in CXXNewExpr() argument
173 CXXNewExprBits.IsArray = IsArray; in CXXNewExpr()
187 bool IsArray = ArraySize != nullptr; in Create() local
193 IsArray + HasInit + NumPlacementArgs, IsParenTypeId), in Create()
202 CXXNewExpr *CXXNewExpr::CreateEmpty(const ASTContext &Ctx, bool IsArray, in CreateEmpty() argument
207 IsArray + HasInit + NumPlacementArgs, IsParenTypeId), in CreateEmpty()
210 CXXNewExpr(EmptyShell(), IsArray, NumPlacementArgs, IsParenTypeId); in CreateEmpty()
H A DExprConstant.cpp193 IsArray = true; in findMostDerivedSubobject()
207 IsArray = true; in findMostDerivedSubobject()
212 IsArray = false; in findMostDerivedSubobject()
216 IsArray = false; in findMostDerivedSubobject()
283 bool IsArray = false; in SubobjectDesignator() local
288 MostDerivedIsArrayElement = IsArray; in SubobjectDesignator()
339 IsArray ? getMostDerivedArraySize() : (uint64_t)1; in validIndexAdjustments()
441 IsArray ? getMostDerivedArraySize() : (uint64_t)1; in adjustIndex()
458 if (IsArray) in adjustIndex()
3114 bool IsArray = A.MostDerivedIsArrayElement; in AreElementsOfSameArray() local
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h1634 bool IsArray; // new[] ? variable
1639 IsGlobal(IsGlobal_), IsArray(IsArray_) {} in NewExpr()
1642 F(ExprList, Type, InitList, IsGlobal, IsArray); in match()
1649 if (IsArray) in printLeft()
1670 bool IsArray; variable
1682 if (IsArray) in printLeft()
1760 bool IsArray; variable
1768 if (IsArray) { in printLeft()
3850 bool IsArray = look(1) == 'a'; in parseNewExpr() local
3873 return make<NewExpr>(ExprList, Ty, Inits, Global, IsArray); in parseNewExpr()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp100 QualType &Ty, bool &IsArray) { in makeZeroElementRegion() argument
107 IsArray = true; in makeZeroElementRegion()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h760 QualType &Ty, bool &IsArray);
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3715 bool IsArray = CurTy->isArrayTy(); in parseFunctionBody() local
3719 if (!IsStruct && !IsArray) in parseFunctionBody()
3725 if (IsArray && Index >= CurTy->getArrayNumElements()) in parseFunctionBody()
3757 bool IsArray = CurTy->isArrayTy(); in parseFunctionBody() local
3761 if (!IsStruct && !IsArray) in parseFunctionBody()
3767 if (IsArray && Index >= CurTy->getArrayNumElements()) in parseFunctionBody()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h1988 CXXNewExpr(EmptyShell Empty, bool IsArray, unsigned NumPlacementArgs,
2003 static CXXNewExpr *CreateEmpty(const ASTContext &Ctx, bool IsArray,
2038 bool isArray() const { return CXXNewExprBits.IsArray; } in isArray()
H A DStmt.h639 unsigned IsArray : 1; in alignas() local
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1511 bool IsArray = Record.readInt(); in VisitCXXNewExpr() local
1521 assert((IsArray == E->isArray()) && "Wrong IsArray!"); in VisitCXXNewExpr()
1526 (void)IsArray; in VisitCXXNewExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1136 bool IsArray = getContext().getAsArrayType(Type) != nullptr; in EmitOMPReductionClauseInit() local
1140 if (IsArray) { in EmitOMPReductionClauseInit()
1146 RHSVD, [this, PrivateVD, RHSVD, IsArray]() { in EmitOMPReductionClauseInit()
1147 return IsArray in EmitOMPReductionClauseInit()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTokenKinds.def488 TYPE_TRAIT_1(__is_array, IsArray, KEYCXX)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp2357 QualType AllocType, bool IsArray, in FindAllocationFunctions() argument
2403 IsArray ? OO_Array_New : OO_New); in FindAllocationFunctions()
H A DSemaChecking.cpp11489 const bool IsArray = T->isArrayType(); in DiagnoseAlwaysNonNullPointer() local
11498 if (!IsAddressOf && !IsFunction && !IsArray) in DiagnoseAlwaysNonNullPointer()
11517 else if (IsArray) in DiagnoseAlwaysNonNullPointer()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h5238 QualType AllocType, bool IsArray,