HomeSort by relevance Sort by last modified time
    Searched refs:unmarshal (Results 1 - 25 of 226) sorted by null

1 2 3 4 5 6 7 8 910

  /external/golang-protobuf/proto/
map_test.go 30 if err := proto.Unmarshal(in, &out); err != nil {
31 b.Errorf("Can't unmarshal ppb.IntMaps: %v", err)
42 if err := proto.Unmarshal(in, &out); err != nil {
43 b.Errorf("Can't unmarshal ppb.IntMaps: %v", err)
  /frameworks/base/core/java/android/hardware/camera2/marshal/
Marshaler.java 103 * Unmarshal a new object instance from the byte buffer into its managed type.
111 public abstract T unmarshal(ByteBuffer buffer); method in class:Marshaler
  /prebuilts/tools/common/m2/repository/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/
jaxb-api-2.2.12-b140109.1041.jar 
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 69 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableArray.MarshalerArray
93 Object elem = mComponentMarshaler.unmarshal(buffer);
102 Object elem = mComponentMarshaler.unmarshal(buffer);
MarshalQueryablePair.java 103 public Pair<T1, T2> unmarshal(ByteBuffer buffer) { method in class:MarshalQueryablePair.MarshalerPair
104 T1 first = mNestedTypeMarshalerFirst.unmarshal(buffer);
105 T2 second = mNestedTypeMarshalerSecond.unmarshal(buffer);
MarshalQueryableRange.java 82 public Range<T> unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRange.MarshalerRange
83 T lower = mNestedTypeMarshaler.unmarshal(buffer);
84 T upper = mNestedTypeMarshaler.unmarshal(buffer);
MarshalQueryableBlackLevelPattern.java 50 public BlackLevelPattern unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBlackLevelPattern.MarshalerBlackLevelPattern
MarshalQueryableBoolean.java 44 public Boolean unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBoolean.MarshalerBoolean
MarshalQueryableColorSpaceTransform.java 55 public ColorSpaceTransform unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableColorSpaceTransform.MarshalerColorSpaceTransform
MarshalQueryableNativeByteToInteger.java 46 public Integer unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableNativeByteToInteger.MarshalerNativeByteToInteger
MarshalQueryableRect.java 49 public Rect unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRect.MarshalerRect
MarshalQueryableRggbChannelVector.java 48 public RggbChannelVector unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRggbChannelVector.MarshalerRggbChannelVector
MarshalQueryableSize.java 46 public Size unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableSize.MarshalerSize
MarshalQueryableSizeF.java 48 public SizeF unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableSizeF.MarshalerSizeF
MarshalQueryableStreamConfiguration.java 53 public StreamConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableStreamConfiguration.MarshalerStreamConfiguration
MarshalQueryableStreamConfigurationDuration.java 62 public StreamConfigurationDuration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableStreamConfigurationDuration.MarshalerStreamConfigurationDuration
MarshalQueryableHighSpeedVideoConfiguration.java 56 public HighSpeedVideoConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableHighSpeedVideoConfiguration.MarshalerHighSpeedVideoConfiguration
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_messages_test.go 33 unmarshal([]byte) bool
57 if !m2.unmarshal(marshaled) {
58 t.Errorf("#%d failed to unmarshal %#v %x", i, m1, marshaled)
75 if m2.unmarshal(marshaled[0:j]) {
94 m.unmarshal(bytes)
287 if !serverHelloCopy.unmarshal(serverHelloBytes) {
288 t.Fatal("Failed to unmarshal initial message")
312 if serverHelloCopy.unmarshal(serverHelloEmptySCT) {
330 if serverHelloCopy.unmarshal(serverHelloBytes) {
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_messages_test.go 33 unmarshal([]byte) bool
57 if !m2.unmarshal(marshaled) {
58 t.Errorf("#%d failed to unmarshal %#v %x", i, m1, marshaled)
75 if m2.unmarshal(marshaled[0:j]) {
94 m.unmarshal(bytes)
287 if !serverHelloCopy.unmarshal(serverHelloBytes) {
288 t.Fatal("Failed to unmarshal initial message")
312 if serverHelloCopy.unmarshal(serverHelloEmptySCT) {
330 if serverHelloCopy.unmarshal(serverHelloBytes) {
  /prebuilts/go/darwin-x86/src/encoding/json/
decode.go 24 // Unmarshal parses the JSON-encoded data and stores the result
26 // Unmarshal returns an InvalidUnmarshalError.
28 // Unmarshal uses the inverse of the encodings that
32 // To unmarshal JSON into a pointer, Unmarshal first handles the case of
33 // the JSON being the JSON literal null. In that case, Unmarshal sets
34 // the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into
35 // the value pointed at by the pointer. If the pointer is nil, Unmarshal
38 // To unmarshal JSON into a value implementing the Unmarshaler interface,
39 // Unmarshal calls that value's UnmarshalJSON method, includin
171 func (d *decodeState) unmarshal(v interface{}) (err error) { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
decode.go 24 // Unmarshal parses the JSON-encoded data and stores the result
26 // Unmarshal returns an InvalidUnmarshalError.
28 // Unmarshal uses the inverse of the encodings that
32 // To unmarshal JSON into a pointer, Unmarshal first handles the case of
33 // the JSON being the JSON literal null. In that case, Unmarshal sets
34 // the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into
35 // the value pointed at by the pointer. If the pointer is nil, Unmarshal
38 // To unmarshal JSON into a value implementing the Unmarshaler interface,
39 // Unmarshal calls that value's UnmarshalJSON method, includin
171 func (d *decodeState) unmarshal(v interface{}) (err error) { func
    [all...]
  /prebuilts/go/darwin-x86/src/hash/
example_test.go 40 log.Fatal("unable to unmarshal hash:", err)
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
proto_test.go 38 if err := unmarshal(tc.encoded, dest); err != nil {
  /prebuilts/go/linux-x86/src/hash/
example_test.go 40 log.Fatal("unable to unmarshal hash:", err)
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
proto_test.go 38 if err := unmarshal(tc.encoded, dest); err != nil {

Completed in 408 milliseconds

1 2 3 4 5 6 7 8 910