Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:SB

338   SB: TStringBuilder;
342 SB := TStringBuilder.Create;
346 SB.Append('{');
351 SB.Append(', ');
352 SB.AppendFormat('%d=%s', [E.Key, ListToString(E.Value)]);
355 SB.Append('}');
358 SB.Insert(0, 'null');
359 Result := SB.ToString;
361 SB.Free;
368 SB: TStringBuilder;
374 SB := TStringBuilder.Create;
378 SB.Append('[');
382 SB.Append(', ');
385 SB.Append('null')
388 SB.Append(DictionaryToString(Dict))
391 SB.Append(ListToString(List))
393 SB.Append(Element.ToString);
395 SB.Append(']');
398 SB.Insert(0, 'null');
399 Result := SB.ToString;
401 SB.Free;
407 SB: TStringBuilder;
410 SB := TStringBuilder.Create;
414 SB.Append('[');
418 SB.Append(', ');
419 SB.Append(Coll[I]);
421 SB.Append(']');
424 SB.Insert(0, 'null');
425 Result := SB.ToString;
427 SB.Free;