HomeSort by relevance Sort by last modified time
    Searched defs:stringer (Results 1 - 12 of 12) sorted by null

  /libcore/json/src/test/java/org/json/
JSONStringerTest.java 32 JSONStringer stringer = new JSONStringer(); local
33 stringer.array();
34 stringer.value(JSONObject.NULL);
35 stringer.endArray();
36 assertEquals("[null]", stringer.toString());
40 JSONStringer stringer = new JSONStringer(); local
41 stringer.object();
42 stringer.endObject();
43 assertEquals("{}", stringer.toString());
47 JSONStringer stringer = new JSONStringer() local
54 JSONStringer stringer = new JSONStringer(); local
66 JSONStringer stringer = new JSONStringer(); local
76 JSONStringer stringer = new JSONStringer(); local
96 JSONStringer stringer = new JSONStringer(); local
121 JSONStringer stringer = new JSONStringer(); local
181 JSONStringer stringer = new JSONStringer(); local
191 JSONStringer stringer = new JSONStringer(); local
233 JSONStringer stringer = new JSONStringer(); local
243 JSONStringer stringer = new JSONStringer(); local
251 JSONStringer stringer = new JSONStringer(); local
267 JSONStringer stringer = new JSONStringer(); local
288 JSONStringer stringer = new JSONStringer(); local
315 JSONStringer stringer = new JSONStringer(); local
329 JSONStringer stringer = new JSONStringer(); local
344 JSONStringer stringer = new JSONStringer(); local
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
content_test.go 266 type stringer struct { type
270 func (s *stringer) String() string {
283 s := &stringer{3}
  /prebuilts/go/darwin-x86/src/runtime/
error.go 64 type stringer interface { type
76 // simple and handle just a few important cases: int, string, and Stringer.
81 case stringer:
  /prebuilts/go/linux-x86/src/html/template/
content_test.go 266 type stringer struct { type
270 func (s *stringer) String() string {
283 s := &stringer{3}
  /prebuilts/go/linux-x86/src/runtime/
error.go 64 type stringer interface { type
76 // simple and handle just a few important cases: int, string, and Stringer.
81 case stringer:
  /libcore/json/src/main/java/org/json/
JSONArray.java 566 JSONStringer stringer = new JSONStringer(); local
567 stringer.open(JSONStringer.Scope.NULL, "");
570 stringer.out.append(separator);
572 stringer.value(values.get(i));
574 stringer.close(JSONStringer.Scope.NULL, JSONStringer.Scope.NULL, "");
575 return stringer.out.toString();
584 JSONStringer stringer = new JSONStringer(); local
585 writeTo(stringer);
586 return stringer.toString();
605 JSONStringer stringer = new JSONStringer(indentSpaces) local
    [all...]
JSONObject.java 691 JSONStringer stringer = new JSONStringer(); local
692 writeTo(stringer);
693 return stringer.toString();
715 JSONStringer stringer = new JSONStringer(indentSpaces); local
716 writeTo(stringer);
717 return stringer.toString();
720 void writeTo(JSONStringer stringer) throws JSONException {
721 stringer.object();
723 stringer.key(entry.getKey()).value(entry.getValue());
725 stringer.endObject()
767 JSONStringer stringer = new JSONStringer(); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
print.go 159 f := new(stringer)
333 type stringer float64 type
335 var stringerv stringer
337 func (*stringer) String() string {
341 func (*stringer) Warn(int, ...interface{}) string {
345 func (*stringer) Warnf(int, string, ...interface{}) string {
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
print.go 159 f := new(stringer)
333 type stringer float64 type
335 var stringerv stringer
337 func (*stringer) String() string {
341 func (*stringer) Warn(int, ...interface{}) string {
345 func (*stringer) Warnf(int, string, ...interface{}) string {
  /prebuilts/go/darwin-x86/src/text/template/
exec_test.go 57 // Stringer.
58 Str fmt.Stringer
348 {"Interface Call", `{{stringer .S}}`, "foozle", map[string]interface{}{"S": bytes.NewBufferString("foozle")}, true},
517 // Stringer.
639 func stringer(s fmt.Stringer) string { func
658 "stringer": stringer,
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
exec_test.go 57 // Stringer.
58 Str fmt.Stringer
348 {"Interface Call", `{{stringer .S}}`, "foozle", map[string]interface{}{"S": bytes.NewBufferString("foozle")}, true},
517 // Stringer.
639 func stringer(s fmt.Stringer) string { func
658 "stringer": stringer,
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
read.c 304 {"ascii", stringer, 8+0},
305 {"asciz", stringer, 8+1},
452 {"string", stringer, 8+1},
453 {"string8", stringer, 8+1},
454 {"string16", stringer, 16+1},
455 {"string32", stringer, 32+1},
456 {"string64", stringer, 64+1},
5267 stringer (int bits_appendzero) function
    [all...]

Completed in 804 milliseconds