OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Marshaler
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/hardware/camera2/marshal/
Marshaler.java
34
public abstract class
Marshaler
<T> {
40
* Instantiate a
marshaler
between a single managed/native type combination.
55
protected
Marshaler
(
130
* <p>In particular, the array
marshaler
takes advantage of this (when size is not dynamic)
138
* The type reference for {@code T} for the managed type side of this
marshaler
.
144
/** The native type corresponding to this
marshaler
for the native side of this
marshaler
.*/
/prebuilts/go/darwin-x86/src/encoding/xml/
marshal.go
78
//
Marshaler
is the interface implemented by objects that can marshal
94
type
Marshaler
interface {
186
// such as Encode or EncodeElement (or a custom
Marshaler
's MarshalXML invoked
390
marshalerType = reflect.TypeOf((*
Marshaler
)(nil)).Elem()
422
// Check for
marshaler
.
424
return p.marshalInterface(val.Interface().(
Marshaler
), defaultStart(typ, finfo, startTemplate))
429
return p.marshalInterface(pv.Interface().(
Marshaler
), defaultStart(pv.Type(), finfo, startTemplate))
433
// Check for text
marshaler
.
614
// since it has the
Marshaler
methods.
620
// marshalInterface marshals a
Marshaler
interface value
[
all
...]
/prebuilts/go/linux-x86/src/encoding/xml/
marshal.go
78
//
Marshaler
is the interface implemented by objects that can marshal
94
type
Marshaler
interface {
186
// such as Encode or EncodeElement (or a custom
Marshaler
's MarshalXML invoked
390
marshalerType = reflect.TypeOf((*
Marshaler
)(nil)).Elem()
422
// Check for
marshaler
.
424
return p.marshalInterface(val.Interface().(
Marshaler
), defaultStart(typ, finfo, startTemplate))
429
return p.marshalInterface(pv.Interface().(
Marshaler
), defaultStart(pv.Type(), finfo, startTemplate))
433
// Check for text
marshaler
.
614
// since it has the
Marshaler
methods.
620
// marshalInterface marshals a
Marshaler
interface value
[
all
...]
/prebuilts/go/darwin-x86/src/encoding/json/
encode.go
31
// If an encountered value implements the
Marshaler
interface
191
//
Marshaler
is the interface implemented by objects that
193
type
Marshaler
interface {
349
marshalerType = reflect.TypeOf(new(
Marshaler
)).Elem()
413
m := v.Interface().(
Marshaler
)
430
m := va.Interface().(
Marshaler
)
/prebuilts/go/linux-x86/src/encoding/json/
encode.go
31
// If an encountered value implements the
Marshaler
interface
191
//
Marshaler
is the interface implemented by objects that
193
type
Marshaler
interface {
349
marshalerType = reflect.TypeOf(new(
Marshaler
)).Elem()
413
m := v.Interface().(
Marshaler
)
430
m := va.Interface().(
Marshaler
)
Completed in 185 milliseconds