/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
|
MarshalQueryableMeteringRectangle.java | 57 public MeteringRectangle unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableMeteringRectangle.MarshalerMeteringRectangle
|
MarshalQueryableReprocessFormatsMap.java | 72 public ReprocessFormatsMap unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableReprocessFormatsMap.MarshalerReprocessFormatsMap
|
MarshalQueryableString.java | 61 public String unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableString.MarshalerString 77 "unmarshal - scanned " + stringLength + " characters; found null? "
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/ |
OMANode.java | 119 public static OMAConstructed unmarshal(InputStream in) throws IOException { method in class:OMANode 124 unmarshal(in, (OMAConstructed) node); method 128 private static void unmarshal(InputStream in, OMAConstructed parent) throws IOException { method in class:OMANode 134 unmarshal(in, (OMAConstructed) node); method
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
handshake_messages_test.go | 31 unmarshal([]byte) bool 55 if !m2.unmarshal(marshaled) { 56 t.Errorf("#%d failed to unmarshal %#v %x", i, m1, marshaled) 73 if m2.unmarshal(marshaled[0:j]) { 92 m.unmarshal(bytes)
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
handshake_messages_test.go | 31 unmarshal([]byte) bool 55 if !m2.unmarshal(marshaled) { 56 t.Errorf("#%d failed to unmarshal %#v %x", i, m1, marshaled) 73 if m2.unmarshal(marshaled[0:j]) { 92 m.unmarshal(bytes)
|
/prebuilts/go/darwin-x86/src/encoding/ |
encoding.go | 23 // unmarshal a binary representation of itself. 41 // unmarshal a textual representation of itself.
|
/prebuilts/go/linux-x86/src/encoding/ |
encoding.go | 23 // unmarshal a binary representation of itself. 41 // unmarshal a textual representation of itself.
|
/prebuilts/go/darwin-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...] |