/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
sortperf.py | 11 import marshal 31 marshal.dump(result, fp) 43 result = marshal.load(fp)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
sortperf.py | 11 import marshal 31 marshal.dump(result, fp) 43 result = marshal.load(fp)
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
decode_test.go | 105 // u8marshal is an integer type that can marshal/unmarshal itself. 872 b, err := Marshal(allValue) 874 t.Fatalf("Marshal allValue: %v", err) 877 t.Errorf("Marshal allValueCompact") 882 b, err = Marshal(pallValue) 884 t.Fatalf("Marshal pallValue: %v", err) 887 t.Errorf("Marshal pallValueCompact") 906 b, err := Marshal(tt.in) 908 t.Errorf("Marshal(%q) = %#q, %v, want %#q, nil", tt.in, b, err, tt.out) 915 out, err := Marshal(n [all...] |
encode.go | 7 // in the documentation for the Marshal and Unmarshal functions. 30 // Marshal returns the JSON encoding of v. 32 // Marshal traverses the value v recursively. 34 // and is not a nil pointer, Marshal calls its MarshalJSON method 36 // value implements encoding.TextMarshaler instead, Marshal calls 42 // Otherwise, Marshal uses the following type-dependent default encodings: 120 // deciding which field to marshal or unmarshal. If there are 152 // Attempting to encode such a value causes Marshal to return 155 // JSON cannot represent cyclic data structures and Marshal does not 156 // handle them. Passing cyclic structures to Marshal will result i 286 func (e *encodeState) marshal(v interface{}, opts encOpts) (err error) { func [all...] |
stream_test.go | 210 b, err := Marshal(&data) 212 t.Fatalf("Marshal: %v", err) 215 t.Fatalf("Marshal: have %#q want %#q", b, msg) 235 b, err := Marshal(&data) 237 t.Fatalf("Marshal: %v", err) 240 t.Fatalf("Marshal: have %#q want %#q", b, msg)
|
example_test.go | 28 b, err := json.Marshal(group) 222 // This example uses RawMessage to use a precomputed JSON during marshal. 256 b, err := json.Marshal(roads)
|
/prebuilts/go/linux-x86/src/encoding/json/ |
decode_test.go | 105 // u8marshal is an integer type that can marshal/unmarshal itself. 872 b, err := Marshal(allValue) 874 t.Fatalf("Marshal allValue: %v", err) 877 t.Errorf("Marshal allValueCompact") 882 b, err = Marshal(pallValue) 884 t.Fatalf("Marshal pallValue: %v", err) 887 t.Errorf("Marshal pallValueCompact") 906 b, err := Marshal(tt.in) 908 t.Errorf("Marshal(%q) = %#q, %v, want %#q, nil", tt.in, b, err, tt.out) 915 out, err := Marshal(n [all...] |
encode.go | 7 // in the documentation for the Marshal and Unmarshal functions. 30 // Marshal returns the JSON encoding of v. 32 // Marshal traverses the value v recursively. 34 // and is not a nil pointer, Marshal calls its MarshalJSON method 36 // value implements encoding.TextMarshaler instead, Marshal calls 42 // Otherwise, Marshal uses the following type-dependent default encodings: 120 // deciding which field to marshal or unmarshal. If there are 152 // Attempting to encode such a value causes Marshal to return 155 // JSON cannot represent cyclic data structures and Marshal does not 156 // handle them. Passing cyclic structures to Marshal will result i 286 func (e *encodeState) marshal(v interface{}, opts encOpts) (err error) { func [all...] |
stream_test.go | 210 b, err := Marshal(&data) 212 t.Fatalf("Marshal: %v", err) 215 t.Fatalf("Marshal: have %#q want %#q", b, msg) 235 b, err := Marshal(&data) 237 t.Fatalf("Marshal: %v", err) 240 t.Fatalf("Marshal: have %#q want %#q", b, msg)
|
example_test.go | 28 b, err := json.Marshal(group) 222 // This example uses RawMessage to use a precomputed JSON during marshal. 256 b, err := json.Marshal(roads)
|
/external/golang-protobuf/proto/ |
message_set.go | 113 func (ms *messageSet) Marshal(pb Message) error { 114 msg, err := Marshal(pb) 151 // It is called by generated Marshal methods on protocol buffer messages with the message_set_wire_format option. 188 return Marshal(ms) 274 d, err := json.Marshal(x)
|
extensions_test.go | 90 b, err := proto.Marshal(msg) 92 t.Fatalf("Could not marshal msg: %v", err) 139 bb, err := proto.Marshal(msg) 141 t.Fatalf("Marshal() failed: %s", err) 345 // Note: if the behavior of Marshal is ever changed to ignore nil extensions, update 346 // this test to verify that E_Ext_Text is properly propagated through marshal->unmarshal. 380 // Marshal message with a repeated extension. 386 b, err := proto.Marshal(msg1) 459 b, err := proto.Marshal(msg) 529 _, err := proto.Marshal(m [all...] |
any_test.go | 56 // if messages are proto.Equal, no need to marshal. 74 nb, err := proto.Marshal(nested) 103 any1b, err := proto.Marshal(any1) 109 any2b, err := proto.Marshal(any2)
|
/prebuilts/go/darwin-x86/src/os/ |
file_plan9.go | 185 n, err := d.Marshal(buf[:]) 211 n, err := d.Marshal(buf[:]) 232 n, err := d.Marshal(buf[:]) 303 n, err := d.Marshal(buf[:]) 357 n, err := d.Marshal(buf[:]) 386 n, err := d.Marshal(buf[:]) 410 n, err := d.Marshal(buf[:])
|
/prebuilts/go/linux-x86/src/os/ |
file_plan9.go | 185 n, err := d.Marshal(buf[:]) 211 n, err := d.Marshal(buf[:]) 232 n, err := d.Marshal(buf[:]) 303 n, err := d.Marshal(buf[:]) 357 n, err := d.Marshal(buf[:]) 386 n, err := d.Marshal(buf[:]) 410 n, err := d.Marshal(buf[:])
|
/cts/tests/accessibility/src/android/view/accessibility/cts/ |
AccessibilityEventTest.java | 41 // fully populate the event to marshal 45 // marshal and unmarshal the event 174 * Fully populates the {@link AccessibilityEvent} to marshal.
|
/prebuilts/go/darwin-x86/src/math/big/ |
ratconv.go | 205 return string(x.marshal()) 208 // marshal implements String returning a slice of bytes 209 func (x *Rat) marshal() []byte { func
|
ratmarsh.go | 65 return x.marshal(), nil
|
/prebuilts/go/linux-x86/src/math/big/ |
ratconv.go | 205 return string(x.marshal()) 208 // marshal implements String returning a slice of bytes 209 func (x *Rat) marshal() []byte { func
|
ratmarsh.go | 65 return x.marshal(), nil
|
/external/golang-protobuf/protoc-gen-go/testdata/ |
imp.pb.go.golden | 87 func (this *ImportedExtendable) Marshal() ([]byte, error) {
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
DM.java | 31 class DM implements Marshal {
|
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/ |
MarshalFloat.java | 28 public class MarshalFloat implements Marshal {
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/ |
route_classic.go | 14 func (m *RouteMessage) marshal() ([]byte, error) { func
|
route_openbsd.go | 9 func (m *RouteMessage) marshal() ([]byte, error) { func
|