/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | InstructionWriter.java | 114 public void write(@Nonnull Instruction10t instruction) { in write() method in InstructionWriter 123 public void write(@Nonnull Instruction10x instruction) { in write() method in InstructionWriter 132 public void write(@Nonnull Instruction11n instruction) { in write() method in InstructionWriter 141 public void write(@Nonnull Instruction11x instruction) { in write() method in InstructionWriter 150 public void write(@Nonnull Instruction12x instruction) { in write() method in InstructionWriter 159 public void write(@Nonnull Instruction20bc instruction) { in write() method in InstructionWriter 169 public void write(@Nonnull Instruction20t instruction) { in write() method in InstructionWriter 179 public void write(@Nonnull Instruction21c instruction) { in write() method in InstructionWriter 189 public void write(@Nonnull Instruction21ih instruction) { in write() method in InstructionWriter 199 public void write(@Nonnull Instruction21lh instruction) { in write() method in InstructionWriter [all …]
|
/external/chromium-trace/catapult/common/py_trace_event/third_party/protobuf/ |
D | encoder.py | 69 def EncodeVarint(write, value): argument 85 def EncodeSignedVarint(write, value): argument 133 def EncodePackedField(write, value): argument 144 def EncodeRepeatedField(write, value): argument 151 def EncodeField(write, value): argument 173 def EncodeNonFiniteOrRaise(write, value): argument 184 def EncodeNonFiniteOrRaise(write, value): argument 202 def EncodePackedField(write, value): argument 215 def EncodeRepeatedField(write, value): argument 225 def EncodeField(write, value): argument [all …]
|
/external/okio/okio/src/commonMain/kotlin/okio/ |
D | BufferedSink.kt | 26 fun write(byteString: ByteString): BufferedSink method 28 fun write(byteString: ByteString, offset: Int, byteCount: Int): BufferedSink method 31 fun write(source: ByteArray): BufferedSink method 34 fun write(source: ByteArray, offset: Int, byteCount: Int): BufferedSink method 43 fun write(source: Source, byteCount: Long): BufferedSink method
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/ |
D | MsgPackWriter.cpp | 25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } in write() function in Writer 27 void Writer::write(int64_t i) { in write() function in Writer 60 void Writer::write(uint64_t u) { in write() function in Writer 88 void Writer::write(double d) { in write() function in Writer 101 void Writer::write(StringRef s) { in write() function in Writer 121 void Writer::write(MemoryBufferRef Buffer) { in write() function in Writer
|
/external/protobuf/python/google/protobuf/internal/ |
D | encoder.py | 375 def EncodeVarint(write, value, unused_deterministic=None): argument 391 def EncodeSignedVarint(write, value, unused_deterministic=None): argument 444 def EncodePackedField(write, value, deterministic): argument 455 def EncodeRepeatedField(write, value, deterministic): argument 462 def EncodeField(write, value, deterministic): argument 478 def EncodePackedField(write, value, deterministic): argument 489 def EncodeRepeatedField(write, value, deterministic): argument 496 def EncodeField(write, value, deterministic): argument 519 def EncodePackedField(write, value, deterministic): argument 527 def EncodeRepeatedField(write, value, unused_deterministic=None): argument [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | WriterChain.java | 54 public void write(int val) throws IOException; in write() method 56 public void write(char[] chars) throws IOException; in write() method 58 public void write(char[] chars, int start, int count) throws IOException; in write() method 60 public void write(String chars) throws IOException; in write() method 62 public void write(String chars, int start, int count) throws IOException; in write() method
|
/external/okio/okio/src/jvmMain/kotlin/okio/ |
D | RealBufferedSink.kt | 54 override fun write(source: Buffer, byteCount: Long) = commonWrite(source, byteCount) in buffer() method in okio.RealBufferedSink 55 override fun write(byteString: ByteString) = commonWrite(byteString) in buffer() method in okio.RealBufferedSink 56 override fun write(byteString: ByteString, offset: Int, byteCount: Int) = in buffer() method in okio.RealBufferedSink 81 override fun write(source: ByteArray) = commonWrite(source) in write() method in okio.RealBufferedSink 82 override fun write(source: ByteArray, offset: Int, byteCount: Int) = in write() method in okio.RealBufferedSink 85 override fun write(source: ByteBuffer): Int { in write() method in okio.RealBufferedSink 93 override fun write(source: Source, byteCount: Long): BufferedSink = commonWrite(source, byteCount) in writeAll() method in okio.RealBufferedSink 108 override fun write(b: Int) { in writeAll() method 114 override fun write(data: ByteArray, offset: Int, byteCount: Int) { in writeAll() method
|
D | BufferedSink.kt | 35 actual fun write(byteString: ByteString): BufferedSink method 38 actual fun write(byteString: ByteString, offset: Int, byteCount: Int): BufferedSink method 41 actual fun write(source: ByteArray): BufferedSink method 44 actual fun write(source: ByteArray, offset: Int, byteCount: Int): BufferedSink method 50 actual fun write(source: Source, byteCount: Long): BufferedSink method
|
/external/rust/cxx/syntax/ |
D | symbol.rs | 50 fn write(&self, symbol: &mut Symbol); in write() method 54 fn write(&self, symbol: &mut Symbol) { in write() method 60 fn write(&self, symbol: &mut Symbol) { in write() method 66 fn write(&self, symbol: &mut Symbol) { in write() method 72 fn write(&self, symbol: &mut Symbol) { in write() method 78 fn write(&self, symbol: &mut Symbol) { in write() method 86 fn write(&self, symbol: &mut Symbol) { in write() method 93 fn write(&self, symbol: &mut Symbol) { in write() method 104 fn write(&self, symbol: &mut Symbol) { in write() function
|
/external/okio/okio/src/nonJvmMain/kotlin/okio/ |
D | BufferedSink.kt | 21 actual fun write(byteString: ByteString): BufferedSink method 23 actual fun write(byteString: ByteString, offset: Int, byteCount: Int): BufferedSink method 25 actual fun write(source: ByteArray): BufferedSink method 27 actual fun write(source: ByteArray, offset: Int, byteCount: Int): BufferedSink method 31 actual fun write(source: Source, byteCount: Long): BufferedSink method
|
D | RealBufferedSink.kt | 45 override fun write(source: Buffer, byteCount: Long) = commonWrite(source, byteCount) method in okio.RealBufferedSink 46 override fun write(byteString: ByteString) = commonWrite(byteString) method in okio.RealBufferedSink 47 override fun write(byteString: ByteString, offset: Int, byteCount: Int) = method in okio.RealBufferedSink 54 override fun write(source: ByteArray) = commonWrite(source) method in okio.RealBufferedSink 55 override fun write(source: ByteArray, offset: Int, byteCount: Int) = method in okio.RealBufferedSink 59 override fun write(source: Source, byteCount: Long): BufferedSink = commonWrite(source, byteCount) method in okio.RealBufferedSink
|
/external/skia/src/sksl/ |
D | SkSLDehydrator.cpp | 92 void Dehydrator::write(Layout l) { in write() function in SkSL::Dehydrator 111 void Dehydrator::write(Modifiers m) { in write() function in SkSL::Dehydrator 127 void Dehydrator::write(std::string_view s) { in write() function in SkSL::Dehydrator 131 void Dehydrator::write(std::string s) { in write() function in SkSL::Dehydrator 147 void Dehydrator::write(const Symbol& s) { in write() function in SkSL::Dehydrator 235 void Dehydrator::write(const SymbolTable& symbols) { in write() function in SkSL::Dehydrator 278 void Dehydrator::write(const Expression* e) { in write() function in SkSL::Dehydrator 463 void Dehydrator::write(const Statement* s) { in write() function in SkSL::Dehydrator 570 void Dehydrator::write(const ProgramElement& e) { in write() function in SkSL::Dehydrator 617 void Dehydrator::write(const std::vector<std::unique_ptr<ProgramElement>>& elements) { in write() function in SkSL::Dehydrator [all …]
|
/external/libiio/src/bindings/csharp/ |
D | Attr.cs | 51 public abstract void write(string val); in write() method in iio.Attr 78 public void write(bool val) in write() method in iio.Attr 89 public void write(long val) in write() method in iio.Attr 97 public void write(double val) in write() method in iio.Attr
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/ |
D | SegmentedStringWriter.java | 55 public void write(char[] cbuf) { _buffer.append(cbuf, 0, cbuf.length); } in write() method in SegmentedStringWriter 58 public void write(char[] cbuf, int off, int len) { _buffer.append(cbuf, off, len); } in write() method in SegmentedStringWriter 61 public void write(int c) { _buffer.append((char) c); } in write() method in SegmentedStringWriter 64 public void write(String str) { _buffer.append(str, 0, str.length()); } in write() method in SegmentedStringWriter 67 public void write(String str, int off, int len) { _buffer.append(str, off, len); } in write() method in SegmentedStringWriter
|
D | DataOutputAsStream.java | 21 public void write(int b) throws IOException { in write() method in DataOutputAsStream 26 public void write(byte b[]) throws IOException { in write() method in DataOutputAsStream 31 public void write(byte b[], int offset, int length) throws IOException { in write() method in DataOutputAsStream
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | EndianStream.h | 27 inline void write(raw_ostream &os, value_type value, endianness endian) { in write() function 44 inline void write(raw_ostream &os, ArrayRef<value_type> vals, in write() function 55 template <typename value_type> void write(ArrayRef<value_type> Val) { in write() function 58 template <typename value_type> void write(value_type Val) { in write() function
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | NullOutputStream.java | 12 public void write(byte[] buf) in write() method in NullOutputStream 18 public void write(byte[] buf, int off, int len) in write() method in NullOutputStream 24 public void write(int b) throws IOException in write() method in NullOutputStream
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/ |
D | DelimitedWriter.java | 77 public void write(final String... fields) throws IOException { in write() method in DelimitedWriter 93 public void write(final String field) throws IOException { in write() method in DelimitedWriter 109 public void write(final int value) throws IOException { in write() method in DelimitedWriter 121 public void write(final int... values) throws IOException { in write() method in DelimitedWriter
|
/external/guava/android/guava/src/com/google/common/io/ |
D | AppendableWriter.java | 54 public void write(char[] cbuf, int off, int len) throws IOException { in write() method in AppendableWriter 66 public void write(int c) throws IOException { in write() method in AppendableWriter 72 public void write(String str) throws IOException { in write() method in AppendableWriter 79 public void write(String str, int off, int len) throws IOException { in write() method in AppendableWriter
|
/external/guava/guava/src/com/google/common/io/ |
D | AppendableWriter.java | 54 public void write(char[] cbuf, int off, int len) throws IOException { in write() method in AppendableWriter 66 public void write(int c) throws IOException { in write() method in AppendableWriter 72 public void write(String str) throws IOException { in write() method in AppendableWriter 79 public void write(String str, int off, int len) throws IOException { in write() method in AppendableWriter
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/io/ |
D | MacUpdatingOutputStream.java | 19 public void write(byte[] bytes, int off, int len) in write() method in MacUpdatingOutputStream 25 public void write(byte[] bytes) in write() method in MacUpdatingOutputStream 31 public void write(int b) in write() method in MacUpdatingOutputStream
|
D | SignatureUpdatingOutputStream.java | 19 public void write(byte[] bytes, int off, int len) in write() method in SignatureUpdatingOutputStream 32 public void write(byte[] bytes) in write() method in SignatureUpdatingOutputStream 45 public void write(int b) in write() method in SignatureUpdatingOutputStream
|
D | DigestUpdatingOutputStream.java | 18 public void write(byte[] bytes, int off, int len) in write() method in DigestUpdatingOutputStream 24 public void write(byte[] bytes) in write() method in DigestUpdatingOutputStream 30 public void write(int b) in write() method in DigestUpdatingOutputStream
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/io/ |
D | SignatureUpdatingOutputStream.java | 18 public void write(byte[] bytes, int off, int len) in write() method in SignatureUpdatingOutputStream 31 public void write(byte[] bytes) in write() method in SignatureUpdatingOutputStream 44 public void write(int b) in write() method in SignatureUpdatingOutputStream
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/io/ |
D | SignatureUpdatingOutputStream.java | 19 public void write(byte[] bytes, int off, int len) in write() method in SignatureUpdatingOutputStream 32 public void write(byte[] bytes) in write() method in SignatureUpdatingOutputStream 45 public void write(int b) in write() method in SignatureUpdatingOutputStream
|