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