12 writes to name
Microsoft.CSharp (12)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\NamespaceSymbol.cs (1)
41
name
= NameManager.GetPredefinedName(PredefinedName.PN_VOID)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\SymFactory.cs (11)
21
sym.
name
= name;
25
sym.
name
= name;
29
sym.
name
= name;
33
sym.
name
= name;
37
sym.
name
= name;
41
sym.
name
= name;
45
sym.
name
= name;
49
sym.
name
= name;
53
sym.
name
= name;
57
sym.
name
= name;
91
sym.
name
= name;
29 references to name
Microsoft.CSharp (29)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (11)
222
ErrAppendName(meth.getClass().
name
);
250
ErrAppendString(Operators.OperatorOfMethodName(meth.
name
));
255
ErrAppendName(meth.
name
);
300
ErrAppendName(prop.
name
);
331
ErrAppendName(sym.
name
);
356
ErrAppendName(sym.
name
);
362
ErrAppendName(sym.
name
);
366
if (null == sym.
name
)
376
ErrAppendName(sym.
name
);
381
ErrAppendName(sym.
name
);
425
ErrAppendName(pAggType.OwningAggregate.
name
);
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (3)
629
ExprMemberGroup pMemGroup = CreateMemberGroupExpr(property.
name
.Text, null, callingObject, SYMKIND.SK_PropertySymbol);
641
ExprMemberGroup memgroup = CreateMemberGroupExpr(index.
name
.Text, null, callingObject, SYMKIND.SK_PropertySymbol);
834
throw Error.BindCallToConditionalMethod(method.
name
);
Microsoft\CSharp\RuntimeBinder\Semantics\ExprFactory.cs (1)
30
Name name = method.Sym?.
name
;
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (3)
619
for (MethodOrPropertySymbol meth = SymbolLoader.LookupAggMember(method.
name
, pAggregate, symbmask_t.MASK_MethodSymbol | symbmask_t.MASK_PropertySymbol) as MethodOrPropertySymbol;
1158
nameErr = ((AggregateType)_pGroup.OptionalObject.Type).OwningAggregate.
name
;
1199
ErrorCode.ERR_BadNamedArgumentForDelegateInvoke, agg.OwningAggregate.
name
,
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (4)
147
(!symCur.
name
.Text.StartsWith("set_", StringComparison.Ordinal) || meth.Params.Count <= 1) &&
148
(!symCur.
name
.Text.StartsWith("get_", StringComparison.Ordinal) || meth.Params.Count <= 0))
478
ErrorCode.ERR_BindToBogusProp1, swt.Sym.
name
, new SymWithType(meth1 ?? meth2, swt.GetType()),
481
ErrorCode.ERR_BindToBogusProp2, swt.Sym.
name
, new SymWithType(meth1, swt.GetType()),
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\FieldSymbol.cs (1)
42
return SymbolLoader.LookupAggMember(
name
, getClass(), symbmask_t.MASK_EventSymbol) as EventSymbol;
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\MethodOrPropertySymbol.cs (1)
183
return
name
== null;
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\SymbolStore.cs (2)
46
if (s_dictionary.TryGetValue(new Key(child.
name
, child.parent), out Symbol sym))
59
s_dictionary.Add(new Key(child.
name
, child.parent), child);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (1)
814
Expr create = GenerateParameter(local.
name
.Text, local.GetType());
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (1)
322
if (typeArg is TypeParameterType typeParamArg && typeParamArg.Symbol.
name
== null)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeParameterType.cs (1)
30
public Name Name => Symbol.
name
;