HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 251 - 275 of 370) sorted by null

<<1112131415

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 15 // PYX Writer
209 public PYXWriter(Writer w) {
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncRS.java 19 import java.io.Writer;
FBOTestRS.java 19 import java.io.Writer;
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphRS.java 19 import java.io.Writer;
SimpleModelRS.java 19 import java.io.Writer;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 713 def output_comment(writer):
714 writer.newline("// Type originally was named '%s'.\n" % json_name)
721 def output_comment(writer):
727 class Writer:
760 return Writer(self.output, self.indent + additional_indent)
765 return Writer(new_output, self.indent + additional_indent)
808 def write_doc(writer):
810 writer.newline("/* ")
811 writer.append(json_type["description"])
812 writer.append(" */\n"
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 187 ASTWriter Writer;
189 ASTWriterData() : Stream(Buffer), Writer(Stream) { }
644 return &WriterData->Writer;
650 return &WriterData->Writer;
    [all...]
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 57 Pure Python PNG Reader/Writer
70 A good place to start is the :class:`Reader` and :class:`Writer` classes.
156 :meth:`Writer.write_packed` method. It isn't usually a convenient
191 __all__ = ['Image', 'Reader', 'Writer', 'write_chunks', 'from_array']
273 """Check a palette argument (to the :class:`Writer` class) for validity.
316 class Writer:
457 # ``Writer(x, y, **info)`` works, where `info` is a dictionary
    [all...]
  /external/llvm/
README.android 58 * Our bitcode reader can read both 2.7 and 3.0 versions. Writer is tracking upstream.
  /external/llvm/include/llvm/MC/
MCAssembler.h 845 MCObjectWriter *Writer;
959 /// Emit the section contents using the given object writer.
999 MCObjectWriter &getWriter() const { return *Writer; }
1004 /// \p Writer is used for custom object writer (as the MCJIT does),
1070 // factored so that the streamer has direct access to the .o writer, it can
    [all...]
  /external/llvm/lib/IR/
Function.cpp 319 sys::SmartScopedWriter<true> Writer(*GCLock);
328 sys::SmartScopedWriter<true> Writer(*GCLock);
  /frameworks/av/services/audioflinger/
AudioFlinger.h 235 sp<NBLog::Writer> newWriter_l(size_t size, const char *name);
236 void unregisterWriter(const sp<NBLog::Writer>& writer);
Threads.h 329 sp<NBLog::Writer> mNBLogWriter;
623 sp<NBLog::Writer> mFastMixerNBLogWriter;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 161 * Return null since there is no Writer for this class.
165 public java.io.Writer getWriter()
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 45 COFFDumper(const llvm::object::COFFObjectFile *Obj, StreamWriter& Writer)
46 : ObjDumper(Writer)
106 StreamWriter& Writer,
112 Result.reset(new COFFDumper(COFFObj, Writer));
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 19 import java.io.Writer;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 38 // (Guarantee that the writer is always buffered.)
39 private BufferedWriter writer; field in class:KXmlSerializer
70 writer.write(' ');
71 writer.write("xmlns");
73 writer.write(':');
74 writer.write(nspStack[i * 2]);
78 writer.write("=\"");
80 writer.write('"');
92 writer.write(close ? " />" : ">");
103 writer.write(c)
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
Monkey.java 49 import java.io.Writer;
441 Writer logOutput = null;
483 Writer output = new BufferedWriter(new FileWriter(new File(
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
Tool.java 494 Writer w = getOutputFile(rootGrammar, lexerGrammarFileName);
716 Writer fw = getOutputFile(g, name + ".dot");
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java 19 import java.io.Writer;
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java 19 import java.io.Writer;
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 51 import java.io.Writer;
180 public void write(Writer w) throws IOException {
254 public void write(Writer w) throws IOException {
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 297 : Context(Context_), Backend(Backend_), Emitter(Emitter_), Writer(&Writer_),
306 delete Writer;
307 Writer = &ObjectWriter;
534 /// \brief Write the contents of a fragment to the given object writer. Expects
752 // writer of the relocation, and give it an opportunity to adjust the
806 // Allow the object writer a chance to perform post-layout binding (for
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
VideoEditorStressTest.java 23 import java.io.Writer;
127 Writer output = new BufferedWriter(new FileWriter(outFile, true));
137 Writer output = new BufferedWriter(new FileWriter(outFile, true));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 101 import java.io.Writer;
668 Writer out = new StringWriter();
    [all...]

Completed in 914 milliseconds

<<1112131415