Home
last modified time | relevance | path

Searched refs:isScalarType (Results 1 – 25 of 26) sorted by relevance

12

/external/clang/lib/Sema/
DSemaFixItUtils.cpp170 assert(T.isScalarType() && "use scalar types only"); in getScalarZeroExpressionForType()
202 if (T->isScalarType()) { in getFixItZeroInitializerForType()
DSemaOpenMP.cpp951 IsByRef = !Ty->isScalarType(); in IsOpenMPCapturedByRef()
955 if (IsByRef && Ty.getNonReferenceType()->isScalarType()) { in IsOpenMPCapturedByRef()
6190 if (AtomicBody->getType()->isScalarType() || in checkStatement()
6347 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) && in ActOnOpenMPAtomicDirective()
6348 (V->isInstantiationDependent() || V->getType()->isScalarType())) { in ActOnOpenMPAtomicDirective()
6360 (X->isInstantiationDependent() || X->getType()->isScalarType()) in ActOnOpenMPAtomicDirective()
6409 if ((X->isInstantiationDependent() || X->getType()->isScalarType()) && in ActOnOpenMPAtomicDirective()
6410 (E->isInstantiationDependent() || E->getType()->isScalarType())) { in ActOnOpenMPAtomicDirective()
6421 (X->isInstantiationDependent() || X->getType()->isScalarType()) in ActOnOpenMPAtomicDirective()
9262 !(Type->isScalarType() || in ActOnOpenMPReductionClause()
[all …]
DSemaCast.cpp2395 if (!DestType->isScalarType() && !DestType->isVectorType()) { in CheckCStyleCast()
2455 if (!SrcType->isScalarType() && !SrcType->isVectorType()) { in CheckCStyleCast()
DSemaInit.cpp1007 CurrentObjectType->isScalarType()? 2 : in CheckExplicitInitList()
1026 if (!VerifyOnly && T->isScalarType() && in CheckExplicitInitList()
1044 } else if (DeclType->isScalarType()) { in CheckListElementTypes()
1174 } else if (ElemType->isScalarType() || ElemType->isAtomicType()) { in CheckSubElementType()
3760 if (S.getLangOpts().CPlusPlus && DestType->isScalarType() && in TryListInitialization()
DSemaExpr.cpp5793 assert(eltType->isScalarType()); in breakDownVectorType()
5821 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()
5822 if (destTy->isScalarType() && srcTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()
6167 if (CondTy->isScalarType()) return false; in checkCondition()
7402 if (LHSType->isScalarType()) { in CheckAssignmentConstraints()
8890 if (!R->isScalarType()) in hasIsEqualMethod()
9612 if (!LHS.get()->getType()->isScalarType() || in CheckLogicalOperands()
9613 !RHS.get()->getType()->isScalarType()) in CheckLogicalOperands()
11411 if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) { in CreateBuiltinUnaryOp()
14391 if (!T->isScalarType()) { // C99 6.8.4.1p1 in CheckBooleanCondition()
DSemaDeclObjC.cpp3083 if (!left->isScalarType() || !right->isScalarType()) in matchTypes()
DSemaExprCXX.cpp3989 return T->isScalarType(); in EvaluateUnaryTypeTrait()
6103 if (!ObjectType->isDependentType() && !ObjectType->isScalarType() && in BuildPseudoDestructorExpr()
DSemaChecking.cpp2460 !AtomTy->isScalarType()) { in SemaAtomicOpsOverloaded()
8003 T->isMemberPointerType() || !T->isScalarType() || T->isNullPtrType()) in DiagnoseNullConversion()
DSemaDeclCXX.cpp4922 (F->getType().isConstQualified() && F->getType()->isScalarType())) { in CheckCompletedCXXClass()
/external/clang/lib/StaticAnalyzer/Checkers/
DDivZeroChecker.cpp57 if (!B->getRHS()->getType()->isScalarType()) in checkPreStmt()
DDeadStoresChecker.cpp377 if (isa<ParmVarDecl>(VD) && VD->getType()->isScalarType()) in observeStmt()
/external/deqp-deps/glslang/SPIRV/
DSpvBuilder.h178 bool isScalar(Id resultId) const { return isScalarType(getTypeId(resultId)); } in isScalar()
189 …bool isScalarType(Id typeId) const { return getTypeClass(typeId) == OpTypeFloat || getTypeC… in isScalarType() function
DSpvBuilder.cpp1925 if (! isScalarType(resultType)) { in createTextureCall()
2058 if (isScalarType(valueType) || isVectorType(valueType)) { in createCompositeCompare()
2077 if (isScalarType(valueType)) { in createCompositeCompare()
DGlslangToSpv.cpp3415 if (builder.isScalarType(nominalTypeId)) { in accessChainLoad()
3442 if (builder.isScalarType(nominalTypeId)) { in accessChainStore()
/external/clang/lib/AST/
DType.cpp1830 assert(isScalarType()); in getScalarTypeKind()
2077 if (CanonicalType->isScalarType() || CanonicalType->isVectorType()) in isTrivialType()
2137 if (CanonicalType->isScalarType() || CanonicalType->isVectorType()) in isTriviallyCopyableType()
2184 if (BaseTy->isScalarType() || BaseTy->isVectorType() || in isLiteralType()
2238 if (BaseTy->isScalarType() || BaseTy->isVectorType()) return true; in isStandardLayoutType()
2290 if (BaseTy->isScalarType() || BaseTy->isVectorType()) return true; in isCXX11PODType()
DStmt.cpp972 (Var->getType()->isScalarType() || (Var->getType()->isReferenceType() && in Capture()
976 ->isScalarType())) && in Capture()
/external/clang/include/clang/AST/
DCanonicalType.h270 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isScalarType)
DType.h1653 bool isScalarType() const; // C99 6.2.5p21 (arithmetic + pointers)
5718 inline bool Type::isScalarType() const {
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp1627 if (baseT->isScalarType()) { in getBindingForElement()
1629 if (elemT->isScalarType()) { in getBindingForElement()
2173 if (!(Ty->isScalarType() || Ty->isReferenceType())) in tryBindSmallStruct()
DBugReporterVisitors.cpp1532 else if (VDTy->isScalarType()) in VisitTrueTest()
/external/deqp/modules/gles2/functional/
Des2fShaderOperatorTests.cpp229 static inline bool isScalarType (ValueType type) in isScalarType() function
1320 int curInScalarSize = isScalarType(v.valueType) ? 1 : inScalarSize; in init()
1333 …if (inputNdx == 0 || isScalarType(prevV.valueType) != isScalarType(v.valueType)) // \note Only wri… in init()
/external/clang/lib/Analysis/
DUninitializedValues.cpp41 return ty->isScalarType() || ty->isVectorType() || ty->isRecordType(); in isTrackedVar()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp276 static inline bool isScalarType (ValueType type) in isScalarType() function
1920 const int prevInScalarSize = isScalarType(prevV.valueType) ? 1 : inScalarSize; in init()
1927 const int curInScalarSize = isScalarType(v.valueType) ? 1 : inScalarSize; in init()
/external/deqp/modules/gles3/functional/
Des3fShaderOperatorTests.cpp296 static inline bool isScalarType (ValueType type) in isScalarType() function
1960 int prevInScalarSize = isScalarType(prevV.valueType) ? 1 : inScalarSize; in init()
1967 int curInScalarSize = isScalarType(v.valueType) ? 1 : inScalarSize; in init()
/external/clang/lib/CodeGen/
DTargetInfo.cpp5672 if (!RetTy->isScalarType()) in classifyReturnType()

12