HomeSort by relevance Sort by last modified time
    Searched full:writer (Results 51 - 75 of 2093) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
adml_writer_unittest.py 29 self.writer = adml_writer.GetWriter(config)
30 self.writer.messages = {
40 self.writer.Init()
42 def _InitWriterForAddingPolicyGroups(self, writer):
43 '''Initialize the writer for adding policy groups. This method must be
45 attributes of the writer.
47 writer.BeginTemplate()
49 def _InitWriterForAddingPolicies(self, writer, policy):
50 '''Initialize the writer for adding policies. This method must be
52 attributes of the writer
    [all...]
  /external/marisa-trie/lib/marisa/
intvector.cc 99 Writer writer; local
100 writer.open(filename, trunc_flag, offset, whence);
101 write(writer);
105 Writer writer(file);
106 write(writer);
110 Writer writer(fd);
111 write(writer);
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
intvector.cc 99 Writer writer; local
100 writer.open(filename, trunc_flag, offset, whence);
101 write(writer);
105 Writer writer(file);
106 write(writer);
110 Writer writer(fd);
111 write(writer);
    [all...]
  /external/proguard/src/proguard/
ConfigurationWriter.java 46 private final PrintWriter writer; field in class:ConfigurationWriter
73 public ConfigurationWriter(PrintWriter writer) throws IOException
75 this.writer = writer;
84 writer.close();
99 writer.println();
105 writer.println();
152 writer.println();
163 if (writer.checkError())
183 writer.print(optionName)
634 ConfigurationWriter writer = new ConfigurationWriter(new File(args[0])); local
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 20 import java.io.Writer;
23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
30 private final Writer mWriter;
33 * Creates a new {@link Output} object that wraps the given {@link Writer}.
35 * The caller is responsible of opening and closing the {@link Writer}.
37 * @param writer The writer to write to. Could be a file, a string, etc.
39 public Output(Writer writer) {
40 mWriter = writer;
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
AnnotationEncodedValueAdaptor.java 39 public static void writeTo(IndentingWriter writer, AnnotationEncodedSubValue encodedAnnotation)
41 writer.write(".subannotation ");
42 ReferenceFormatter.writeTypeReference(writer, encodedAnnotation.annotationType);
43 writer.write('\n');
45 writeElementsTo(writer, encodedAnnotation);
46 writer.write(".end subannotation");
49 public static void writeElementsTo(IndentingWriter writer, AnnotationEncodedSubValue encodedAnnotation)
51 writer.indent(4);
53 writer.write(encodedAnnotation.names[i].getStringValue());
54 writer.write(" = ")
    [all...]
EncodedValueAdaptor.java 39 public static void writeTo(IndentingWriter writer, EncodedValue encodedValue) throws IOException {
42 AnnotationEncodedValueAdaptor.writeTo(writer, (AnnotationEncodedValue)encodedValue);
45 ArrayEncodedValueAdaptor.writeTo(writer, (ArrayEncodedValue)encodedValue);
48 BooleanRenderer.writeTo(writer, ((BooleanEncodedValue)encodedValue).value);
51 ByteRenderer.writeTo(writer, ((ByteEncodedValue)encodedValue).value);
54 CharRenderer.writeTo(writer, ((CharEncodedValue)encodedValue).value);
57 DoubleRenderer.writeTo(writer, ((DoubleEncodedValue)encodedValue).value);
60 EnumEncodedValueAdaptor.writeTo(writer, ((EnumEncodedValue)encodedValue).value);
63 ReferenceFormatter.writeFieldReference(writer, ((FieldEncodedValue)encodedValue).value);
66 FloatRenderer.writeTo(writer, ((FloatEncodedValue)encodedValue).value)
    [all...]
  /external/chromium_org/dbus/
property.cc 97 MessageWriter writer(&method_call);
98 writer.AppendString(interface());
99 writer.AppendString(property->name());
127 MessageWriter writer(&method_call);
128 writer.AppendString(interface());
152 MessageWriter writer(&method_call);
153 writer.AppendString(interface());
154 writer.AppendString(property->name());
155 property->AppendSetValueToWriter(&writer);
228 void Property<uint8>::AppendSetValueToWriter(MessageWriter* writer) {
    [all...]
values_util.h 25 // Appends a basic type value to |writer|.
26 CHROME_DBUS_EXPORT void AppendBasicTypeValueData(MessageWriter* writer,
29 // Appends a basic type value to |writer| as a variant.
31 MessageWriter* writer,
  /external/chromium_org/third_party/WebKit/Source/web/
DateTimeChooserImpl.cpp 102 void DateTimeChooserImpl::writeDocument(WebCore::DocumentWriter& writer)
120 addString("<!DOCTYPE html><head><meta charset='UTF-8'><style>\n", writer);
121 writer.addData(pickerCommonCss, sizeof(pickerCommonCss));
122 writer.addData(pickerButtonCss, sizeof(pickerButtonCss));
123 writer.addData(suggestionPickerCss, sizeof(suggestionPickerCss));
124 writer.addData(calendarPickerCss, sizeof(calendarPickerCss));
126 "window.dialogArguments = {\n", writer);
127 addProperty("anchorRectInScreen", anchorRectInScreen, writer);
128 addProperty("min", valueToDateTimeString(m_parameters.minimum, m_parameters.type), writer);
129 addProperty("max", valueToDateTimeString(m_parameters.maximum, m_parameters.type), writer);
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 42 import java.io.Writer;
132 Writer writer = new OutputStreamWriter(stream); local
138 writeHeader(writer, "Date", date);
140 writeEncodedHeader(writer, "Subject", message.mSubject);
142 writeHeader(writer, "Message-ID", message.mMessageId);
144 writeAddressHeader(writer, "From", message.mFrom);
145 writeAddressHeader(writer, "To", message.mTo);
146 writeAddressHeader(writer, "Cc", message.mCc);
150 writeAddressHeader(writer, "Bcc", message.mBcc)
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
xml_fix.py 16 def _Replacement_write_data(writer, data, is_attrib=False):
17 """Writes datachars to writer."""
25 writer.write(data)
28 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""):
32 writer.write(indent+"<" + self.tagName)
39 writer.write(" %s=\"" % a_name)
40 _Replacement_write_data(writer, attrs[a_name].value, is_attrib=True)
41 writer.write("\"")
43 writer.write(">%s" % newl)
45 node.writexml(writer, indent + addindent, addindent, newl
    [all...]
  /external/smack/src/org/jivesoftware/smack/debugger/
SmackDebugger.java 32 * arguments: Connection, Writer, Reader.
55 * Returns the special Writer that wraps the main Writer and logs data to the GUI.
57 * @return the special Writer that wraps the main Writer and logs data to the GUI.
59 public abstract Writer getWriter();
63 * has been secured so the connection is using a new reader and writer. The debugger
64 * needs to wrap the new reader and writer to keep being notified of the connection
72 * Returns a new special Writer that wraps the new connection Writer. The connectio
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
FieldDefinition.java 42 public static void writeTo(IndentingWriter writer, ClassDataItem.EncodedField encodedField,
58 writer.write("#the value of this static final field might be set in the static constructor\n");
61 writer.write(".field ");
62 writeAccessFlags(writer, encodedField);
63 writer.write(encodedField.field.getFieldName().getStringValue());
64 writer.write(':');
65 writer.write(encodedField.field.getFieldType().getTypeDescriptor());
67 writer.write(" = ");
68 EncodedValueAdaptor.writeTo(writer, initialValue);
71 writer.write('\n')
    [all...]
AnnotationFormatter.java 41 public static void writeTo(IndentingWriter writer, AnnotationSetItem annotationSet) throws IOException {
45 writer.write('\n');
49 writeTo(writer, annotationItem);
53 public static void writeTo(IndentingWriter writer, AnnotationItem annotationItem) throws IOException {
54 writer.write(".annotation ");
55 writer.write(annotationItem.getVisibility().visibility);
56 writer.write(' ');
57 ReferenceFormatter.writeTypeReference(writer, annotationItem.getEncodedAnnotation().annotationType);
58 writer.write('\n');
60 AnnotationEncodedValueAdaptor.writeElementsTo(writer, annotationItem.getEncodedAnnotation())
    [all...]
  /external/smack/src/org/jivesoftware/smack/
PacketWriter.java 26 import java.io.Writer;
44 private Writer writer; field in class:PacketWriter
50 * Creates a new packet writer with the specified connection.
61 * Initializes the writer in order to be used. It is called at the first connection and also
65 this.writer = connection.writer;
73 writerThread.setName("Smack Packet Writer (" + connection.connectionCounterValue + ")");
99 // Process packet writer listeners. Note that we're using the sending
106 * Starts the packet writer thread and opens a connection to the server. Th
    [all...]
  /build/libs/host/
list.java 10 OutputStreamWriter writer = null; local
12 writer = new OutputStreamWriter(stream, "utf-8");
19 writer.write(n);
20 writer.close();
  /external/llvm/test/Assembler/
2004-10-22-BCWriterUndefBug.ll 1 ;; The bytecode writer was trying to treat undef values as ConstantArray's when
  /external/chromium_org/sync/syncable/
syncable_base_write_transaction.cc 13 WriterTag writer,
15 : BaseTransaction(location, name, writer, directory) {
write_transaction_info.cc 15 WriterTag writer,
19 writer(writer),
23 : id(-1), writer(INVALID) {}
32 dict->SetString("writer", WriterTagToString(writer));
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
IntegerRenderer.java 36 public static void writeTo(IndentingWriter writer, int val) throws IOException {
38 writer.write("-0x");
39 writer.printUnsignedLongAsHex(-((long) val));
41 writer.write("0x");
42 writer.printUnsignedLongAsHex(val);
46 public static void writeUnsignedTo(IndentingWriter writer, int val) throws IOException {
47 writer.write("0x");
48 writer.printUnsignedLongAsHex(val & 0xFFFFFFFFL);
  /external/chromium_org/webkit/browser/fileapi/
local_file_stream_writer_unittest.cc 45 int WriteStringToWriter(LocalFileStreamWriter* writer,
53 int result = writer->Write(
98 scoped_ptr<LocalFileStreamWriter> writer(CreateWriter(path, 0));
99 EXPECT_EQ(net::OK, WriteStringToWriter(writer.get(), "foo"));
100 EXPECT_EQ(net::OK, WriteStringToWriter(writer.get(), "bar"));
101 writer.reset();
109 scoped_ptr<LocalFileStreamWriter> writer(CreateWriter(path, 2));
110 EXPECT_EQ(net::OK, WriteStringToWriter(writer.get(), "xxx"));
111 writer.reset();
119 scoped_ptr<LocalFileStreamWriter> writer(CreateWriter(path, 6))
    [all...]
  /external/skia/tests/
PipeTest.cpp 28 SkGPipeWriter writer; local
29 SkCanvas* pipeCanvas = writer.startRecording(&pc, SkGPipeWriter::kCrossProcess_Flag);
30 writer.endRecording();
52 SkGPipeWriter writer; local
53 SkCanvas* pipeCanvas = writer.startRecording(&pipeController);
55 writer.endRecording();
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
PackedSwitchMethodItem.java 79 public boolean writeTo(IndentingWriter writer) throws IOException {
80 writer.write(".packed-switch ");
81 IntegerRenderer.writeTo(writer, instruction.getFirstKey());
82 writer.indent(4);
83 writer.write('\n');
85 target.writeTargetTo(writer);
86 writer.write('\n');
88 writer.deindent(4);
89 writer.write(".end packed-switch");
94 public abstract void writeTargetTo(IndentingWriter writer) throws IOException
    [all...]
SparseSwitchMethodItem.java 80 public boolean writeTo(IndentingWriter writer) throws IOException {
81 writer.write(".sparse-switch\n");
82 writer.indent(4);
84 IntegerRenderer.writeTo(writer, target.Key);
85 writer.write(" -> ");
86 target.writeTargetTo(writer);
87 writer.write('\n');
89 writer.deindent(4);
90 writer.write(".end sparse-switch");
96 public abstract void writeTargetTo(IndentingWriter writer) throws IOException
    [all...]

Completed in 332 milliseconds

1 23 4 5 6 7 8 91011>>