HomeSort by relevance Sort by last modified time
    Searched refs:writeLine (Results 1 - 25 of 26) sorted by null

1 2

  /external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java 60 void writeLine(String s) throws IOException;
62 void writeLine(CharArrayBuffer buffer) throws IOException;
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 102 this.out.writeLine(Integer.toHexString(this.cachePosition));
104 this.out.writeLine("");
118 this.out.writeLine(Integer.toHexString(this.cachePosition + len));
121 this.out.writeLine("");
127 this.out.writeLine("0");
128 this.out.writeLine("");
AbstractMessageWriter.java 84 this.sessionBuffer.writeLine
88 this.sessionBuffer.writeLine(this.lineBuf);
HttpRequestWriter.java 62 this.sessionBuffer.writeLine(buffer);
HttpResponseWriter.java 62 this.sessionBuffer.writeLine(buffer);
AbstractSessionOutputBuffer.java 142 public void writeLine(final String s) throws IOException {
152 public void writeLine(final CharArrayBuffer s) throws IOException {
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 95 public void writeLine(final CharArrayBuffer buffer) throws IOException {
96 this.out.writeLine(buffer);
103 public void writeLine(final String s) throws IOException {
104 this.out.writeLine(s);
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 68 private void writeLine(char[] chars, int start, int len) throws IOException {
80 private void writeLine(String str, int start, int len) throws IOException {
99 writeLine(chars, start, pos-start);
109 writeLine(chars, start, pos-start);
124 writeLine(str, start, end-start);
127 writeLine(str, start, pos-start);
192 writeLine(buffer, bufferIndex, 24-bufferIndex);
212 writeLine(buffer, bufferIndex, 24-bufferIndex);
232 writeLine(buffer, bufferIndex, 16-bufferIndex);
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.cpp 37 void GLSLCodeGenerator::writeLine(const char* s) {
60 void GLSLCodeGenerator::writeLine(const String& s) {
61 this->writeLine(s.c_str());
64 void GLSLCodeGenerator::writeLine() {
65 this->writeLine("");
173 this->writeLine(" {");
182 this->writeLine(";");
    [all...]
SkSLGLSLCodeGenerator.h 88 void writeLine();
90 void writeLine(const char* s);
96 void writeLine(const String& s);
SkSLMetalCodeGenerator.cpp 50 void MetalCodeGenerator::writeLine(const char* s) {
60 void MetalCodeGenerator::writeLine(const String& s) {
61 this->writeLine(s.c_str());
64 void MetalCodeGenerator::writeLine() {
65 this->writeLine("");
69 this->writeLine("#extension " + ext.fName + " : enable");
83 this->writeLine("struct " + type.name() + " {");
    [all...]
SkSLMetalCodeGenerator.h 122 void writeLine();
124 void writeLine(const char* s);
128 void writeLine(const String& s);
SkSLPipelineStageCodeGenerator.cpp 192 this->writeLine();
SkSLCPPCodeGenerator.cpp 484 this->writeLine();
    [all...]
  /external/skqp/src/sksl/
SkSLGLSLCodeGenerator.cpp 37 void GLSLCodeGenerator::writeLine(const char* s) {
60 void GLSLCodeGenerator::writeLine(const String& s) {
61 this->writeLine(s.c_str());
64 void GLSLCodeGenerator::writeLine() {
65 this->writeLine("");
177 this->writeLine(" {");
186 this->writeLine(";");
    [all...]
SkSLGLSLCodeGenerator.h 88 void writeLine();
90 void writeLine(const char* s);
96 void writeLine(const String& s);
SkSLMetalCodeGenerator.cpp 48 void MetalCodeGenerator::writeLine(const char* s) {
58 void MetalCodeGenerator::writeLine(const String& s) {
59 this->writeLine(s.c_str());
62 void MetalCodeGenerator::writeLine() {
63 this->writeLine("");
67 this->writeLine("#extension " + ext.fName + " : enable");
81 this->writeLine("struct " + type.name() + " {");
756 this->writeLine(") {");
762 this->writeLine(" Globals globalStruct;");
763 this->writeLine(" thread Globals* _globals = &globalStruct;")
    [all...]
SkSLMetalCodeGenerator.h 120 void writeLine();
122 void writeLine(const char* s);
126 void writeLine(const String& s);
SkSLPipelineStageCodeGenerator.cpp 191 this->writeLine();
  /build/blueprint/
ninja_writer.go 58 var writeLine bool
64 writeLine = true
70 writeLine = true
73 if writeLine {
  /external/cldr/tools/java/org/unicode/cldr/icu/
ICUWriter.java 98 private void writeLine(OutputStream writer, String line) {
160 writeLine(writer, buffer.toString());
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerFlakyNetworkTest.java 308 public void writeLine(String s) throws IOException {
310 super.writeLine(s);
314 public void writeLine(CharArrayBuffer buffer) throws IOException {
316 super.writeLine(buffer);
NativeDecoderTest.java     [all...]
  /external/boringssl/src/util/
convert_comments.go 88 // writeLine writes |line| to |out|, followed by a newline.
89 func writeLine(out *bytes.Buffer, line string) {
211 writeLine(&out, line)
239 writeLine(&out, newLine)
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java     [all...]

Completed in 1241 milliseconds

1 2