/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/ |
Main.java | 43 import java.io.Writer; 67 public void execute(Rules rules, Writer reportWriter) throws Exception { 112 Writer writer = new OutputStreamWriter(fos, JAVA_SOURCE_CHARSET); local 114 writer.write(source.toCharArray()); 116 writer.close();
|
/frameworks/av/media/libaudioclient/include/media/ |
AudioMixer.h | 289 NBLog::Writer* mLog; 304 NBLog::Writer mDummyLog; 306 void setLog(NBLog::Writer* log);
|
/frameworks/base/core/java/com/android/internal/util/ |
FastXmlSerializer.java | 25 import java.io.Writer; 59 private Writer mWriter; 333 public void setOutput(Writer writer) throws IOException, IllegalArgumentException, 335 mWriter = writer;
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
Channels.java | 34 import java.io.Writer; 543 * Constructs a writer that encodes characters using the given encoder and 565 * @return A new writer 567 public static Writer newWriter(final WritableByteChannel ch, 576 * Constructs a writer that encodes characters according to the named 598 * @return A new writer 604 public static Writer newWriter(WritableByteChannel ch,
|
/build/soong/cmd/javac_filter/ |
javac_filter.go | 55 func process(r io.Reader, w io.Writer) error { 67 func processLine(w io.Writer, line string) {
|
/external/fmtlib/fmt/ |
ostream.h | 71 void write(std::ostream &os, Writer &w);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
DiskLruCacheWrapper.java | 84 public void put(Key key, Writer writer) { 92 if (writer.write(file)) {
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/ |
ICUZDump.java | 19 import java.io.Writer; 83 public void dump(Writer w) throws IOException { 339 Writer w = new BufferedWriter(new OutputStreamWriter(fos)); 349 private static void dumpZone(Writer w, String lineSep, String tzid, int low, int high, boolean isJdk) throws IOException {
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
PDBFile.cpp | 345 StreamWriter Writer(*Buffer); 347 if (auto EC = Writer.writeObject(*SB)) 349 Writer.setOffset(getBlockMapOffset()); 350 if (auto EC = Writer.writeArray(DirectoryBlocks))
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
PPCMCCodeEmitter.cpp | 120 support::endian::Writer<support::little>(OS).write<uint32_t>(Bits); 122 support::endian::Writer<support::big>(OS).write<uint32_t>(Bits); 130 support::endian::Writer<support::little>(OS).write<uint64_t>(Swapped); 132 support::endian::Writer<support::big>(OS).write<uint64_t>(Bits);
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
Yaml.java | 23 import java.io.Writer; 218 public void dump(Object data, Writer output) { 232 public void dumpAll(Iterator<? extends Object> data, Writer output) { 236 private void dumpAll(Iterator<? extends Object> data, Writer output, Tag rootTag) {
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
Statistic.cpp | 70 sys::SmartScopedLock<true> Writer(*StatLock);
|
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/ |
FileRotatorTest.java | 31 import com.android.internal.util.FileRotator.Writer; 83 rotate1.combineActive(reader, writer("foo"), currentTime); 99 rotate.combineActive(reader, writer("foo"), currentTime); 107 rotate.combineActive(reader, writer("bar"), currentTime); 120 rotate.combineActive(reader, writer("foo"), currentTime); 127 rotate.combineActive(reader, writer("bar"), currentTime); 139 rotate.combineActive(reader, writer("baz"), currentTime); 152 rotate.combineActive(reader, writer("foo"), currentTime); 159 rotate.combineActive(reader, writer("bar"), currentTime); 182 rotate.combineActive(reader, writer("foo"), currentTime) 396 private static Writer writer(final String value) { method in class:FileRotatorTest [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
LeakDetector.java | 27 import java.io.Writer;
|
/frameworks/base/tools/preload/ |
PrintCsv.java | 21 import java.io.Writer;
|
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/ |
BallsView.java | 19 import java.io.Writer;
|
/libcore/ojluni/src/main/java/java/util/logging/ |
StreamHandler.java | 78 private volatile Writer writer; field in class:StreamHandler 146 writer = new OutputStreamWriter(output); 149 writer = new OutputStreamWriter(output, encoding); 178 // Replace the current writer with a writer for the new encoding. 181 writer = new OutputStreamWriter(output); 183 writer = new OutputStreamWriter(output, encoding); 221 writer.write(getFormatter().getHead(this)); 224 writer.write(msg) [all...] |
/packages/apps/Test/connectivity/sl4n/ |
main.cpp | 19 #include <rapidjson/writer.h> 49 rapidjson::Writer<rapidjson::StringBuffer> writer(buffer); 92 d.Accept(writer);
|
/prebuilts/go/darwin-x86/src/image/color/palette/ |
gen.go | 52 func printPlan9(w io.Writer) { 101 func printWebSafe(w io.Writer) {
|
/prebuilts/go/darwin-x86/src/image/png/ |
writer.go | 24 w io.Writer 168 // An encoder is an io.Writer that satisfies writes by writing PNG IDAT chunks, 170 // should be relatively infrequent, since writeIDATs uses a bufio.Writer. 173 // No other code should treat an encoder as an io.Writer. 276 func writeImage(w io.Writer, m image.Image, cb int, level int) error { 447 var bw *bufio.Writer 477 func Encode(w io.Writer, m image.Image) error { 483 func (enc *Encoder) Encode(w io.Writer, m image.Image) error {
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue15528.go | 45 {io.Writer((*os.File)(nil)), "*os.File <nil>"}, 46 {(interface{})(io.Writer((*os.File)(nil))), "*os.File <nil>"},
|
/prebuilts/go/linux-x86/src/image/color/palette/ |
gen.go | 52 func printPlan9(w io.Writer) { 101 func printWebSafe(w io.Writer) {
|
/prebuilts/go/linux-x86/src/image/png/ |
writer.go | 24 w io.Writer 168 // An encoder is an io.Writer that satisfies writes by writing PNG IDAT chunks, 170 // should be relatively infrequent, since writeIDATs uses a bufio.Writer. 173 // No other code should treat an encoder as an io.Writer. 276 func writeImage(w io.Writer, m image.Image, cb int, level int) error { 447 var bw *bufio.Writer 477 func Encode(w io.Writer, m image.Image) error { 483 func (enc *Encoder) Encode(w io.Writer, m image.Image) error {
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue15528.go | 45 {io.Writer((*os.File)(nil)), "*os.File <nil>"}, 46 {(interface{})(io.Writer((*os.File)(nil))), "*os.File <nil>"},
|
/external/llvm/lib/MC/ |
ELFObjectWriter.cpp | 1 //===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===// 10 // This file implements ELF object file writer information. 97 /// The target specific ELF writer instance. 166 support::endian::Writer<support::little>(getStream()).write(Val); 168 support::endian::Writer<support::big>(getStream()).write(Val); 173 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex, 459 void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer, 498 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex, 771 SymbolTableWriter Writer(*this, is64Bit()); 784 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false) [all...] |