27 references to Indices
System (3)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
930foreach(CodeExpression exp in e.Indices) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1278foreach(CodeExpression exp in e.Indices) {
compmod\system\codedom\compiler\CodeValidator.cs (1)
723foreach(CodeExpression exp in e.Indices) {
System.Workflow.Activities (24)
Rules\Expressions.cs (24)
2282if (indexerExpr.Indices == null || indexerExpr.Indices.Count == 0) 2317for (int i = 0; i < indexerExpr.Indices.Count; ++i) 2319CodeExpression argExpr = indexerExpr.Indices[i]; 2457analysis.AnalyzeRuleAttributes(pi, targetObject, qualifier, indexerExpr.Indices, pi.GetIndexParameters(), attributedExprs); 2469for (int i = 0; i < indexerExpr.Indices.Count; ++i) 2471CodeExpression argExpr = indexerExpr.Indices[i]; 2511int actualArgCount = indexerExpr.Indices.Count; 2522Type argType = execution.Validation.ExpressionInfo(indexerExpr.Indices[i]).ExpressionType; 2523RuleExpressionResult argResult = RuleExpressionWalker.Evaluate(execution, indexerExpr.Indices[i]); 2546Type argType = execution.Validation.ExpressionInfo(indexerExpr.Indices[i]).ExpressionType; 2547RuleExpressionResult argResult = RuleExpressionWalker.Evaluate(execution, indexerExpr.Indices[i]); 2573if (indexerExpr.Indices == null || indexerExpr.Indices.Count == 0) 2583RuleExpressionWalker.Decompile(stringBuilder, indexerExpr.Indices[0], null); 2584for (int i = 1; i < indexerExpr.Indices.Count; ++i) 2587RuleExpressionWalker.Decompile(stringBuilder, indexerExpr.Indices[i], null); 2598CodeExpression[] indices = new CodeExpression[indexerExpr.Indices.Count]; 2600indices[i] = RuleExpressionWalker.Clone(indexerExpr.Indices[i]); 2614if (indexerExpr.Indices.Count != indexerComperand.Indices.Count) 2617for (int i = 0; i < indexerExpr.Indices.Count; ++i) 2619if (!RuleExpressionWalker.Match(indexerExpr.Indices[i], indexerComperand.Indices[i]))