HomeSort by relevance Sort by last modified time
    Searched full:marshal (Results 26 - 50 of 970) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Include/
marshal.h 2 /* Interface for marshal.c */
  /external/python/cpython3/Include/
marshal.h 2 /* Interface for marshal.c */
  /prebuilts/gdb/darwin-x86/include/python2.7/
marshal.h 2 /* Interface for marshal.c */
  /prebuilts/gdb/linux-x86/include/python2.7/
marshal.h 2 /* Interface for marshal.c */
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
marshal.h 2 /* Interface for marshal.c */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
marshal.h 2 /* Interface for marshal.c */
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryablePair.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
20 import android.hardware.camera2.marshal.MarshalRegistry;
31 * Marshal {@link Pair} to/from any native type
39 /** Marshal the {@code T1} inside of {@code Pair<T1, T2>} */
41 /** Marshal the {@code T1} inside of {@code Pair<T1, T2>} */
91 public void marshal(Pair<T1, T2> value, ByteBuffer buffer) { method in class:MarshalQueryablePair.MarshalerPair
98 mNestedTypeMarshalerFirst.marshal(value.first, buffer);
99 mNestedTypeMarshalerSecond.marshal(value.second, buffer)
    [all...]
MarshalQueryableRange.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
20 import android.hardware.camera2.marshal.MarshalRegistry;
31 * Marshal {@link Range} to/from any native type
40 /** Marshal the {@code T} inside of {@code Range<T>} */
76 public void marshal(Range<T> value, ByteBuffer buffer) { method in class:MarshalQueryableRange.MarshalerRange
77 mNestedTypeMarshaler.marshal(value.getLower(), buffer);
78 mNestedTypeMarshaler.marshal(value.getUpper(), buffer);
MarshalQueryableBlackLevelPattern.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.MarshalQueryable;
19 import android.hardware.camera2.marshal.Marshaler;
26 import static android.hardware.camera2.marshal.MarshalHelpers.SIZEOF_INT32;
29 * Marshal {@link BlackLevelPattern} to/from {@link #TYPE_INT32} {@code x 4}
41 public void marshal(BlackLevelPattern value, ByteBuffer buffer) { method in class:MarshalQueryableBlackLevelPattern.MarshalerBlackLevelPattern
MarshalQueryableColorSpaceTransform.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
26 import static android.hardware.camera2.marshal.MarshalHelpers.*;
29 * Marshal {@link ColorSpaceTransform} to/from {@link #TYPE_RATIONAL}
45 public void marshal(ColorSpaceTransform value, ByteBuffer buffer) { method in class:MarshalQueryableColorSpaceTransform.MarshalerColorSpaceTransform
MarshalQueryableMeteringRectangle.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
26 import static android.hardware.camera2.marshal.MarshalHelpers.*;
29 * Marshal {@link MeteringRectangle} to/from {@link #TYPE_INT32}
42 public void marshal(MeteringRectangle value, ByteBuffer buffer) { method in class:MarshalQueryableMeteringRectangle.MarshalerMeteringRectangle
MarshalQueryableRect.java 16 package android.hardware.camera2.marshal.impl;
19 import android.hardware.camera2.marshal.Marshaler;
20 import android.hardware.camera2.marshal.MarshalQueryable;
26 import static android.hardware.camera2.marshal.MarshalHelpers.*;
29 * Marshal {@link Rect} to/from {@link #TYPE_INT32}
41 public void marshal(Rect value, ByteBuffer buffer) { method in class:MarshalQueryableRect.MarshalerRect
MarshalQueryableRggbChannelVector.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
26 import static android.hardware.camera2.marshal.MarshalHelpers.*;
29 * Marshal {@link RggbChannelVector} to/from {@link #TYPE_FLOAT} {@code x 4}
41 public void marshal(RggbChannelVector value, ByteBuffer buffer) { method in class:MarshalQueryableRggbChannelVector.MarshalerRggbChannelVector
MarshalQueryableHighSpeedVideoConfiguration.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
24 import static android.hardware.camera2.marshal.MarshalHelpers.*;
47 public void marshal(HighSpeedVideoConfiguration value, ByteBuffer buffer) { method in class:MarshalQueryableHighSpeedVideoConfiguration.MarshalerHighSpeedVideoConfiguration
MarshalQueryableStreamConfiguration.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
24 import static android.hardware.camera2.marshal.MarshalHelpers.*;
45 public void marshal(StreamConfiguration value, ByteBuffer buffer) { method in class:MarshalQueryableStreamConfiguration.MarshalerStreamConfiguration
MarshalQueryableStreamConfigurationDuration.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
24 import static android.hardware.camera2.marshal.MarshalHelpers.*;
54 public void marshal(StreamConfigurationDuration value, ByteBuffer buffer) { method in class:MarshalQueryableStreamConfigurationDuration.MarshalerStreamConfigurationDuration
MarshalQueryableEnum.java 16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
27 import static android.hardware.camera2.marshal.MarshalHelpers.*;
30 * Marshal any simple enum (0-arg constructors only) into/from either
59 public void marshal(T value, ByteBuffer buffer) { method in class:MarshalQueryableEnum.MarshalerEnum
124 Log.e(TAG, "Can't marshal class " + typeClass + "; no default constructor");
127 Log.e(TAG, "Can't marshal class " + typeClass + "; not accessible");
141 * Register a non-sequential set of values to be used with the marshal/unmarshal functions.
143 * <p>This enables get/set to correctly marshal the enum into a value that is C-compatible.</p
    [all...]
  /external/python/cpython2/Doc/library/
persistence.rst 9 persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can turn
24 marshal.rst
  /external/flatbuffers/go/
grpc.go 8 func (FlatbuffersCodec) Marshal(v interface{}) ([]byte, error) {
  /external/python/cpython2/Doc/c-api/
utilities.rst 18 marshal.rst
  /external/python/cpython3/Doc/c-api/
utilities.rst 17 marshal.rst
  /prebuilts/go/darwin-x86/src/encoding/json/
encode_test.go 119 result, err := Marshal(s)
128 result, err = Marshal(r)
145 if _, err := Marshal(v); err != nil {
214 b, err := Marshal(&s)
216 t.Fatalf("Marshal: %v", err)
240 b, err := Marshal(c)
242 t.Fatalf("Marshal(c): %v", err)
245 t.Errorf("Marshal(c) = %#q, want %#q", got, want)
250 b, err = Marshal(ct)
252 t.Fatalf("Marshal(ct): %v", err
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
encode_test.go 119 result, err := Marshal(s)
128 result, err = Marshal(r)
145 if _, err := Marshal(v); err != nil {
214 b, err := Marshal(&s)
216 t.Fatalf("Marshal: %v", err)
240 b, err := Marshal(c)
242 t.Fatalf("Marshal(c): %v", err)
245 t.Errorf("Marshal(c) = %#q, want %#q", got, want)
250 b, err = Marshal(ct)
252 t.Fatalf("Marshal(ct): %v", err
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_imp.py 63 with test_support.CleanImport('marshal'):
64 import marshal
65 imp.reload(marshal)
  /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();

Completed in 814 milliseconds

12 3 4 5 6 7 8 91011>>