Home
last modified time | relevance | path

Searched refs:applyKind (Results 1 – 8 of 8) sorted by relevance

/dports/net-mgmt/promscale/promscale-0.6.2/pkg/log/
H A Dlog.go127 applyKind := func(logMsg []interface{}) (newLogMsg []interface{}) {
137 Debug(applyKind(line)...)
139 Warn(applyKind(line)...)
/dports/math/cvc4/CVC4-1.7/src/expr/
H A Dmkmetakind312 applyKind=$2
315 case kind::$applyKind: return kind::$operatorKind;";
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/CommandTrees/
H A DRelationalExpressions.cs30 …internal DbApplyExpression(DbExpressionKind applyKind, TypeUsage resultRowCollectionTypeUsage, DbE… in DbApplyExpression() argument
31 : base(applyKind, resultRowCollectionTypeUsage) in DbApplyExpression()
35 …Debug.Assert(DbExpressionKind.CrossApply == applyKind || DbExpressionKind.OuterApply == applyKind,… in DbApplyExpression()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/EntitySql/AST/
H A DQueryExpr.cs555 … internal ApplyClauseItem(FromClauseItem applyLeft, FromClauseItem applyRight, ApplyKind applyKind) in ApplyClauseItem() argument
559 _applyKind = applyKind; in ApplyClauseItem()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/CommandTrees/ExpressionBuilder/
H A DDbExpressionBuilder.cs2702 …internal static DbApplyExpression CreateApplyExpressionByKind(DbExpressionKind applyKind, DbExpres… in CreateApplyExpressionByKind() argument
2704 …Debug.Assert(DbExpressionKind.CrossApply == applyKind || DbExpressionKind.OuterApply == applyKind,… in CreateApplyExpressionByKind()
2706 switch (applyKind) in CreateApplyExpressionByKind()
2715 … throw EntityUtil.InvalidEnumerationValue(typeof(DbExpressionKind), (int)applyKind); in CreateApplyExpressionByKind()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Query/PlanCompiler/
H A DCTreeGenerator.cs2011 private DbExpression VisitApply(Node applyNode, DbExpressionKind applyKind) in VisitApply() argument
2024 applyKind, in VisitApply()
H A DTransformationRules.cs2920 OpType applyKind = applyNode.Op.OpType; in ProcessApplyIntoScalarSubquery()
2922 if (!CanRewriteApply(applyNode.Child1, applyRightChildNodeInfo, applyKind)) in ProcessApplyIntoScalarSubquery()
2972 …c bool CanRewriteApply(Node rightChild, ExtendedNodeInfo applyRightChildNodeInfo, OpType applyKind) in CanRewriteApply() argument
2987 if (applyKind == OpType.CrossApply && (applyRightChildNodeInfo.MinRows != RowCount.One)) in CanRewriteApply()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/EntitySql/
H A DSemanticAnalyzer.cs3290 private static DbExpressionKind MapApplyKind(AST.ApplyKind applyKind) in MapApplyKind() argument
3292 return applyMap[(int)applyKind]; in MapApplyKind()