/frameworks/base/opengl/java/android/opengl/ |
GLDebugHelper.java | 19 import java.io.Writer; 79 public static GL wrap(GL gl, int configFlags, Writer log) { 100 public static EGL wrap(EGL egl, int configFlags, Writer log) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
WriterTesterTest.java | 38 import java.io.Writer; 45 * Tests basic {@link Writer} behaviors for the luni implementations of the type. 80 public Writer create() throws Exception { 93 private CharArrayWriter writer; field in class:WriterTesterTest.CharArrayWriterCharSinkTester 96 public Writer create() throws Exception { 97 writer = new CharArrayWriter(); 98 return writer; 103 return writer.toCharArray(); 112 public Writer create() throws IOException { 141 private StringWriter writer; field in class:WriterTesterTest.StringWriterCharSinkTester [all...] |
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
WebAssemblyMCCodeEmitter.cpp | 62 support::endian::Writer<support::little>(OS).write<uint64_t>(MI.getOpcode()); 65 support::endian::Writer<support::little>(OS).write<uint64_t>( 70 support::endian::Writer<support::little>(OS).write<uint64_t>(MO.getReg()); 72 support::endian::Writer<support::little>(OS).write<uint64_t>(MO.getImm()); 74 support::endian::Writer<support::little>(OS).write<double>(MO.getFPImm()); 76 support::endian::Writer<support::little>(OS).write<uint64_t>(0);
|
/external/llvm/lib/DebugInfo/CodeView/ |
TypeRecordBuilder.cpp | 16 : Stream(Buffer), Writer(Stream) { 25 Writer.write(Value); 29 Writer.write(Value); 33 Writer.write(Value); 37 Writer.write(Value); 41 Writer.write(Value); 45 Writer.write(Value); 49 Writer.write(Value);
|
/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
LoggingProfile.java | 21 * writer and uses the standard message formatting. 24 private final Writer mWriter; 27 public LoggingProfile(Writer writer, String name) { 30 mWriter = writer;
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
SymbolRecordMapping.h | 24 explicit SymbolRecordMapping(BinaryStreamWriter &Writer) : IO(Writer) {}
|
/prebuilts/go/darwin-x86/src/mime/multipart/ |
writer.go | 18 // A Writer generates multipart messages. 19 type Writer struct { 20 w io.Writer 25 // NewWriter returns a new multipart Writer with a random boundary, 27 func NewWriter(w io.Writer) *Writer { 28 return &Writer{ 34 // Boundary returns the Writer's boundary. 35 func (w *Writer) Boundary() string { 39 // SetBoundary overrides the Writer's default randomly-generate [all...] |
/prebuilts/go/linux-x86/src/mime/multipart/ |
writer.go | 18 // A Writer generates multipart messages. 19 type Writer struct { 20 w io.Writer 25 // NewWriter returns a new multipart Writer with a random boundary, 27 func NewWriter(w io.Writer) *Writer { 28 return &Writer{ 34 // Boundary returns the Writer's boundary. 35 func (w *Writer) Boundary() string { 39 // SetBoundary overrides the Writer's default randomly-generate [all...] |
/external/llvm/lib/Target/X86/MCTargetDesc/ |
X86MachObjectWriter.cpp | 1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===// 28 bool recordScatteredRelocation(MachObjectWriter *Writer, 36 void recordTLVPRelocation(MachObjectWriter *Writer, 44 void RecordX86Relocation(MachObjectWriter *Writer, 51 void RecordX86_64Relocation(MachObjectWriter *Writer, MCAssembler &Asm, 60 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, 64 if (Writer->is64Bit()) 65 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target, 68 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target, 103 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/bio/ |
buf.go | 20 // Writer implements a seekable buffered io.Writer. 21 type Writer struct { 23 *bufio.Writer 26 // Create creates the file named name and returns a Writer 28 func Create(name string) (*Writer, error) { 33 return &Writer{f: f, Writer: bufio.NewWriter(f)}, nil 57 func (w *Writer) Seek(offset int64, whence int) int64 { 77 func (w *Writer) Offset() int64 [all...] |
/prebuilts/go/darwin-x86/src/net/textproto/ |
writer.go | 13 // A Writer implements convenience methods for writing 15 type Writer struct { 16 W *bufio.Writer 20 // NewWriter returns a new Writer writing to w. 21 func NewWriter(w *bufio.Writer) *Writer { 22 return &Writer{W: w} 29 func (w *Writer) PrintfLine(format string, args ...interface{}) error { 36 // DotWriter returns a writer that can be used to write a dot-encoding to w. 43 func (w *Writer) DotWriter() io.WriteCloser [all...] |
/prebuilts/go/linux-x86/src/cmd/internal/bio/ |
buf.go | 20 // Writer implements a seekable buffered io.Writer. 21 type Writer struct { 23 *bufio.Writer 26 // Create creates the file named name and returns a Writer 28 func Create(name string) (*Writer, error) { 33 return &Writer{f: f, Writer: bufio.NewWriter(f)}, nil 57 func (w *Writer) Seek(offset int64, whence int) int64 { 77 func (w *Writer) Offset() int64 [all...] |
/prebuilts/go/linux-x86/src/net/textproto/ |
writer.go | 13 // A Writer implements convenience methods for writing 15 type Writer struct { 16 W *bufio.Writer 20 // NewWriter returns a new Writer writing to w. 21 func NewWriter(w *bufio.Writer) *Writer { 22 return &Writer{W: w} 29 func (w *Writer) PrintfLine(format string, args ...interface{}) error { 36 // DotWriter returns a writer that can be used to write a dot-encoding to w. 43 func (w *Writer) DotWriter() io.WriteCloser [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/ |
X86MachObjectWriter.cpp | 1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===// 26 void RecordScatteredRelocation(MachObjectWriter *Writer, 34 void RecordTLVPRelocation(MachObjectWriter *Writer, 42 void RecordX86Relocation(MachObjectWriter *Writer, 49 void RecordX86_64Relocation(MachObjectWriter *Writer, 62 void RecordRelocation(MachObjectWriter *Writer, 66 if (Writer->is64Bit()) 67 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target, 70 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target, 99 void X86MachObjectWriter::RecordX86_64Relocation(MachObjectWriter *Writer, [all...] |
/external/deqp/executor/tools/ |
xeBatchResultToXml.cpp | 144 ResultToSingleXmlLogHandler (xe::xml::Writer& writer, BatchResultTotals& totals) 145 : m_writer (writer) 178 xe::xml::Writer& m_writer; 183 static void writeTotals (xe::xml::Writer& writer, const BatchResultTotals& totals) 185 using xe::xml::Writer; 189 writer << Writer::BeginElement("ResultTotals"); 193 writer << Writer::Attribute(xe::getTestStatusCodeName((xe::TestStatusCode)code), de::toString(totals.coun (…) [all...] |
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
PPCMachObjectWriter.cpp | 1 //===-- PPCMachObjectWriter.cpp - PPC Mach-O Writer -----------------------===// 27 bool recordScatteredRelocation(MachObjectWriter *Writer, 34 void RecordPPCRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, 43 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, 47 if (Writer->is64Bit()) { 50 RecordPPCRelocation(Writer, Asm, Layout, Fragment, Fixup, Target, 192 MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, 198 const unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, FK); 213 uint32_t Value = Writer->getSymbolAddress(*A, Layout); 214 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent()) [all...] |
/art/compiler/debug/dwarf/ |
expression.h | 24 #include "debug/dwarf/writer.h" 29 // Writer for DWARF expressions which are used in .debug_info and .debug_loc sections. 32 // The writer is not exhaustive - it only implements opcodes we have needed so far. 33 class Expression : private Writer<> { 35 using Writer<>::data; 36 using Writer<>::size; 114 explicit Expression(std::vector<uint8_t>* buffer) : Writer<>(buffer) {
|
/external/clang/lib/Frontend/ |
TestModuleFileExtension.h | 28 class Writer : public ModuleFileExtensionWriter { 30 Writer(ModuleFileExtension *Ext) : ModuleFileExtensionWriter(Ext) { } 31 ~Writer() override; 62 createExtensionWriter(ASTWriter &Writer) override;
|