Home
last modified time | relevance | path

Searched refs:isArrayType (Results 1 – 25 of 1313) sorted by relevance

12345678910>>...53

/dports/math/barvinok/barvinok-0.41.5/pet/
H A Dclang.cc47 if (type->isArrayType()) { in pet_clang_base_type()
69 if (type->isArrayType()) { in pet_clang_base_or_typedef_type()
149 if (type->isArrayType()) { in pet_clang_array_depth()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DInstanceOfExpression.java82 if (expressionType.isArrayType()) { in areTypesCastCompatible()
83 if (castType.isArrayType()) { in areTypesCastCompatible()
118 if (castType.isArrayType()) { in areTypesCastCompatible()
153 if (castType.isArrayType()) { in areTypesCastCompatible()
H A DCastExpression.java118 if (expressionType.isArrayType()) { in areTypesCastCompatible()
122 if (castType.isArrayType()) { in areTypesCastCompatible()
158 if (castType.isArrayType()) { in areTypesCastCompatible()
199 if (castType.isArrayType()) { in areTypesCastCompatible()
H A DEqualExpression.java108 if (expressionType.isArrayType()) { in areTypesCastCompatible()
109 if (castType.isArrayType()) { // ------- (castTb.isArray) in areTypesCastCompatible()
154 if (castType.isArrayType()) { // ---- (castTb.isArray) in areTypesCastCompatible()
195 if (castType.isArrayType()) { // ----- (castTb.isArray) in areTypesCastCompatible()
/dports/www/twiki/twiki/lib/TWiki/Query/
H A DNode.pm63 use vars qw ( %aliases %isArrayType );
75 %isArrayType =
94 if ($isArrayType{$realField}) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.cpp70 if (varType.isArrayType()) in containsMatchingSubtype()
147 else if (varType.isArrayType()) in isIllegalVertexOutput()
189 else if (varType.isArrayType()) in isIllegalFragmentOutput()
208 else if (varType.isArrayType()) in isTypeIntegerOrContainsIntegers()
350 …bles[varNdx].storage == glu::STORAGE_IN && !m_defaultBlock.variables[varNdx].varType.isArrayType()) in isValid()
372 …bles[varNdx].storage == glu::STORAGE_IN && !m_defaultBlock.variables[varNdx].varType.isArrayType()) in isValid()
375 …les[varNdx].storage == glu::STORAGE_OUT && !m_defaultBlock.variables[varNdx].varType.isArrayType()) in isValid()
397 …bles[varNdx].storage == glu::STORAGE_IN && !m_defaultBlock.variables[varNdx].varType.isArrayType()) in isValid()
425 if (type.isArrayType()) in collectStructPtrs()
/dports/www/gitea/gitea-1.16.5/vendor/github.com/go-swagger/go-swagger/cmd/swagger/commands/diff/
H A Dschema.go105 return isArrayType(s.Type)
107 return isArrayType(s.Type)
109 return isArrayType(spec.StringOrArray{s.Type})
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/lookup/
H A DMethodVerifier15.java141 if (one.isArrayType() || two.isArrayType()) { in isTypeSubstituable()
142 if (one.isArrayType() != two.isArrayType()) return false; in isTypeSubstituable()
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/types/
H A DArrayType.java214 if (!otherType.isArrayType()) { in convertToType()
339 if (!otherType.isArrayType()) { in canConvertFrom()
354 if (!otherType.isArrayType()) { in canMoveFrom()
389 public boolean isArrayType() { in isArrayType() method in ArrayType
407 if (!other.isArrayType()) { in getAggregateType()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/qtcreatorcdbext/
H A Dpytype.cpp96 static bool isArrayType(const std::string &typeName) in isArrayType() function
285 if (isArrayType(typeName)) in code()
324 if (isPointerType(typeName) || isArrayType(typeName)) in target()
334 if (isArrayType(typeName)) { in targetName()
350 if (isArrayType(name()) || isPointerType(name())) in fields()
420 if (isPointerType(typeName) || isArrayType(typeName)) in lookupType()
/dports/www/firefox-esr/firefox-91.8.0/js/src/wasm/
H A DWasmTypeDef.h387 bool isArrayType() const { return kind_ == TypeDefKind::Array; } in isArrayType() function
410 MOZ_ASSERT(isArrayType()); in arrayType()
415 MOZ_ASSERT(isArrayType()); in arrayType()
610 bool isArrayType(uint32_t index) const { return types_[index].isArrayType(); } in isArrayType() function
611 bool isArrayType(RefType t) const { in isArrayType() function
612 return t.isTypeIndex() && isArrayType(t.typeIndex()); in isArrayType()
H A DWasmTypeDef.cpp289 if (isArrayType(one) && isArrayType(two)) { in isTypeIndexEquivalent()
402 if (isArrayType(one) && two.isEq()) { in isRefSubtypeOf()
433 if (isArrayType(one) && isArrayType(two)) { in isTypeIndexSubtypeOf()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/wasm/
H A DWasmTypeDef.h387 bool isArrayType() const { return kind_ == TypeDefKind::Array; } in isArrayType() function
410 MOZ_ASSERT(isArrayType()); in arrayType()
415 MOZ_ASSERT(isArrayType()); in arrayType()
610 bool isArrayType(uint32_t index) const { return types_[index].isArrayType(); } in isArrayType() function
611 bool isArrayType(RefType t) const { in isArrayType() function
612 return t.isTypeIndex() && isArrayType(t.typeIndex()); in isArrayType()
H A DWasmTypeDef.cpp289 if (isArrayType(one) && isArrayType(two)) { in isTypeIndexEquivalent()
402 if (isArrayType(one) && two.isEq()) { in isRefSubtypeOf()
433 if (isArrayType(one) && isArrayType(two)) { in isTypeIndexSubtypeOf()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/
H A DRecoveredTypeBinding.java51 if (this.currentType.isArrayType()) { in RecoveredTypeBinding()
66 if (type.isArrayType()) { in RecoveredTypeBinding()
155 if (this.binding.isArrayType()) { in getElementType()
165 if (this.currentType!= null && this.currentType.isArrayType()) { in getElementType()
283 if (this.binding.isArrayType()) { in getReferenceBinding()
/dports/www/firefox/firefox-99.0/js/src/wasm/
H A DWasmTypeDef.h402 bool isArrayType() const { return kind_ == TypeDefKind::Array; } in isArrayType() function
425 MOZ_ASSERT(isArrayType()); in arrayType()
430 MOZ_ASSERT(isArrayType()); in arrayType()
617 bool isArrayType(uint32_t index) const { return types_[index].isArrayType(); } in isArrayType() function
618 bool isArrayType(RefType t) const { in isArrayType() function
619 return t.isTypeIndex() && isArrayType(t.typeIndex()); in isArrayType()
/dports/security/vault/vault-1.8.2/vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-generator/Sources/gnostic-swift-generator/
H A DRenderTypes.swift43 if serviceTypeField.isArrayType { in renderTypes()
77 if serviceTypeField.isArrayType { in renderTypes()
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/libpgmodeler/src/
H A Dparameter.cpp47 if(!type.isArrayType() && !type.isPolymorphicType() && is_variadic) in setType()
70 if(value && !type.isArrayType() && !type.isPolymorphicType()) in setVariadic()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-generator/Sources/gnostic-swift-generator/
H A DRenderTypes.swift43 if serviceTypeField.isArrayType { in renderTypes()
77 if serviceTypeField.isArrayType { in renderTypes()
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-generator/Sources/gnostic-swift-generator/
H A DRenderTypes.swift43 if serviceTypeField.isArrayType { in renderTypes()
77 if serviceTypeField.isArrayType { in renderTypes()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-generator/Sources/gnostic-swift-generator/
H A DRenderTypes.swift43 if serviceTypeField.isArrayType { in renderTypes()
77 if serviceTypeField.isArrayType { in renderTypes()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/opengl/
H A DgluVarType.hpp59 bool isArrayType (void) const { return m_type == VARTYPE_ARRAY; } in isArrayType() function in glu::VarType
65 …const VarType& getElementType (void) const { DE_ASSERT(isArrayType()); return *m_data.array.eleme… in getElementType()
66 int getArraySize (void) const { DE_ASSERT(isArrayType()); return m_data.array.size; } in getArraySize()
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/github.com/googleapis/gnostic/gnostic-0c5108395e2d/plugins/gnostic-swift-generator/Templates/
H A Dtypes.swift.tmpl30 //-{% if serviceTypeField.isArrayType %}
56 //-{% if serviceTypeField.isArrayType %}
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/googleapis/gnostic/gnostic-0c5108395e2d/plugins/gnostic-swift-generator/Templates/
H A Dtypes.swift.tmpl30 //-{% if serviceTypeField.isArrayType %}
56 //-{% if serviceTypeField.isArrayType %}
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-generator/Templates/
H A Dtypes.swift.tmpl30 //-{% if serviceTypeField.isArrayType %}
56 //-{% if serviceTypeField.isArrayType %}

12345678910>>...53