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

1 2 3 4 5 6

  /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/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/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);
  /tools/apksig/src/main/java/com/android/apksig/internal/jar/
ManifestWriter.java 81 writeLine(out, name + ": " + value);
84 private static void writeLine(OutputStream out, String line) throws IOException {
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 142 public void writeLine(final String s) throws IOException {
152 public void writeLine(final CharArrayBuffer s) throws IOException {
  /libcore/luni/src/test/java/libcore/java/nio/charset/
StandardCharsetsEncoderTest.java 146 writeLine(writer, "# Reference encodings for " + encoder.charset().name()
148 writeLine(writer, "# Encodings are used by " + StandardCharsetsEncoderTest.class);
149 writeLine(writer, "# {codepoint}:{canEncode}:{encoding bytes}");
153 writeLine(writer, codePointInfo);
158 private static void writeLine(BufferedWriter writer, String text) throws IOException {
  /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);
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.cpp 33 void GLSLCodeGenerator::writeLine(const char* s) {
56 void GLSLCodeGenerator::writeLine(const String& s) {
57 this->writeLine(s.c_str());
60 void GLSLCodeGenerator::writeLine() {
61 this->writeLine("");
67 this->writeLine(" : enable");
159 this->writeLine(" {");
168 this->writeLine(";");
    [all...]
SkSLMetalCodeGenerator.cpp 33 void MetalCodeGenerator::writeLine(const char* s) {
43 void MetalCodeGenerator::writeLine(const String& s) {
44 this->writeLine(s.c_str());
47 void MetalCodeGenerator::writeLine() {
48 this->writeLine("");
52 this->writeLine("#extension " + ext.fName + " : enable");
66 this->writeLine("struct " + type.name() + " {");
72 this->writeLine(" " + f.fName + ";");
452 this->writeLine(") {");
459 this->writeLine(" half4 sk_FragColor;")
    [all...]
  /external/skqp/src/sksl/
SkSLGLSLCodeGenerator.cpp 33 void GLSLCodeGenerator::writeLine(const char* s) {
56 void GLSLCodeGenerator::writeLine(const String& s) {
57 this->writeLine(s.c_str());
60 void GLSLCodeGenerator::writeLine() {
61 this->writeLine("");
67 this->writeLine(" : enable");
159 this->writeLine(" {");
168 this->writeLine(";");
    [all...]
SkSLMetalCodeGenerator.cpp 33 void MetalCodeGenerator::writeLine(const char* s) {
43 void MetalCodeGenerator::writeLine(const String& s) {
44 this->writeLine(s.c_str());
47 void MetalCodeGenerator::writeLine() {
48 this->writeLine("");
52 this->writeLine("#extension " + ext.fName + " : enable");
66 this->writeLine("struct " + type.name() + " {");
72 this->writeLine(" " + f.fName + ";");
452 this->writeLine(") {");
459 this->writeLine(" half4 sk_FragColor;")
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MailTransport.java 308 public void writeLine(String s, String sensitiveReplacement) throws IOException {
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapConnection.java 364 transport.writeLine(commandToSend, (sensitive ? IMAP_REDACTED_LOG : command));
370 transport.writeLine(response, (sensitive ? IMAP_REDACTED_LOG : response));
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
MailTransport.java 290 public void writeLine(String s, String sensitiveReplacement) throws IOException {
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 252 mTransport.writeLine(command, sensitiveReplacement);
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 311 public void writeLine(String s, String sensitiveReplacement) throws IOException {
378 writeLine(sb.toString(), null);
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 288 mTransport.writeLine(commandToSend, sensitive ? IMAP_REDACTED_LOG : null);
320 mTransport.writeLine(commandToSend, null);
Pop3Store.java 729 mTransport.writeLine(command, sensitiveReplacement);
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
CountryZoneTree.java 584 writeLine(nodeName + "[label=" + enquote(label) + optionalColor + "];");
588 writeLine(nodeName + " -> " + enquote(child.getId()) + ";");
600 private void writeLine(String s) {
610 writeLine(fileWriter, "strict digraph " + countryIso + " {");
611 writeLine(fileWriter, dotFileVisitor.graphStringBuilder.toString());
612 writeLine(fileWriter, "}");
616 private static void writeLine(Appendable appendable, String s) throws IOException {
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/
plexus-interactivity-api-1.0-alpha-4.jar 
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java     [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.2/
kotlin-annotation-processing-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/
util-2.1.3.jar 

Completed in 354 milliseconds

1 2 3 4 5 6