Searched refs:writer (Results 251 - 275 of 645) sorted by relevance

<<11121314151617181920>>

/external/guava/guava-gwt/src/com/google/common/collect/
H A DNaturalOrdering_CustomFieldSerializer.java38 public static void serialize(SerializationStreamWriter writer, argument
H A DReverseNaturalOrdering_CustomFieldSerializer.java39 public static void serialize(SerializationStreamWriter writer, argument
H A DUsingToStringOrdering_CustomFieldSerializer.java38 public static void serialize(SerializationStreamWriter writer, argument
H A DImmutableSetMultimap_CustomFieldSerializer.java49 public static void serialize(SerializationStreamWriter writer, argument
51 writer.writeObject(instance.valueComparator());
52 Multimap_CustomFieldSerializerBase.serialize(writer, instance);
H A DImmutableSortedMap_CustomFieldSerializerBase.java50 static void serialize(SerializationStreamWriter writer, ImmutableSortedMap<?, ?> instance) argument
52 writer.writeObject(instance.comparator());
54 Map_CustomFieldSerializerBase.serialize(writer, instance);
H A DRegularImmutableSortedSet_CustomFieldSerializer.java60 public static void serialize(SerializationStreamWriter writer, argument
62 writer.writeObject(instance.comparator());
64 Collection_CustomFieldSerializerBase.serialize(writer, instance);
/external/proguard/src/proguard/io/
H A DManifestRewriter.java49 Writer writer)
53 new SplitLineWriter(writer));
164 public SplitLineWriter(Writer writer) argument
166 super(writer);
48 copyData(Reader reader, Writer writer) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DProtoSection.java32 package org.jf.dexlib2.writer;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderExceptionHandler.java32 package org.jf.dexlib2.writer.builder;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DExceptionExtensions.cs73 public static void PrintStackTrace(Exception e, System.IO.TextWriter writer) { argument
74 writer.WriteLine(e.ToString());
78 writer.WriteLine(" " + line);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DExceptionExtensions.cs81 public static void PrintStackTrace( this Exception e, System.IO.TextWriter writer )
83 writer.WriteLine( e.ToString() );
88 writer.WriteLine( " " + line );
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DL_T_S_H_.py39 def toXML(self, writer, ttFont):
42 writer.simpletag("yPel", name=name, value=self.yPels[name])
43 writer.newline()
H A DT_S_I__0.py47 def toXML(self, writer, ttFont):
48 writer.comment("This table will be calculated by the compiler")
49 writer.newline()
H A DT_S_I__5.py31 def toXML(self, writer, ttFont):
34 writer.simpletag("glyphgroup", name=glyphName, value=self.glyphGrouping[glyphName])
35 writer.newline()
H A D_c_v_t.py23 def toXML(self, writer, ttFont):
26 writer.simpletag("cv", value=value, index=i)
27 writer.newline()
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DL_T_S_H_.py39 def toXML(self, writer, ttFont):
42 writer.simpletag("yPel", name=name, value=self.yPels[name])
43 writer.newline()
H A DT_S_I__0.py47 def toXML(self, writer, ttFont):
48 writer.comment("This table will be calculated by the compiler")
49 writer.newline()
H A DT_S_I__5.py31 def toXML(self, writer, ttFont):
34 writer.simpletag("glyphgroup", name=glyphName, value=self.glyphGrouping[glyphName])
35 writer.newline()
H A D_c_v_t.py23 def toXML(self, writer, ttFont):
26 writer.simpletag("cv", value=value, index=i)
27 writer.newline()
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DUtil.java36 StringWriter writer = new StringWriter();
40 writer.write(buffer, 0, count);
42 return writer.toString();
/external/icu/icu4c/source/samples/udata/
H A DMakefile24 TARGET2=writer
28 OBJECTS2=writer.o
36 writer.o: $(ICU_PATH)/source/tools/toolutil/uoptions.h
45 # Only the writer needs these, actually.
/external/javassist/src/main/javassist/bytecode/
H A DAnnotationDefaultAttribute.java140 AnnotationsWriter writer = new AnnotationsWriter(output, constPool);
142 value.write(writer);
143 writer.close();
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationMemberValue.java84 public void write(AnnotationsWriter writer) throws IOException { argument
85 writer.annotationValue();
86 value.write(writer);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DNode.java310 public void write(XmlSerializer writer) throws IOException { argument
311 writeChildren(writer);
312 writer.flush();
317 public void writeChildren(XmlSerializer writer) throws IOException { argument
328 ((Element) child).write(writer);
332 writer.text((String) child);
336 writer.ignorableWhitespace((String) child);
340 writer.cdsect((String) child);
344 writer.comment((String) child);
348 writer
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DDM.java53 * @param writer
58 public void writeInstance(XmlSerializer writer, Object instance) throws IOException { argument
65 writer.attribute(attributeInfo.getNamespace(), attributeInfo.getName(),
69 writer.text(instance.toString());

Completed in 6520 milliseconds

<<11121314151617181920>>