Home
last modified time | relevance | path

Searched refs:IsIntegerOrBool (Results 1 – 6 of 6) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/Microsoft/Scripting/Ast/
H A DBinaryExpression.cs2313 if (left.Type == right.Type && TypeUtils.IsIntegerOrBool(left.Type)) { in And()
2362 if (left.Type == right.Type && TypeUtils.IsIntegerOrBool(left.Type)) { in AndAssign()
2399 if (left.Type == right.Type && TypeUtils.IsIntegerOrBool(left.Type)) { in Or()
2448 if (left.Type == right.Type && TypeUtils.IsIntegerOrBool(left.Type)) { in OrAssign()
2484 if (left.Type == right.Type && TypeUtils.IsIntegerOrBool(left.Type)) { in ExclusiveOr()
2532 if (left.Type == right.Type && TypeUtils.IsIntegerOrBool(left.Type)) { in ExclusiveOrAssign()
H A DTypeUtils.cs131 internal static bool IsIntegerOrBool(Type type) { in IsIntegerOrBool() method in System.Dynamic.Utils.TypeUtils
H A DUnaryExpression.cs565 if (TypeUtils.IsIntegerOrBool(expression.Type)) { in Not()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/
H A DBinaryExpression.cs2508 if (left.Type == right.Type && left.Type.IsIntegerOrBool()) in And()
2561 if (left.Type == right.Type && left.Type.IsIntegerOrBool()) in AndAssign()
2602 if (left.Type == right.Type && left.Type.IsIntegerOrBool()) in Or()
2655 if (left.Type == right.Type && left.Type.IsIntegerOrBool()) in OrAssign()
2696 if (left.Type == right.Type && left.Type.IsIntegerOrBool()) in ExclusiveOr()
2749 if (left.Type == right.Type && left.Type.IsIntegerOrBool()) in ExclusiveOrAssign()
H A DUnaryExpression.cs602 if (expression.Type.IsIntegerOrBool()) in Not()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Dynamic/Utils/
H A DTypeUtils.cs140 public static bool IsIntegerOrBool(this Type type) in IsIntegerOrBool() method in System.Dynamic.Utils.TypeUtils