/prebuilts/go/linux-x86/src/encoding/xml/ |
read.go | 24 // Unmarshal parses the XML-encoded data and stores the result in 29 // Because Unmarshal uses the reflect package, it can only assign 30 // to exported (upper case) fields. Unmarshal uses a case-sensitive 34 // Unmarshal maps an XML element to a struct using the following rules. 39 // ",innerxml", Unmarshal accumulates the raw XML nested inside the 43 // Unmarshal records the element name in that field. 47 // the given name (and, optionally, name space) or else Unmarshal 53 // Unmarshal records the attribute value in that field. 66 // the prefix of a tag formatted as "a" or "a>b>c", unmarshal 74 // explicit name tag as per the previous rule, unmarshal map 272 func (p *Decoder) unmarshal(val reflect.Value, start *StartElement) error { func [all...] |
/prebuilts/go/darwin-x86/src/encoding/json/ |
decode.go | 24 // Unmarshal parses the JSON-encoded data and stores the result 27 // Unmarshal uses the inverse of the encodings that 31 // To unmarshal JSON into a pointer, Unmarshal first handles the case of 32 // the JSON being the JSON literal null. In that case, Unmarshal sets 33 // the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into 34 // the value pointed at by the pointer. If the pointer is nil, Unmarshal 37 // To unmarshal JSON into a struct, Unmarshal matches incoming object 41 // To unmarshal JSON into an interface value 139 func (d *decodeState) unmarshal(v interface{}) (err error) { func [all...] |
decode_test.go | 55 // A type that can unmarshal itself. 295 // unmarshal interface test 585 if err := Unmarshal(jsonBig, &v); err != nil { 586 t.Fatalf("Unmarshal: %v", err) 641 if err := Unmarshal(b, &s1); err != nil { 642 t.Fatalf("Unmarshal: %v", err) 657 if err := Unmarshal([]byte(`{"X":1}`), &i); err != nil { 658 t.Fatalf("Unmarshal: %v", err) 668 if err := Unmarshal([]byte(`{"X":1}`), &pxint); err != nil { 669 t.Fatalf("Unmarshal: %v", err [all...] |
stream.go | 34 // UseNumber causes the Decoder to unmarshal a number into an interface{} as a 41 // See the documentation for Unmarshal for details about 64 // Don't save err from unmarshal into dec.err: 67 err = dec.d.unmarshal(v)
|
bench_test.go | 57 if err := Unmarshal(codeJSON, &codeStruct); err != nil { 58 panic("unmarshal code.json: " + err.Error()) 160 if err := Unmarshal(codeJSON, &r); err != nil { 175 if err := Unmarshal(codeJSON, &r); err != nil { 186 if err := Unmarshal(data, &s); err != nil { 187 b.Fatal("Unmarshal:", err) 197 if err := Unmarshal(data, &f); err != nil { 198 b.Fatal("Unmarshal:", err) 208 if err := Unmarshal(data, &x); err != nil { 209 b.Fatal("Unmarshal:", err [all...] |
/prebuilts/go/linux-x86/src/encoding/json/ |
decode.go | 24 // Unmarshal parses the JSON-encoded data and stores the result 27 // Unmarshal uses the inverse of the encodings that 31 // To unmarshal JSON into a pointer, Unmarshal first handles the case of 32 // the JSON being the JSON literal null. In that case, Unmarshal sets 33 // the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into 34 // the value pointed at by the pointer. If the pointer is nil, Unmarshal 37 // To unmarshal JSON into a struct, Unmarshal matches incoming object 41 // To unmarshal JSON into an interface value 139 func (d *decodeState) unmarshal(v interface{}) (err error) { func [all...] |
decode_test.go | 55 // A type that can unmarshal itself. 295 // unmarshal interface test 585 if err := Unmarshal(jsonBig, &v); err != nil { 586 t.Fatalf("Unmarshal: %v", err) 641 if err := Unmarshal(b, &s1); err != nil { 642 t.Fatalf("Unmarshal: %v", err) 657 if err := Unmarshal([]byte(`{"X":1}`), &i); err != nil { 658 t.Fatalf("Unmarshal: %v", err) 668 if err := Unmarshal([]byte(`{"X":1}`), &pxint); err != nil { 669 t.Fatalf("Unmarshal: %v", err [all...] |
stream.go | 34 // UseNumber causes the Decoder to unmarshal a number into an interface{} as a 41 // See the documentation for Unmarshal for details about 64 // Don't save err from unmarshal into dec.err: 67 err = dec.d.unmarshal(v)
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/ |
MOTree.java | 234 public static MOTree unmarshal(InputStream in) throws IOException { method in class:MOTree 259 OMAConstructed root = OMANode.unmarshal(in);
|
MOManager.java | 188 MOTree moTree = MOTree.unmarshal(in); 295 moTree = MOTree.unmarshal(in); 358 moTree = MOTree.unmarshal(in); 456 moTree = MOTree.unmarshal(in); 473 MOTree moTree = MOTree.unmarshal(in); [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/ |
MOTree.java | 238 public static MOTree unmarshal(InputStream in) throws IOException { method in class:MOTree 263 OMAConstructed root = OMANode.unmarshal(in);
|
PasspointManagementObjectManager.java | 186 moTree = MOTree.unmarshal(in); 291 moTree = MOTree.unmarshal(in); 334 moTree = MOTree.unmarshal(in); 424 moTree = MOTree.unmarshal(in); 443 MOTree moTree = MOTree.unmarshal(in); [all...] |
/external/boringssl/src/ssl/test/runner/ |
handshake_messages.go | 399 func (m *clientHelloMsg) unmarshal(data []byte) bool { func 868 func (m *serverHelloMsg) unmarshal(data []byte) bool { func 1042 func (m *certificateMsg) unmarshal(data []byte) bool { func 1100 func (m *serverKeyExchangeMsg) unmarshal(data []byte) bool { func 1143 func (m *certificateStatusMsg) unmarshal(data []byte) bool { func 1172 func (m *serverHelloDoneMsg) unmarshal(data []byte) bool { func 1197 func (m *clientKeyExchangeMsg) unmarshal(data []byte) bool { func 1228 func (m *finishedMsg) unmarshal(data []byte) bool { func 1270 func (m *nextProtoMsg) unmarshal(data []byte) bool { func 1364 func (m *certificateRequestMsg) unmarshal(data []byte) bool func 1482 func (m *certificateVerifyMsg) unmarshal(data []byte) bool { func 1542 func (m *newSessionTicketMsg) unmarshal(data []byte) bool { func 1632 func (m *helloVerifyRequestMsg) unmarshal(data []byte) bool { func 1673 func (m *encryptedExtensionsMsg) unmarshal(data []byte) bool { func 1696 func (*helloRequestMsg) unmarshal(data []byte) bool { func [all...] |
ticket.go | 102 func (s *sessionState) unmarshal(data []byte) bool { func 219 ok := state.unmarshal(plaintext)
|
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
MarshalQueryableEnum.java | 76 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableEnum.MarshalerEnum 141 * Register a non-sequential set of values to be used with the marshal/unmarshal functions.
|
MarshalQueryableParcelable.java | 102 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableParcelable.MarshalerParcelable 104 Log.v(TAG, "unmarshal, buffer remaining " + buffer.remaining()); 146 Log.v(TAG, "unmarshal, parcel length was " + actualLength); 147 Log.v(TAG, "unmarshal, value is " + value);
|
MarshalQueryablePrimitive.java | 29 * Marshal/unmarshal built-in primitive types to and from a {@link ByteBuffer}. 64 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryablePrimitive.MarshalerPrimitive 147 "Can't unmarshal native type " + mNativeType);
|
/prebuilts/go/darwin-x86/src/crypto/elliptic/ |
elliptic_test.go | 29 x1, y1 := Unmarshal(p224, b) 452 xx, yy := Unmarshal(p224, serialized) 454 t.Error("failed to unmarshal") 458 t.Error("unmarshal returned different values") 467 x, y := Unmarshal(p224, pointData)
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
ticket.go | 89 func (s *sessionState) unmarshal(data []byte) bool { func 202 ok := state.unmarshal(plaintext)
|
handshake_messages.go | 292 func (m *clientHelloMsg) unmarshal(data []byte) bool { func 671 func (m *serverHelloMsg) unmarshal(data []byte) bool { func 852 func (m *certificateMsg) unmarshal(data []byte) bool { func 920 func (m *serverKeyExchangeMsg) unmarshal(data []byte) bool { func 974 func (m *certificateStatusMsg) unmarshal(data []byte) bool { func 1008 func (m *serverHelloDoneMsg) unmarshal(data []byte) bool { func 1043 func (m *clientKeyExchangeMsg) unmarshal(data []byte) bool { func 1084 func (m *finishedMsg) unmarshal(data []byte) bool { func 1136 func (m *nextProtoMsg) unmarshal(data []byte) bool { func 1242 func (m *certificateRequestMsg) unmarshal(data []byte) bool func 1373 func (m *certificateVerifyMsg) unmarshal(data []byte) bool { func 1443 func (m *newSessionTicketMsg) unmarshal(data []byte) bool { func [all...] |
/prebuilts/go/linux-x86/src/crypto/elliptic/ |
elliptic_test.go | 29 x1, y1 := Unmarshal(p224, b) 452 xx, yy := Unmarshal(p224, serialized) 454 t.Error("failed to unmarshal") 458 t.Error("unmarshal returned different values") 467 x, y := Unmarshal(p224, pointData)
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
ticket.go | 89 func (s *sessionState) unmarshal(data []byte) bool { func 202 ok := state.unmarshal(plaintext)
|
handshake_messages.go | 292 func (m *clientHelloMsg) unmarshal(data []byte) bool { func 671 func (m *serverHelloMsg) unmarshal(data []byte) bool { func 852 func (m *certificateMsg) unmarshal(data []byte) bool { func 920 func (m *serverKeyExchangeMsg) unmarshal(data []byte) bool { func 974 func (m *certificateStatusMsg) unmarshal(data []byte) bool { func 1008 func (m *serverHelloDoneMsg) unmarshal(data []byte) bool { func 1043 func (m *clientKeyExchangeMsg) unmarshal(data []byte) bool { func 1084 func (m *finishedMsg) unmarshal(data []byte) bool { func 1136 func (m *nextProtoMsg) unmarshal(data []byte) bool { func 1242 func (m *certificateRequestMsg) unmarshal(data []byte) bool func 1373 func (m *certificateVerifyMsg) unmarshal(data []byte) bool { func 1443 func (m *newSessionTicketMsg) unmarshal(data []byte) bool { func [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
main.c | 449 output_omar_wires( (int) viddec_fw_api_array[groupid].unmarshal[funcid] ); 453 viddec_fw_api_array[groupid].unmarshal[funcid](0, command);
|
/prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.8/ |
xstream-1.4.8.jar | |