HomeSort by relevance Sort by last modified time
    Searched defs:Marshal (Results 1 - 15 of 15) sorted by null

  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
Marshal.java 30 public interface Marshal {
62 * Register this Marshal with Envelope
  /prebuilts/go/darwin-x86/src/syscall/
dir_plan9.go 60 // Marshal encodes a 9P stat message corresponding to d into b
63 func (d *Dir) Marshal(b []byte) (n int, err error) {
  /prebuilts/go/linux-x86/src/syscall/
dir_plan9.go 60 // Marshal encodes a 9P stat message corresponding to d into b
63 func (d *Dir) Marshal(b []byte) (n int, err error) {
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
elliptic.go 297 // Marshal converts a point into the form specified in section 4.3.6 of ANSI X9.62.
298 func Marshal(curve Curve, x, y *big.Int) []byte {
311 // Unmarshal converts a point, serialized by Marshal, into an x, y pair.
  /prebuilts/go/darwin-x86/src/encoding/asn1/
marshal.go 633 // Marshal returns the ASN.1 encoding of val.
642 func Marshal(val interface{}) ([]byte, error) {
  /prebuilts/go/linux-x86/src/crypto/elliptic/
elliptic.go 297 // Marshal converts a point into the form specified in section 4.3.6 of ANSI X9.62.
298 func Marshal(curve Curve, x, y *big.Int) []byte {
311 // Unmarshal converts a point, serialized by Marshal, into an x, y pair.
  /prebuilts/go/linux-x86/src/encoding/asn1/
marshal.go 633 // Marshal returns the ASN.1 encoding of val.
642 func Marshal(val interface{}) ([]byte, error) {
  /external/clang/test/SemaTemplate/
destructor-template.cpp 68 template <typename T> struct Marshal {
73 template <typename T> int Marshal<T>::gc() {
80 Marshal<int>::gc();
  /external/webrtc/talk/app/webrtc/
proxy.h 141 R Marshal(rtc::Thread* t) {
161 R Marshal(rtc::Thread* t) {
181 R Marshal(rtc::Thread* t) {
202 R Marshal(rtc::Thread* t) {
223 R Marshal(rtc::Thread* t) {
246 R Marshal(rtc::Thread* t) {
271 R Marshal(rtc::Thread* t) {
297 R Marshal(rtc::Thread* t) {
322 call.Marshal(owner_thread_); \
333 return call.Marshal(owner_thread_);
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal.go 19 // A generic XML header suitable for use with the output of Marshal.
25 // Marshal returns the XML encoding of v.
27 // Marshal handles an array or slice by marshalling each of the elements.
28 // Marshal handles a pointer by marshalling the value it points at or, if the
29 // pointer is nil, by writing nothing. Marshal handles an interface value by
31 // writing nothing. Marshal handles all other data by writing one or more XML
69 // Marshal will return an error if asked to marshal a channel, function, or map.
70 func Marshal(v interface{}) ([]byte, error) {
78 // Marshaler is the interface implemented by objects that can marshal
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
marshal.go 19 // A generic XML header suitable for use with the output of Marshal.
25 // Marshal returns the XML encoding of v.
27 // Marshal handles an array or slice by marshalling each of the elements.
28 // Marshal handles a pointer by marshalling the value it points at or, if the
29 // pointer is nil, by writing nothing. Marshal handles an interface value by
31 // writing nothing. Marshal handles all other data by writing one or more XML
69 // Marshal will return an error if asked to marshal a channel, function, or map.
70 func Marshal(v interface{}) ([]byte, error) {
78 // Marshaler is the interface implemented by objects that can marshal
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
encode.go 7 // in the documentation for the Marshal and Unmarshal functions.
28 // Marshal returns the JSON encoding of v.
30 // Marshal traverses the value v recursively.
32 // and is not a nil pointer, Marshal calls its MarshalJSON method
37 // Otherwise, Marshal uses the following type-dependent default encodings:
100 // deciding which field to marshal or unmarshal. If there are
126 // Attempting to encode such a value causes Marshal to return
129 // JSON cannot represent cyclic data structures and Marshal does not
130 // handle them. Passing cyclic structures to Marshal will result in
133 func Marshal(v interface{}) ([]byte, error)
258 func (e *encodeState) marshal(v interface{}) (err error) { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
encode.go 7 // in the documentation for the Marshal and Unmarshal functions.
28 // Marshal returns the JSON encoding of v.
30 // Marshal traverses the value v recursively.
32 // and is not a nil pointer, Marshal calls its MarshalJSON method
37 // Otherwise, Marshal uses the following type-dependent default encodings:
100 // deciding which field to marshal or unmarshal. If there are
126 // Attempting to encode such a value causes Marshal to return
129 // JSON cannot represent cyclic data structures and Marshal does not
130 // handle them. Passing cyclic structures to Marshal will result in
133 func Marshal(v interface{}) ([]byte, error)
258 func (e *encodeState) marshal(v interface{}) (err error) { func
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
callobj.h 144 virtual HRESULT WINAPI Marshal(CALLFRAME_MARSHALCONTEXT *pmshlContext,MSHLFLAGS mshlflags,PVOID pBuffer,ULONG cbBuffer,ULONG *pcbBufferUsed,RPCOLEDATAREP *pdataRep,ULONG *prpcFlags) = 0;
170 HRESULT (WINAPI *Marshal)(ICallFrame *This,CALLFRAME_MARSHALCONTEXT *pmshlContext,MSHLFLAGS mshlflags,PVOID pBuffer,ULONG cbBuffer,ULONG *pcbBufferUsed,RPCOLEDATAREP *pdataRep,ULONG *prpcFlags);
198 #define ICallFrame_Marshal(This,pmshlContext,mshlflags,pBuffer,cbBuffer,pcbBufferUsed,pdataRep,prpcFlags) (This)->lpVtbl->Marshal(This,pmshlContext,mshlflags,pBuffer,cbBuffer,pcbBufferUsed,pdataRep,prpcFlags)
oaidl.h     [all...]

Completed in 1181 milliseconds