/external/smali/util/src/main/java/org/jf/util/ |
D | IndentingWriter.java | 68 private void writeLine(char[] chars, int start, int len) throws IOException { in writeLine() method in IndentingWriter 80 private void writeLine(String str, int start, int len) throws IOException { in writeLine() method in IndentingWriter 99 writeLine(chars, start, pos-start); in write() 109 writeLine(chars, start, pos-start); in write() 124 writeLine(str, start, end-start); in write() 127 writeLine(str, start, pos-start); in write() 192 writeLine(buffer, bufferIndex, 24-bufferIndex); in printUnsignedLongAsHex() 212 writeLine(buffer, bufferIndex, 24-bufferIndex); in printSignedLongAsDec() 232 writeLine(buffer, bufferIndex, 16-bufferIndex); in printSignedIntAsDec()
|
/external/apache-http/src/org/apache/http/impl/io/ |
D | ChunkedOutputStream.java | 102 this.out.writeLine(Integer.toHexString(this.cachePosition)); in flushCache() 104 this.out.writeLine(""); in flushCache() 118 this.out.writeLine(Integer.toHexString(this.cachePosition + len)); in flushCacheWithAppend() 121 this.out.writeLine(""); in flushCacheWithAppend() 127 this.out.writeLine("0"); in writeClosingChunk() 128 this.out.writeLine(""); in writeClosingChunk()
|
D | AbstractMessageWriter.java | 84 this.sessionBuffer.writeLine in write() 88 this.sessionBuffer.writeLine(this.lineBuf); in write()
|
D | AbstractSessionOutputBuffer.java | 142 public void writeLine(final String s) throws IOException { in writeLine() method in AbstractSessionOutputBuffer 152 public void writeLine(final CharArrayBuffer s) throws IOException { in writeLine() method in AbstractSessionOutputBuffer
|
D | HttpRequestWriter.java | 62 this.sessionBuffer.writeLine(buffer); in writeHeadLine()
|
D | HttpResponseWriter.java | 62 this.sessionBuffer.writeLine(buffer); in writeHeadLine()
|
/external/skqp/src/sksl/ |
D | SkSLMetalCodeGenerator.cpp | 33 void MetalCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::MetalCodeGenerator 43 void MetalCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::MetalCodeGenerator 44 this->writeLine(s.c_str()); in writeLine() 47 void MetalCodeGenerator::writeLine() { in writeLine() function in SkSL::MetalCodeGenerator 48 this->writeLine(""); in writeLine() 52 this->writeLine("#extension " + ext.fName + " : enable"); in writeExtension() 66 this->writeLine("struct " + type.name() + " {"); in writeType() 72 this->writeLine(" " + f.fName + ";"); in writeType() 452 this->writeLine(") {"); in writeFunction() 459 this->writeLine(" half4 sk_FragColor;"); in writeFunction() [all …]
|
D | SkSLGLSLCodeGenerator.cpp | 33 void GLSLCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::GLSLCodeGenerator 56 void GLSLCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::GLSLCodeGenerator 57 this->writeLine(s.c_str()); in writeLine() 60 void GLSLCodeGenerator::writeLine() { in writeLine() function in SkSL::GLSLCodeGenerator 61 this->writeLine(""); in writeLine() 67 this->writeLine(" : enable"); in writeExtension() 159 this->writeLine(" {"); in writeType() 168 this->writeLine(";"); in writeType() 886 this->writeLine(") {"); in writeFunction() 895 this->writeLine("}"); in writeFunction() [all …]
|
D | SkSLMetalCodeGenerator.h | 93 void writeLine(); 95 void writeLine(const char* s); 99 void writeLine(const String& s);
|
D | SkSLGLSLCodeGenerator.h | 87 void writeLine(); 89 void writeLine(const char* s); 95 void writeLine(const String& s);
|
D | SkSLCPPCodeGenerator.cpp | 342 this->writeLine(); in writeFunction()
|
/external/skia/src/sksl/ |
D | SkSLMetalCodeGenerator.cpp | 33 void MetalCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::MetalCodeGenerator 43 void MetalCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::MetalCodeGenerator 44 this->writeLine(s.c_str()); in writeLine() 47 void MetalCodeGenerator::writeLine() { in writeLine() function in SkSL::MetalCodeGenerator 48 this->writeLine(""); in writeLine() 52 this->writeLine("#extension " + ext.fName + " : enable"); in writeExtension() 66 this->writeLine("struct " + type.name() + " {"); in writeType() 72 this->writeLine(" " + f.fName + ";"); in writeType() 452 this->writeLine(") {"); in writeFunction() 459 this->writeLine(" half4 sk_FragColor;"); in writeFunction() [all …]
|
D | SkSLGLSLCodeGenerator.cpp | 33 void GLSLCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::GLSLCodeGenerator 56 void GLSLCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::GLSLCodeGenerator 57 this->writeLine(s.c_str()); in writeLine() 60 void GLSLCodeGenerator::writeLine() { in writeLine() function in SkSL::GLSLCodeGenerator 61 this->writeLine(""); in writeLine() 67 this->writeLine(" : enable"); in writeExtension() 159 this->writeLine(" {"); in writeType() 168 this->writeLine(";"); in writeType() 896 this->writeLine(") {"); in writeFunction() 905 this->writeLine("}"); in writeFunction() [all …]
|
D | SkSLMetalCodeGenerator.h | 93 void writeLine(); 95 void writeLine(const char* s); 99 void writeLine(const String& s);
|
D | SkSLGLSLCodeGenerator.h | 87 void writeLine(); 89 void writeLine(const char* s); 95 void writeLine(const String& s);
|
D | SkSLCPPCodeGenerator.cpp | 342 this->writeLine(); in writeFunction()
|
/external/apache-http/src/org/apache/http/impl/conn/ |
D | LoggingSessionOutputBuffer.java | 95 public void writeLine(final CharArrayBuffer buffer) throws IOException { in writeLine() method in LoggingSessionOutputBuffer 96 this.out.writeLine(buffer); in writeLine() 103 public void writeLine(final String s) throws IOException { in writeLine() method in LoggingSessionOutputBuffer 104 this.out.writeLine(s); in writeLine()
|
/external/apache-http/src/org/apache/http/io/ |
D | SessionOutputBuffer.java | 60 void writeLine(String s) throws IOException; in writeLine() method 62 void writeLine(CharArrayBuffer buffer) throws IOException; in writeLine() method
|
/external/boringssl/src/util/ |
D | convert_comments.go | 89 func writeLine(out *bytes.Buffer, line string) { func 211 writeLine(&out, line) 239 writeLine(&out, newLine)
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
D | XLIFF2ICUConverter.java | 1226 private void writeLine(OutputStream writer, String line) { in writeLine() method in XLIFF2ICUConverter 1250 writeLine(writer, format.format(args)); in writeHeader()
|
/external/apache-http/art-profile/ |
D | org.apache.http.legacy.boot.prof.txt | 552 HPLorg/apache/http/impl/io/AbstractSessionOutputBuffer;->writeLine(Lorg/apache/http/util/CharArrayB… 593 HPLorg/apache/http/io/SessionOutputBuffer;->writeLine(Ljava/lang/String;)V 594 HPLorg/apache/http/io/SessionOutputBuffer;->writeLine(Lorg/apache/http/util/CharArrayBuffer;)V
|
/external/apache-http/api/ |
D | apache-http-legacy-current.txt | 2859 method public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException; 2860 method public void writeLine(java.lang.String) throws java.io.IOException; 3376 method public void writeLine(java.lang.String) throws java.io.IOException; 3377 method public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException; 3487 method public abstract void writeLine(java.lang.String) throws java.io.IOException; 3488 …method public abstract void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExcep…
|