Searched defs:writer (Results 1 - 25 of 497) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c41 char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid); member in struct:parse_data
1629 * integer. More complex types will need to use their own parser and writer
2319 value = field->writer(field, ssid);
2373 return field->writer(field, ssid);
2406 char *res = field->writer(field, ssid);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPSerializerRDF.java73 /** this writer is used to do the actual serialisation */
74 private OutputStreamWriter writer; field in class:XMPSerializerRDF
101 writer = new OutputStreamWriter(outputStream, options.getEncoding());
107 writer = new OutputStreamWriter(outputStream, options.getEncoding());
114 writer.flush();
121 writer.flush();
136 * @throws IOException forwards writer errors
238 * @throws IOException Forwarded writer exceptions.
307 * @throws IOException Forwarded writer exceptions
348 * @throws IOException Forwarded writer exception
[all...]
/external/webp/include/webp/
H A Dencode.h232 WEBP_EXTERN(void) WebPMemoryWriterInit(WebPMemoryWriter* writer); variable
235 // The following must be called to deallocate writer->mem memory. The 'writer'
237 WEBP_EXTERN(void) WebPMemoryWriterClear(WebPMemoryWriter* writer); variable
239 // The custom writer to be used with WebPMemoryWriter as custom_ptr. Upon
240 // completion, writer.mem and writer.size will hold the coded data.
242 // writer.mem must be freed by calling WebPMemoryWriterClear.
244 // writer.mem must be freed by calling 'free(writer
309 WebPWriterFunction writer; // can be NULL member in struct:WebPPicture
[all...]
/external/webp/src/enc/
H A Dpicture.c39 picture->writer = DummyWriter;
179 void WebPMemoryWriterInit(WebPMemoryWriter* writer) { argument
180 writer->mem = NULL;
181 writer->size = 0;
182 writer->max_size = 0;
217 void WebPMemoryWriterClear(WebPMemoryWriter* writer) { argument
218 if (writer != NULL) {
219 WebPSafeFree(writer->mem);
220 writer->mem = NULL;
221 writer
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DXMLWriter.java129 * <p>The writer contains extensive support for XML Namespaces, so that
131 * supply <var>xmlns</var> attributes. By default, the XML writer will
151 * XML writer allows two methods for selecting prefixes:</p>
158 * <p>Whenever the XML writer finds a new Namespace URI, it checks
198 * <p>By default, the XML writer will not declare a Namespace until
219 * problem, you can instruct the XML writer to predeclare Namespaces
263 * Create a new XML writer.
274 * Create a new XML writer.
276 * <p>Write to the writer provided.</p>
278 * @param writer Th
280 XMLWriter(Writer writer) argument
312 XMLWriter(XMLReader xmlreader, Writer writer) argument
327 init(Writer writer) argument
400 setOutput(Writer writer) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c7318 ** database writer and all readers are reading from the most recent database
7347 ** "writer" lock on the database file. If the writer lock cannot be obtained
7348 ** immediately, and a busy-handler is configured, it is invoked and the writer
7352 ** the writer lock is obtained or while waiting for database readers, the
10126 ** There can only be one writer. A RESERVED_LOCK is obtained by locking
10132 ** which means we can use reader/writer locks. When reader/writer locks
75732 FileWriter writer; local
75901 FileWriter writer; /* Object used to write to disk */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c7318 ** database writer and all readers are reading from the most recent database
7347 ** "writer" lock on the database file. If the writer lock cannot be obtained
7348 ** immediately, and a busy-handler is configured, it is invoked and the writer
7352 ** the writer lock is obtained or while waiting for database readers, the
10126 ** There can only be one writer. A RESERVED_LOCK is obtained by locking
10132 ** which means we can use reader/writer locks. When reader/writer locks
75752 FileWriter writer; local
75921 FileWriter writer; /* Object used to write to disk */ local
[all...]
/external/skia/samplecode/
H A DSampleApp.cpp2250 SkGPipeWriter writer; local
2263 canvas = writer.startRecording(pc, flags);
2266 //explicitly end recording to ensure writer is flushed before the memory
2268 writer.endRecording();
/external/skia/src/core/
H A DSkMatrixClipStateMgr.cpp359 void SkMatrixClipStateMgr::fillInSkips(SkWriter32* writer, int32_t restoreOffset) { argument
361 SkDEBUGCODE(int32_t peek = writer->readTAt<int32_t>((*fSkipOffsets)[i]);)
363 writer->overwriteTAt<int32_t>((*fSkipOffsets)[i], restoreOffset);
H A DSkPictureRecord.cpp231 * Read the op code from 'offset' in 'writer'.
234 static DrawType peek_op(SkWriter32* writer, size_t offset) { argument
235 return (DrawType)(writer->readTAt<uint32_t>(offset) >> 24);
240 * Read the op code from 'offset' in 'writer' and extract the size too.
242 static DrawType peek_op_and_size(SkWriter32* writer, size_t offset, uint32_t* size) { argument
243 uint32_t peek = writer->readTAt<uint32_t>(offset);
249 *size = writer->readTAt<uint32_t>(offset + kUInt32Size);
286 static bool match(SkWriter32* writer, uint32_t offset, argument
288 SkASSERT(offset < writer->bytesWritten());
293 for (numMatched = 0; numMatched < numCommands && curOffset < writer
346 remove_save_layer1(SkWriter32* writer, int32_t offset, SkPaintDictionary* paintDict) argument
374 convert_command_to_noop(SkWriter32* writer, uint32_t offset) argument
383 merge_savelayer_paint_into_drawbitmp(SkWriter32* writer, SkPaintDictionary* paintDict, const CommandInfo& saveLayerInfo, const CommandInfo& dbmInfo) argument
459 remove_save_layer2(SkWriter32* writer, int32_t offset, SkPaintDictionary* paintDict) argument
496 collapse_save_clip_restore(SkWriter32* writer, int32_t offset, SkPaintDictionary* paintDict) argument
[all...]
/external/skia/src/images/
H A DSkImageDecoder_libjpeg.cpp1171 const WriteScanline writer = ChooseWriter(bm); local
1172 if (NULL == writer) {
1205 writer(oneRowP, srcRow, width, colors);
/external/skia/src/pipe/
H A DSkGPipeWrite.cpp56 static size_t writeTypeface(SkWriter32* writer, SkTypeface* typeface) {
61 if (writer) {
62 writer->write32(SkToU32(size));
64 writer->writePad(data->data(), size);
200 * the writer is through sending commands. Should generally be true,
306 size_t fBlockSize; // amount allocated for writer
430 SkWriter32* writer, uint32_t flags,
434 , fWriter(*writer)
429 SkGPipeCanvas(SkGPipeController* controller, SkWriter32* writer, uint32_t flags, uint32_t width, uint32_t height) argument
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp86 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
118 writer.addAttribute(rec.fNames[nameIndex], rec.fValues[valueIndex]);
121 static void relem(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
139 writer.startElement(rec.fElems[elemIndex]);
149 rattr(verb, s, rec, writer);
153 relem(verb, s, rec, writer);
156 writer.endElement();
164 void BML_XMLParser::Read(SkStream& s, SkXMLWriter& writer) argument
167 writer.writeHeader();
168 relem(rbyte(s), s, rec, writer); local
[all...]
/external/skia/tests/
H A DAndroidPaintTest.cpp11 SkWriteBuffer writer; local
12 src.flatten(writer);
14 const size_t size = writer.bytesWritten();
16 writer.writeToMemory(bytes.get());
H A DPaintTest.cpp287 SkWriteBuffer writer; local
288 paint.flatten(writer);
290 const uint32_t* written = writer.getWriter32()->contiguousArray();
291 SkReadBuffer reader(written, writer.bytesWritten());
326 SkWriteBuffer writer;
327 SkPaint::FlatteningTraits::Flatten(writer, paint);
329 ASSERT(expectedBytesWritten == writer.bytesWritten());
331 const uint32_t* written = writer.getWriter32()->contiguousArray();
335 SkReadBuffer reader(written, writer.bytesWritten());
338 ASSERT(reader.offset() == writer
[all...]
H A DPathTest.cpp1917 SkWriter32 writer; local
1918 writer.writePath(p);
1919 size_t size = writer.bytesWritten();
1921 writer.flatten(storage.get());
1957 // kill our stack if writer goes too far.
H A DPipeTest.cpp27 SkGPipeWriter writer; local
28 SkCanvas* pipeCanvas = writer.startRecording(&pc, SkGPipeWriter::kCrossProcess_Flag);
29 writer.endRecording();
50 SkGPipeWriter writer; local
51 SkCanvas* pipeCanvas = writer.startRecording(&pipeController);
53 writer.endRecording();
H A DSerializationTest.cpp34 static void Write(SkWriteBuffer& writer, const T* flattenable) { argument
35 writer.writeFlattenable(flattenable);
43 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) { argument
44 writer.writeMatrix(*matrix);
52 static void Write(SkWriteBuffer& writer, const SkPath* path) { argument
53 writer.writePath(*path);
61 static void Write(SkWriteBuffer& writer, const SkRegion* region) { argument
62 writer.writeRegion(*region);
70 static void Write(SkWriteBuffer& writer, const SkString* string) { argument
71 writer
79 Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) argument
88 Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) argument
97 Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) argument
106 Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) argument
115 Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) argument
[all...]
H A DWriter32Test.cpp13 static void check_contents(skiatest::Reporter* reporter, const SkWriter32& writer, argument
16 REPORTER_ASSERT(reporter, writer.bytesWritten() == size);
17 writer.flatten(storage.get());
26 SkWriter32 writer(storage, sizeof(storage));
27 writer.reserve(40);
32 SkWriter32 writer(storage, sizeof(storage));
35 writer.writeString(NULL);
37 check_contents(reporter, writer, expected, sizeof(expected));
41 SkSWriter32<32> writer; local
44 REPORTER_ASSERT(reporter, 0 == writer
60 SkWriter32 writer; local
73 SkSWriter32<32> writer; local
100 test1(skiatest::Reporter* reporter, SkWriter32* writer) argument
114 test2(skiatest::Reporter* reporter, SkWriter32* writer) argument
145 testWritePad(skiatest::Reporter* reporter, SkWriter32* writer) argument
187 testOverwriteT(skiatest::Reporter* reporter, SkWriter32* writer) argument
225 SkWriter32 writer; local
240 SkWriter32 writer; local
252 SkSWriter32<8 * sizeof(intptr_t)> writer; local
265 SkSWriter32<1024 * sizeof(intptr_t)> writer; local
286 SkSWriter32<sizeof(array) + 4> writer; local
298 SkWriter32 writer; local
[all...]
/external/skia/tools/
H A DPictureBenchmark.h57 void setWriter(PictureResultsWriter* writer) { fWriter = writer; } argument
H A DPictureRenderer.cpp385 SkGPipeWriter writer; local
386 SkCanvas* pipeCanvas = writer.startRecording(&pipeController);
388 writer.endRecording();
/external/smack/asmack-master/lib/
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/smack/asmack-master/static-src/custom/de/measite/smack/
H A DAndroidDebugger.java38 private Writer writer; field in class:AndroidDebugger
43 public AndroidDebugger(Connection connection, Writer writer, Reader reader) { argument
45 this.writer = writer;
67 ObservableWriter debugWriter = new ObservableWriter(writer);
78 // Assign the reader/writer objects to use the debug versions. The packet reader
79 // and writer will use the debug versions when they are created.
81 writer = debugWriter;
146 ((ObservableWriter)writer).removeWriterListener(writerListener);
149 writer
[all...]
/external/smack/src/de/measite/smack/
H A DAndroidDebugger.java38 private Writer writer; field in class:AndroidDebugger
43 public AndroidDebugger(Connection connection, Writer writer, Reader reader) { argument
45 this.writer = writer;
67 ObservableWriter debugWriter = new ObservableWriter(writer);
78 // Assign the reader/writer objects to use the debug versions. The packet reader
79 // and writer will use the debug versions when they are created.
81 writer = debugWriter;
146 ((ObservableWriter)writer).removeWriterListener(writerListener);
149 writer
[all...]

Completed in 617 milliseconds

1234567891011>>