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

<<21222324252627282930>>

  /external/javassist/src/main/javassist/bytecode/annotation/
StringMemberValue.java 93 public void write(AnnotationsWriter writer) throws IOException {
94 writer.constValueIndex(getValue());
  /external/junit/src/org/junit/internal/
TextListener.java 20 public TextListener(PrintStream writer) {
21 this.fWriter= writer;
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.h 52 /// createARMELFObjectWriter - Construct an ELF Mach-O object writer.
56 /// createARMMachObjectWriter - Construct an ARM Mach-O object writer.
  /external/marisa-trie/
Android.mk 34 lib/marisa/writer.cc
61 v0_1_5/lib/marisa_alpha/writer.cc
  /external/marisa-trie/lib/marisa/
intvector.h 32 void write(Writer &writer) const;
vector.h 31 void write(Writer &writer) const;
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
intvector.h 32 void write(Writer &writer) const;
vector.h 31 void write(Writer &writer) const;
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 174 icvWritePyrNode( void *elem, void *writer )
176 CV_WRITE_SEQ_ELEM( *(_CvListNode *) elem, *(CvSeqWriter *) writer );
206 CvSeqWriter writer; local
316 cvStartAppendToSeq( cmp_seq, &writer );
328 icvUpdatePyrLinks_8u_C1( l, pyram[l], size, pyram[l + 1], &writer,
454 CV_WRITE_SEQ_ELEM( cmp_node, writer );
476 CV_WRITE_SEQ_ELEM( cmp_node, writer );
524 CV_WRITE_SEQ_ELEM( cmp_node, writer );
529 cvEndWriteSeq( &writer );
620 CvSeqWriter writer; local
1036 CvSeqWriter & writer = *(CvSeqWriter *) _writer; local
1219 CvSeqWriter & writer = *(CvSeqWriter *) _writer; local
1412 CvSeqWriter writer; local
1590 CvSeqWriter writer; local
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
OffsetInstructionFormatMethodItem.java 52 protected void writeTargetLabel(IndentingWriter writer) throws IOException {
53 label.writeTo(writer);
  /external/smali/util/src/main/java/org/jf/util/
ClassFileNameHandler.java 116 FileWriter writer = new FileWriter(f); local
117 writer.write("test");
118 writer.flush();
119 writer.close();
305 FileWriter writer = new FileWriter(f); local
306 writer.write("test");
307 writer.flush();
308 writer.close();
  /frameworks/av/libvideoeditor/vss/src/
M4VSS3GPP_MediaAndCodecSubscription.c 89 /*| writer subscription |*/
92 /* Writer registration : at least one writer must be defined */
95 #error "no writer registered"
99 /* Include files for each writer to subscribe */
339 /*| writer subscription |*/
346 /* retrieves the 3GPP writer media type and pointer to functions*/
357 "M4VSS3GPP_subscribeMediaAndCodec: can't register 3GPP writer");
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 75 public interface Writer {
83 public interface Rewriter extends Reader, Writer {
188 public void combineActive(final Reader reader, final Writer writer, long currentTimeMillis)
208 writer.write(out);
373 private static void writeFile(File file, Writer writer) throws IOException {
377 writer.write(bos);
  /frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
SuiteAssignmentPrinter.java 47 public SuiteAssignmentPrinter(PrintStream writer) {
48 mWriter = writer;
  /libcore/luni/src/main/java/java/nio/channels/
Channels.java 26 import java.io.Writer;
159 * Returns a writer that encodes characters with the specified
169 * @return the writer.
171 public static Writer newWriter(WritableByteChannel channel,
181 * Returns a writer that encodes characters with the specified
183 * creates a writer with a buffer of default size.
189 * @return the writer.
193 public static Writer newWriter(WritableByteChannel channel,
  /libcore/luni/src/main/java/javax/sql/
CommonDataSource.java 42 * Retrieves a log writer which is a character output stream to which all
63 * Set a log writer which is a character output stream to which all logging
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x_unittest.cc 316 dbus::MessageWriter writer(response.get());
317 writer.AppendInt32(klauncher_ret_);
318 writer.AppendString(std::string()); // dbus_name
319 writer.AppendString(klauncher_error_);
320 writer.AppendInt32(1234); // pid
333 dbus::MessageWriter writer(response.get());
334 writer.AppendBool(kwallet_enabled_);
337 dbus::MessageWriter writer(response.get());
338 writer.AppendString("test_wallet"); // Should match |open| below.
349 dbus::MessageWriter writer(response.get())
    [all...]
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_FileWriter.c 19 * @brief File writer for Android
38 * @param pContext: (OUT) Context of the core file writer
191 * writer (selected by its 'context'). The position is related to
299 * @brief This function asks the core file writer to close the file
301 * @note The context of the core file writer is freed.
302 * @param pContext: (IN/OUT) Context of the core file writer
326 * @param pContext: (IN/OUT) Context of the core file writer
366 * @brief This function asks the core file writer to return the value
375 * @param pContext: (IN/OUT) Context of the core file writer
511 * @brief This function asks the core file writer to set the valu
    [all...]
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 668 SimpleDummyRecorder writer(mSMS);
669 writer.start();
675 ASSERT_EQ(NO_ERROR, writer.readFromSource());
679 writer.stop();
691 SimpleDummyRecorder writer(mSMS);
692 writer.start();
700 // Forcing the writer to lag behind a few frames
702 ASSERT_EQ(NO_ERROR, writer.readFromSource());
706 writer.stop();
710 // A dummy writer (MULTITHREADED) is used to simulate actual MPEG4Write
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 13 * bring some of the writer and linearizer code into conformance with this
51 writer = _get_StringIO()
55 writer = codecs.lookup(encoding)[3](writer)
58 self.writexml(writer, "", indent, newl, encoding)
60 self.writexml(writer, "", indent, newl)
61 return writer.getvalue()
293 def _write_data(writer, data):
294 "Writes datachars to writer."
298 writer.write(data
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 13 * bring some of the writer and linearizer code into conformance with this
51 writer = _get_StringIO()
55 writer = codecs.lookup(encoding)[3](writer)
58 self.writexml(writer, "", indent, newl, encoding)
60 self.writexml(writer, "", indent, newl)
61 return writer.getvalue()
293 def _write_data(writer, data):
294 "Writes datachars to writer."
298 writer.write(data
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 32 import java.io.Writer;
149 private Writer journalWriter;
346 Writer writer = new BufferedWriter( local
349 writer.write(MAGIC);
350 writer.write("\n");
351 writer.write(VERSION_1);
352 writer.write("\n");
353 writer.write(Integer.toString(appVersion));
354 writer.write("\n")
792 Writer writer = null; local
    [all...]
  /external/qemu/android/
async-socket.c 61 * Asynchronous Socket Reader / Writer
65 /* Next I/O in the reader, or writer list. */
117 * buffer, len - Reader / writer buffer address.
118 * io_cb - Callback for this reader / writer.
245 /* Creates new asynchronous socket writer.
247 * as - Asynchronous socket for the writer.
248 * buffer, len - Writer's buffer.
249 * io_cb - Writer's callback.
250 * writer_opaque - An opaque pointer associated with the writer.
439 /* Pulls first writer out of the list
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 32 import java.io.Writer;
83 // Writer. Each method should take at least one of these as a parameter,
150 * Unconditionally close a <code>Writer</code>.
152 * Equivalent to {@link Writer#close()}, except any exceptions will be ignored.
155 * @param output the Writer to close, may be null or already closed
157 public static void closeQuietly(Writer output) {
636 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code>
643 * @param output the <code>Writer</code> to write to
648 public static void write(byte[] data, Writer output) throws IOException {
655 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code>
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonScope.java 20 * Lexical scoping elements within a JSON reader or writer.

Completed in 380 milliseconds

<<21222324252627282930>>