Home
last modified time | relevance | path

Searched refs:leftType (Results 1 – 25 of 476) sorted by relevance

12345678910>>...20

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/Compiler/
H A DLambdaCompiler.Binary.cs135 EmitGetArrayElement(leftType); in EmitBinaryOperator()
153 …Debug.Assert(leftType.IsPrimitive || (op == ExpressionType.Equal || op == ExpressionType.NotEqual)… in EmitUnliftedBinaryOp()
179 if (leftType.IsUnsigned()) in EmitUnliftedBinaryOp()
218 … _ilg.Emit(leftType.IsUnsigned() || leftType.IsFloatingPoint() ? OpCodes.Cgt_Un : OpCodes.Cgt); in EmitUnliftedBinaryOp()
228 … _ilg.Emit(leftType.IsUnsigned() || leftType.IsFloatingPoint() ? OpCodes.Clt_Un : OpCodes.Clt); in EmitUnliftedBinaryOp()
239 EmitShiftMask(leftType); in EmitUnliftedBinaryOp()
244 EmitShiftMask(leftType); in EmitUnliftedBinaryOp()
256 private void EmitShiftMask(Type leftType) in EmitShiftMask() argument
295 if (leftType == typeof(bool?)) in EmitLiftedBinaryOp()
305 if (leftType == typeof(bool?)) in EmitLiftedBinaryOp()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/EntitySql/
H A DCqlErrorHelper.cs81 ReportIncompatibleCommonType(errCtx, leftType, rightType, leftType, rightType); in ReportIncompatibleCommonType()
100 bool isRootType = (rootLeftType == leftType); in ReportIncompatibleCommonType()
103 if (leftType.EdmType.BuiltInTypeKind != rightType.EdmType.BuiltInTypeKind) in ReportIncompatibleCommonType()
107 GetReadableTypeKind(leftType), in ReportIncompatibleCommonType()
108 GetReadableTypeName(leftType), in ReportIncompatibleCommonType()
113 switch( leftType.EdmType.BuiltInTypeKind ) in ReportIncompatibleCommonType()
116 RowType leftRow = (RowType)leftType.EdmType; in ReportIncompatibleCommonType()
150 TypeHelpers.GetElementTypeUsage(leftType), in ReportIncompatibleCommonType()
160 GetReadableTypeName(leftType), in ReportIncompatibleCommonType()
166 GetReadableTypeName(leftType), in ReportIncompatibleCommonType()
[all …]
/dports/www/zend-framework/ZendFramework-2.4.13/library/Zend/Db/Sql/Predicate/
H A DPredicate.php75 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
79 …public function equalTo($left, $right, $leftType = self::TYPE_IDENTIFIER, $rightType = self::TYPE_… argument
82 new Operator($left, Operator::OPERATOR_EQUAL_TO, $right, $leftType, $rightType),
97 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
104 new Operator($left, Operator::OPERATOR_NOT_EQUAL_TO, $right, $leftType, $rightType),
119 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
126 new Operator($left, Operator::OPERATOR_LESS_THAN, $right, $leftType, $rightType),
141 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
148 new Operator($left, Operator::OPERATOR_GREATER_THAN, $right, $leftType, $rightType),
163 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
[all …]
H A DOperator.php56 protected $leftType = self::TYPE_IDENTIFIER; variable in Zend\\Db\\Sql\\Predicate\\Operator
74 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedTy…
81 $leftType = self::TYPE_IDENTIFIER, argument
96 if ($leftType !== self::TYPE_IDENTIFIER) {
97 $this->setLeftType($leftType);
117 $left = $this->normalizeArgument($left, $this->leftType);
118 $this->leftType = $left[1];
154 $this->leftType = $type;
166 return $this->leftType;
261 list($values[], $types[]) = $this->normalizeArgument($this->left, $this->leftType);
/dports/www/serendipity/Serendipity-2.3.5/bundled-libs/zendframework/zend-db/src/Sql/Predicate/
H A DPredicate.php75 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
79 …public function equalTo($left, $right, $leftType = self::TYPE_IDENTIFIER, $rightType = self::TYPE_… argument
82 new Operator($left, Operator::OPERATOR_EQUAL_TO, $right, $leftType, $rightType),
97 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
104 new Operator($left, Operator::OPERATOR_NOT_EQUAL_TO, $right, $leftType, $rightType),
119 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
126 new Operator($left, Operator::OPERATOR_LESS_THAN, $right, $leftType, $rightType),
141 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedT…
148 new Operator($left, Operator::OPERATOR_GREATER_THAN, $right, $leftType, $rightType),
170 … new Operator($left, Operator::OPERATOR_LESS_THAN_OR_EQUAL_TO, $right, $leftType, $rightType),
[all …]
H A DOperator.php56 protected $leftType = self::TYPE_IDENTIFIER; variable in Zend\\Db\\Sql\\Predicate\\Operator
74 …* @param string $leftType TYPE_IDENTIFIER or TYPE_VALUE by default TYPE_IDENTIFIER {@see allowedTy…
81 $leftType = self::TYPE_IDENTIFIER, argument
96 if ($leftType !== self::TYPE_IDENTIFIER) {
97 $this->setLeftType($leftType);
117 $left = $this->normalizeArgument($left, $this->leftType);
118 $this->leftType = $left[1];
154 $this->leftType = $type;
166 return $this->leftType;
261 list($values[], $types[]) = $this->normalizeArgument($this->left, $this->leftType);
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/Microsoft/Scripting/Compiler/
H A DLambdaCompiler.Binary.cs166 EmitUnliftedEquality(op, leftType); in EmitUnliftedBinaryOp()
169 if (!leftType.IsPrimitive) { in EmitUnliftedBinaryOp()
340 if (leftType == typeof(bool?)) { in EmitLiftedBinaryOp()
347 if (leftType == typeof(bool?)) { in EmitLiftedBinaryOp()
396 _ilg.EmitHasValue(leftType); in EmitLiftedRelational()
410 _ilg.EmitHasValue(leftType); in EmitLiftedRelational()
421 _ilg.EmitHasValue(leftType); in EmitLiftedRelational()
431 _ilg.EmitHasValue(leftType); in EmitLiftedRelational()
445 _ilg.EmitHasValue(leftType); in EmitLiftedRelational()
456 _ilg.EmitGetValueOrDefault(leftType); in EmitLiftedRelational()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DEqualExpression.java256 public final void computeConstant(TypeBinding leftType, in computeConstant() argument
261 left.constant, leftType.id, EQUAL_EQUAL, right.constant, in computeConstant()
578 TypeBinding leftType = left.resolveType(scope); in resolveType() local
580 if (leftType == null || rightType == null) { in resolveType()
586 if (leftType.isBaseType() && rightType.isBaseType()) { in resolveType()
598 scope.problemReporter().invalidOperator(this, leftType, in resolveType()
602 computeConstant(leftType, rightType); in resolveType()
609 if (areTypesCastCompatible(scope, rightType, leftType) in resolveType()
610 || areTypesCastCompatible(scope, leftType, rightType)) { in resolveType()
613 computeConstant(leftType, rightType); in resolveType()
[all …]
/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/ast/
H A DEqualExpression.java77 leftType.id, in computeConstant()
378 TypeBinding leftType = left.resolveType(scope); in resolveType() local
384 if (leftType == null || rightType == null){ in resolveType()
390 if (leftType.isBaseType() && rightType.isBaseType()) { in resolveType()
401 scope.problemReporter().invalidOperator(this, leftType, rightType); in resolveType()
408 computeConstant(leftType, rightType); in resolveType()
414 if (this.checkCastTypesCompatibility(scope, leftType, rightType, null) in resolveType()
415 || this.checkCastTypesCompatibility(scope, rightType, leftType, null)) { in resolveType()
418 if ((rightType.id == T_String) && (leftType.id == T_String)) { in resolveType()
419 computeConstant(leftType, rightType); in resolveType()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Components/RTShaderSystem/src/
H A DOgreShaderFunctionAtom.cpp315 GpuConstantType leftType = itLHSOps->getParameter()->getType(); in operator ()() local
320 if (leftType == GCT_SAMPLER1D) in operator ()()
321 leftType = GCT_SAMPLER2D; in operator ()()
334leftType = (GpuConstantType)((itLHSOps->getParameter()->getType() - itLHSOps->getParameter()->getT… in operator ()()
344 if (leftType < rightType) in operator ()()
346 if (leftType > rightType) in operator ()()
376 GpuConstantType leftType = itLHSOps->getParameter()->getType(); in operator ()() local
381 if (leftType == GCT_SAMPLER1D) in operator ()()
382 leftType = GCT_SAMPLER2D; in operator ()()
395leftType = (GpuConstantType)((itLHSOps->getParameter()->getType() - itLHSOps->getParameter()->getT… in operator ()()
[all …]
/dports/cad/ktechlab/ktechlab-0.50.0/microbe/
H A Dexpression.cpp191 PIC14::LocationType leftType = PIC14::num; in doOp() local
195 leftType = PIC14::num; in doOp()
199 leftType = PIC14::var; in doOp()
203 leftType = PIC14::work; in doOp()
235 case equals: m_pic->equal( lvalue, rvalue, leftType, rightType ); break; in doOp()
236 case notequals: m_pic->notEqual( lvalue, rvalue, leftType, rightType ); break; in doOp()
237 case lt: m_pic->lessThan( lvalue, rvalue, leftType, rightType ); break; in doOp()
238 case gt: m_pic->greaterThan( lvalue, rvalue, leftType, rightType ); break; in doOp()
239 case le: m_pic->lessOrEqual( lvalue, rvalue, leftType, rightType ); break; in doOp()
242 case addition: m_pic->add( lvalue, rvalue, leftType, rightType ); break; in doOp()
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/actions/expression/nodes/
H A DRandomRangeExpression.cpp66 const auto leftType = m_leftExpression->getExpressionType(); in validate() local
69 const auto& leftTypedef = TypeDefinition::forValueType(leftType); in validate()
73 if (leftType != rightType) { in validate()
82 if (leftType != ValueType::Float && leftType != ValueType::Integer) { in validate()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/
H A DEqualExpression.java214 leftType.id, in computeConstant()
883 if (leftType != TypeBinding.NULL && leftType.isBaseType()) { in resolveType()
889 leftType = scope.environment().computeBoxingType(leftType); in resolveType()
894 if (leftType.isBaseType() && rightType.isBaseType()) { in resolveType()
895 int leftTypeID = leftType.id; in resolveType()
915 computeConstant(leftType, rightType); in resolveType()
935 if ((!leftType.isBaseType() || leftType == TypeBinding.NULL) // cannot compare: Object == (int)0 in resolveType()
942 computeConstant(leftType, rightType); in resolveType()
947 this.left.computeConversion(scope, objectType, leftType); in resolveType()
982 if (leftType.isParameterizedType()) { in isCastNeeded()
[all …]
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DEqualExpression.java197 leftType.id, in computeConstant()
846 if (leftType != TypeBinding.NULL && leftType.isBaseType()) { in resolveType()
852 leftType = scope.environment().computeBoxingType(leftType); in resolveType()
857 if (leftType.isBaseType() && rightType.isBaseType()) { in resolveType()
858 int leftTypeID = leftType.id; in resolveType()
871 scope.problemReporter().invalidOperator(this, leftType, rightType); in resolveType()
878 computeConstant(leftType, rightType); in resolveType()
898 if ((!leftType.isBaseType() || leftType == TypeBinding.NULL) // cannot compare: Object == (int)0 in resolveType()
900 && (checkCastTypesCompatibility(scope, leftType, rightType, null) in resolveType()
905 computeConstant(leftType, rightType); in resolveType()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/CompilerServices/
H A DOperators.Resolution.vb134 Dim leftType As Type
142 leftType = rightType
143 arguments(0) = New TypedNothing(leftType)
145 leftType = arguments(0).GetType
151 rightType = leftType
163 leftType,
H A DOverloadResolution.vb90 ByVal leftType As Type,
98 Debug.Assert(IsNumericType(leftType) AndAlso Not IsEnum(leftType) AndAlso
102 If leftType Is rightType Then
136 If leftType.IsByRef Then leftType = GetElementType(leftType)
140 leftType = GetElementType(leftType)
242 If leftType.IsByRef Then
243 leftType = GetElementType(leftType)
253 leftType = GetElementType(leftType)
310 If leftType.IsByRef Then
311 leftType = GetElementType(leftType)
[all …]
/dports/graphics/ogre3d/ogre-1.11.6/Components/RTShaderSystem/src/
H A DOgreShaderFunctionAtom.cpp344 GpuConstantType leftType = itLHSOps->getParameter()->getType(); in operator ()() local
354leftType = (GpuConstantType)((itLHSOps->getParameter()->getType() - itLHSOps->getParameter()->getT… in operator ()()
364 if (leftType < rightType) in operator ()()
366 if (leftType > rightType) in operator ()()
396 GpuConstantType leftType = itLHSOps->getParameter()->getType(); in operator ()() local
401 if (leftType == GCT_SAMPLER1D) in operator ()()
402 leftType = GCT_SAMPLER2D; in operator ()()
415leftType = (GpuConstantType)((itLHSOps->getParameter()->getType() - itLHSOps->getParameter()->getT… in operator ()()
425 if (leftType != rightType) in operator ()()
/dports/sysutils/k3b/k3b-21.12.3/src/projects/
H A Dk3bdataprojectsortproxymodel.cpp26 const int leftType = left.data( DataProjectModel::ItemTypeRole ).toInt(); in lessThan() local
28 if( leftType == DataProjectModel::DirItemType && rightType == DataProjectModel::FileItemType ) in lessThan()
30 …else if( leftType == DataProjectModel::FileItemType && rightType == DataProjectModel::DirItemType ) in lessThan()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/compiler/translator/tree_ops/
H A DRecordUniformBlocksTranslatedToStructuredBuffers.cpp181 const TType &leftType = node->getLeft()->getType(); in visitBinary() local
182 if (leftType.isInterfaceBlock()) in visitBinary()
184 const TInterfaceBlock *interfaceBlock = leftType.getInterfaceBlock(); in visitBinary()
196 leftType.isArray() ? leftType.getOutermostArraySize() : 1; in visitBinary()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/angle/checkout/src/compiler/translator/tree_ops/
H A DRecordUniformBlocksTranslatedToStructuredBuffers.cpp181 const TType &leftType = node->getLeft()->getType(); in visitBinary() local
182 if (leftType.isInterfaceBlock()) in visitBinary()
184 const TInterfaceBlock *interfaceBlock = leftType.getInterfaceBlock(); in visitBinary()
196 leftType.isArray() ? leftType.getOutermostArraySize() : 1; in visitBinary()
/dports/www/mediawiki136/mediawiki-1.36.3/vendor/wikimedia/cldr-plural-rule-parser/src/Converter/
H A DOperator.php94 $leftType = self::$typeSpecMap[$typeSpec[0]];
106 if ( !$left->isType( $leftType ) ) {
107 $newExpr->error( "invalid type for left operand: expected $leftType, got {$left->type}" );
/dports/www/mediawiki135/mediawiki-1.35.5/vendor/wikimedia/cldr-plural-rule-parser/src/Converter/
H A DOperator.php92 $leftType = self::$typeSpecMap[$typeSpec[0]];
104 if ( !$left->isType( $leftType ) ) {
105 $newExpr->error( "invalid type for left operand: expected $leftType, got {$left->type}" );
/dports/www/mediawiki137/mediawiki-1.37.1/vendor/wikimedia/cldr-plural-rule-parser/src/Converter/
H A DOperator.php94 $leftType = self::$typeSpecMap[$typeSpec[0]];
106 if ( !$left->isType( $leftType ) ) {
107 $newExpr->error( "invalid type for left operand: expected $leftType, got {$left->type}" );
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DBinaryBitwiseOperatorFactory.java52 final Type leftType = PseudoRandom.randomElement(castableFromResult); in generateTypes() local
55 …return PseudoRandom.randomBoolean() ? new Pair<>(leftType, rightType) : new Pair<>(rightType, left… in generateTypes()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DBinaryBitwiseOperatorFactory.java52 final Type leftType = PseudoRandom.randomElement(castableFromResult); in generateTypes() local
55 …return PseudoRandom.randomBoolean() ? new Pair<>(leftType, rightType) : new Pair<>(rightType, left… in generateTypes()

12345678910>>...20