2 overrides of Length
Microsoft.CodeAnalysis (2)
Collections\Rope.cs (2)
166
public override int
Length
=> _value.Length;
176
public override int
Length
{ get; }
15 references to Length
Microsoft.CodeAnalysis (13)
Collections\Rope.cs (11)
22
public bool IsEmpty =>
Length
== 0;
106
r1.
Length
== 0 ? r2 :
107
r2.
Length
== 0 ? r1 :
108
checked(r1.
Length
+ r2.
Length
< 32) ? ForString(r1.ToString() + r2.ToString()) :
117
if (!(obj is Rope other) ||
Length
!= other.
Length
)
119
if (
Length
== 0)
134
int result =
Length
;
182
Length = checked(left.
Length
+ right.
Length
);
ConstantValueSpecialized.cs (2)
217
int formatLength = RopeValue.
Length
;
223
return formatLength < RopeValue.
Length
?
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Operators.cs (2)
3208
long newLength = (long)leftValue.
Length
+ (long)rightValue.
Length
;