Searched defs:serialize (Results 51 - 75 of 97) sorted by relevance

1234

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactVector3Array.java72 serialize();
86 protected void serialize(int i, Vector3f store) { method in class:CompactVector3Array
H A DCompactArray.java110 serialize();
120 serialize(j, value);
130 serialize();
140 serialize();
145 * serialize this compact array
147 public final void serialize() { method in class:CompactArray
155 serialize(i, obj);
251 * serialize object
255 protected abstract void serialize(int compactIndex, T store); method in class:CompactArray
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DDecoderSpecificInfo.java48 public ByteBuffer serialize() { method in class:DecoderSpecificInfo
H A DSLConfigDescriptor.java80 public ByteBuffer serialize() { method in class:SLConfigDescriptor
H A DDecoderConfigDescriptor.java112 public ByteBuffer serialize() { method in class:DecoderConfigDescriptor
122 out.put(audioSpecificInfo.serialize().array());
H A DESDescriptor.java177 public ByteBuffer serialize() { method in class:ESDescriptor
195 ByteBuffer dec = decoderConfigDescriptor.serialize();
196 ByteBuffer sl = slConfigDescriptor.serialize();
/external/webkit/Source/WebCore/css/
H A DMediaQuery.cpp38 // http://dev.w3.org/csswg/cssom/#serialize-a-media-query
39 String MediaQuery::serialize() const function in class:WebCore::MediaQuery
64 result.append(m_expressions->at(0)->serialize());
67 result.append(m_expressions->at(i)->serialize());
74 return codePointCompare(a->serialize(), b->serialize()) < 0;
99 if (m_expressions->at(i)->serialize() == key)
102 key = m_expressions->at(i)->serialize();
116 // http://dev.w3.org/csswg/cssom/#serialize-a-list-of-media-queries
120 const_cast<MediaQuery*>(this)->m_serializationCache = serialize();
[all...]
H A DMediaQueryExp.cpp93 String MediaQueryExp::serialize() const function in class:WebCore::MediaQueryExp
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DPicturePileLayerContent.cpp30 void PicturePileLayerContent::serialize(SkWStream* stream) function in class:WebCore::PicturePileLayerContent
38 picture.serialize(stream);
H A DPictureLayerContent.cpp94 void PictureLayerContent::serialize(SkWStream* stream) function in class:WebCore::PictureLayerContent
98 m_picture->serialize(stream);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPSerializerHelper.java29 * Static method to serialize the metadata object. For each serialisation, a new XMPSerializer
34 * @param out the output stream to serialize to
38 public static void serialize(XMPMetaImpl xmp, OutputStream out, method in class:XMPSerializerHelper
49 new XMPSerializerRDF().serialize(xmp, out, options);
72 serialize(xmp, out, options);
99 serialize(xmp, out, options);
/external/apache-xml/src/main/java/org/apache/xalan/serialize/
H A DSerializerUtils.java21 package org.apache.xalan.serialize;
34 * Class that contains only static methods that are used to "serialize",
/external/webkit/Source/WebCore/loader/
H A DCachedMetadata.h55 const Vector<char>& serialize() const function in class:WebCore::CachedMetadata
/external/webkit/Source/WebKit/win/
H A DWebSerializedJSValue.cpp85 HRESULT WebSerializedJSValue::serialize(JSContextRef sourceContext, JSValueRef value, JSValueRef* exception) function in class:WebSerializedJSValue
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializationHandler.java72 public void serialize(Node node) throws IOException; method in interface:SerializationHandler
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMSerializer.java85 * @param doc the document to serialize.
86 * @param file the file to serialize to.
89 public void serialize(Document doc, File file) throws IOException { method in class:DOMSerializer
90 serialize(doc, new FileOutputStream(file));
96 * @param doc the document to serialize.
97 * @param out the stream to serialize to.
100 public void serialize(Document doc, OutputStream out) throws IOException { method in class:DOMSerializer
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptValue.cpp41 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState) function in class:WebCore::ScriptValue
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPMetaFactory.java172 public static void serialize(XMPMeta xmp, OutputStream out) throws XMPException method in class:XMPMetaFactory
174 serialize(xmp, out, null);
186 public static void serialize(XMPMeta xmp, OutputStream out, SerializeOptions options) method in class:XMPMetaFactory
190 XMPSerializerHelper.serialize((XMPMetaImpl) xmp, out, options);
/external/skia/src/core/
H A DSkPicture.cpp212 void SkPicture::serialize(SkWStream* stream) const { function in class:SkPicture
224 playback->serialize(stream);
H A DSkTypeface.cpp87 void SkTypeface::serialize(SkWStream* stream) const { function in class:SkTypeface
/external/webkit/Source/WebCore/bindings/js/
H A DScriptValue.cpp103 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState, SerializationErrorMode throwExceptions) function in class:WebCore::ScriptValue
/external/webkit/Source/WebCore/html/
H A DBaseDateAndTimeInputType.cpp60 element()->setValue(serialize(value));
70 element()->setValue(serialize(newValue));
160 String BaseDateAndTimeInputType::serialize(double value) const function in class:WebCore::BaseDateAndTimeInputType
H A DNumberInputType.cpp81 element()->setValue(serialize(newValue));
197 String NumberInputType::serialize(double value) const function in class:WebCore::NumberInputType
H A DRangeInputType.cpp85 element()->setValue(serialize(newValue));
238 String RangeInputType::serialize(double value) const function in class:WebCore::RangeInputType
/external/webkit/Source/WebKit/chromium/src/
H A DWebPageSerializer.cpp182 bool WebPageSerializer::serialize(WebFrame* frame, function in class:WebKit::WebPageSerializer
191 return serializerImpl.serialize();

Completed in 554 milliseconds

1234