HomeSort by relevance Sort by last modified time
    Searched refs:writer (Results 151 - 175 of 2637) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
BlankMethodItem.java 43 public boolean writeTo(IndentingWriter writer) {
PostInstructionRegisterInfoMethodItem.java 58 public boolean writeTo(IndentingWriter writer) throws IOException {
73 return writeRegisterInfo(writer, registers);
85 private boolean writeRegisterInfo(IndentingWriter writer, BitSet registers) throws IOException {
91 writer.write('#');
95 registerFormatter.writeTo(writer, registerNum);
96 writer.write('=');
97 registerType.writeTo(writer);
98 writer.write(';');
MethodDefinition.java 165 public static void writeEmptyMethodTo(IndentingWriter writer, Method method,
167 writer.write(".method ");
168 writeAccessFlags(writer, method.getAccessFlags());
169 writer.write(method.getName());
170 writer.write("(");
173 writer.write(parameter.getType());
175 writer.write(")");
176 writer.write(method.getReturnType());
177 writer.write('\n');
179 writer.indent(4)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
NullableIndexSection.java 32 package org.jf.dexlib2.writer;
NullableOffsetSection.java 32 package org.jf.dexlib2.writer;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderReference.java 32 package org.jf.dexlib2.writer.builder;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
DeferredOutputStream.java 1 package org.jf.dexlib2.writer.io;
  /frameworks/base/test-runner/src/android/test/
PerformanceCollectorTestCase.java 29 * <code>mPerfCollector.setPerformanceResultsWriter(writer);</code>
37 public void setPerformanceResultsWriter(PerformanceResultsWriter writer);
  /external/dbus/dbus/
dbus-marshal-recursive.h 62 * The type writer is an iterator for writing to a block of values.
139 void _dbus_type_writer_init (DBusTypeWriter *writer,
145 void _dbus_type_writer_init_types_delayed (DBusTypeWriter *writer,
149 void _dbus_type_writer_add_types (DBusTypeWriter *writer,
152 void _dbus_type_writer_remove_types (DBusTypeWriter *writer);
153 void _dbus_type_writer_init_values_only (DBusTypeWriter *writer,
159 dbus_bool_t _dbus_type_writer_write_basic (DBusTypeWriter *writer,
162 dbus_bool_t _dbus_type_writer_write_fixed_multi (DBusTypeWriter *writer,
166 dbus_bool_t _dbus_type_writer_recurse (DBusTypeWriter *writer,
171 dbus_bool_t _dbus_type_writer_unrecurse (DBusTypeWriter *writer,
    [all...]
  /external/skia/bench/
WriterBench.cpp 21 return "writer";
27 SkWriter32 writer; variable
30 writer.writeString(gStr, j);
  /frameworks/support/compat/honeycomb/android/support/v4/app/
ActivityCompatHoneycomb.java 33 PrintWriter writer, String[] args) {
34 activity.dump(prefix, fd, writer, args);
  /packages/services/Telephony/src/com/android/phone/
DumpsysHandler.java 16 public static void dump(Context context, FileDescriptor fd, PrintWriter writer,
19 VvmDumpHandler.dump(context, fd, writer, args);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ShapingTypeBuilder.java 57 LigatureModuleWriter writer = new LigatureModuleWriter(); local
60 writer.openFile(filename);
61 writer.writeHeader(null, includeFiles);
62 writer.writeTable(this);
63 writer.writeTrailer();
64 writer.closeFile();
DecompTable.java 143 public void writeLookupSubtable(OpenTypeTableWriter writer)
147 int multipleSubstitutionsBase = writer.getOutputIndex();
151 writer.writeData(1); // format = 1
153 coverageTableIndex = writer.getOutputIndex();
154 writer.writeData(0); // coverage table offset (fixed later)
156 writer.writeData(sequenceCount);
158 sequenceOffsetIndex = writer.getOutputIndex();
160 writer.writeData(0); // offset to sequence table (fixed later);
167 writer.fixOffset(sequenceOffsetIndex++, multipleSubstitutionsBase);
169 writer.writeData(decompCount); // glyphCoun
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_param_writer_unittest.cc 22 MessageWriter writer(message.get());
23 DBusParamWriter::Append(&writer);
29 MessageWriter writer(message.get());
30 DBusParamWriter::Append(&writer, int32_t{2});
32 DBusParamWriter::Append(&writer, std::string{"foo"});
34 DBusParamWriter::Append(&writer, ObjectPath{"/o"});
53 MessageWriter writer(message.get());
54 DBusParamWriter::Append(&writer, int32_t{9}, Any{7.5}, true);
73 MessageWriter writer(message.get());
74 DBusParamWriter::AppendDBusOutParams(&writer);
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
namespacetest.cpp 26 #include "rapidjson/writer.h"
48 typedef RAPIDJSON_NAMESPACE::Writer<StringBuffer> WriterType;
52 WriterType writer(buffer);
55 reader.Parse(s, writer);
59 EXPECT_TRUE(writer.IsComplete());
66 writer.Reset(buffer);
67 doc.Accept(writer);
69 EXPECT_TRUE(writer.IsComplete());
  /packages/services/Car/service/src/com/android/car/
CarService.java 60 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
61 writer.println("*dump car service*");
62 writer.println("*dump HAL*");
63 VehicleHal.getInstance().dump(writer);
64 writer.println("*dump services*");
65 ICarImpl.getInstance(this).dump(writer);
  /external/opencv3/samples/winrt/ImageManipulations/common/
suspensionmanager.cpp 42 void WriteObject(Windows::Storage::Streams::DataWriter^ writer, Platform::Object^ object);
312 void WriteString(DataWriter^ writer, String^ string)
314 writer->WriteByte(StringType);
315 writer->WriteUInt32(writer->MeasureString(string));
316 writer->WriteString(string);
319 void WriteProperty(DataWriter^ writer, IPropertyValue^ propertyValue)
324 writer->WriteByte(UInt8Type);
325 writer->WriteByte(propertyValue->GetUInt8());
328 writer->WriteByte(UInt16Type)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
CharArrayWriterTest.java 38 assertEquals("Created incorrect writer", 0, cw.size());
46 assertEquals("Created incorrect writer", 0, cw.size());
115 assertEquals("Writer failed to write correct chars", "World",
138 assertEquals("Writer failed to write char", 'T', cr.read());
149 assertEquals("Writer failed to write correct chars", "World",
169 * java.io.CharArrayWriter#writeTo(java.io.Writer)
175 assertEquals("Writer failed to write correct chars", "HelloWorld", sw
203 CharArrayWriter writer = new CharArrayWriter(10); local
204 writer.append(testChar);
205 writer.flush()
215 CharArrayWriter writer = new CharArrayWriter(10); local
227 CharArrayWriter writer = new CharArrayWriter(10); local
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
G_M_A_P_.py 38 def toXML(self, writer, ttFont):
39 writer.begintag("GMAPRecord")
40 writer.newline()
41 writer.simpletag("UV", value=self.UV)
42 writer.newline()
43 writer.simpletag("cid", value=self.cid)
44 writer.newline()
45 writer.simpletag("gid", value=self.gid)
46 writer.newline()
47 writer.simpletag("glyphletGid", value=self.gid
    [all...]
G_P_K_G_.py 79 def toXML(self, writer, ttFont):
80 writer.comment("Most of this table will be recalculated by the compiler")
81 writer.newline()
85 writer.simpletag(name, value=value)
86 writer.newline()
88 writer.begintag("GMAPs")
89 writer.newline()
91 writer.begintag("hexdata")
92 writer.newline()
93 writer.dumphex(gmapData
    [all...]
  /frameworks/base/core/java/android/app/
LoaderManager.java 185 * @param writer A PrintWriter to which the dump is to be set.
188 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
509 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
510 writer.print(prefix); writer.print("mId="); writer.print(mId);
511 writer.print(" mArgs="); writer.println(mArgs);
512 writer.print(prefix); writer.print("mCallbacks="); writer.println(mCallbacks)
    [all...]
VoiceInteractor.java 291 void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
292 writer.print(prefix); writer.print("mRequestInterface=");
293 writer.println(mRequestInterface.asBinder());
294 writer.print(prefix); writer.print("mActivity="); writer.println(mActivity);
295 writer.print(prefix); writer.print("mName="); writer.println(mName)
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
LoaderManager.java 166 * @param writer A PrintWriter to which the dump is to be set.
169 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
502 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
503 writer.print(prefix); writer.print("mId="); writer.print(mId);
504 writer.print(" mArgs="); writer.println(mArgs);
505 writer.print(prefix); writer.print("mCallbacks="); writer.println(mCallbacks)
    [all...]
  /frameworks/base/libs/androidfw/tests/
BackupData_test.cpp 76 BackupDataWriter* writer = new BackupDataWriter(fd); local
78 EXPECT_EQ(NO_ERROR, writer->WriteEntityHeader(mKey1, sizeof(DATA1)))
80 EXPECT_EQ(NO_ERROR, writer->WriteEntityData(DATA1, sizeof(DATA1)))
112 delete writer;
118 BackupDataWriter* writer = new BackupDataWriter(fd); local
119 writer->WriteEntityHeader(mKey1, sizeof(DATA1));
120 writer->WriteEntityData(DATA1, sizeof(DATA1));
121 writer->WriteEntityHeader(mKey2, sizeof(DATA2));
122 writer->WriteEntityData(DATA2, sizeof(DATA2));
160 delete writer;
166 BackupDataWriter* writer = new BackupDataWriter(fd); local
221 BackupDataWriter* writer = new BackupDataWriter(fd); local
260 BackupDataWriter* writer = new BackupDataWriter(fd); local
321 BackupDataWriter* writer = new BackupDataWriter(fd); local
389 BackupDataWriter* writer = new BackupDataWriter(fd); local
    [all...]

Completed in 1196 milliseconds

1 2 3 4 5 67 8 91011>>