HomeSort by relevance Sort by last modified time
    Searched refs:write (Results 26 - 50 of 12827) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/curl/packages/vms/
generate_config_vms_h_curl.com 116 $ write sys$output "NOTICE: A LIBIDN port has been detected."
117 $ write sys$output " This port of curl for VMS has not been tested with it."
124 $ write sys$output " LIBIDN support is not enabled."
125 $ write sys$output "Run with the ""libidn"" parameter to attempt to use."
127 $ write sys$output " Untested LIBIDN support requested."
135 $ write sys$output "NOTICE: A LIBSSH2 port has been detected."
136 $ write sys$output " This port of curl for VMS has not been tested with it."
143 $ write sys$output " LIBSSH2 support is not enabled."
144 $ write sys$output "Run with the ""libssh2"" parameter to attempt to use."
146 $ write sys$output " Untested LIBSSH2 support requested.
    [all...]
config_h.com 88 $ write sys$output "Found existing custom file ''file'."
91 $ write sys$output "Creating new sys$disk:[]config_vms.h for you."
109 $! Write out the header
162 $ write sys$output "Can not find sys$disk:config.h.in"
165 $ write/symbol sys$output line_out
168 $ write sys$output "Also looked in PRJ_INCLUDE: for these files."
171 $ write tf ""
172 $ write tf -
174 $ write tf -
176 $ write tf
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
TelnetOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * This class overrides write to do CRLF processing as specified in
96 public void write(int c) throws IOException { method in class:TelnetOutputStream
98 super.write(c);
104 super.write(0);
105 super.write(c);
110 super.write('\r');
111 super.write('\n');
118 super.write('\r');
122 super.write(c)
130 public void write(byte bytes[], int off, int length) throws IOException { method in class:TelnetOutputStream
    [all...]
  /device/google/wahoo/
init.power.sh 6 function write() { function
19 write $cpubw/governor "bw_hwmon"
20 write $cpubw/polling_interval 50
21 write $cpubw/bw_hwmon/mbps_zones "3143 5859 11863 13763"
22 write $cpubw/bw_hwmon/sample_ms 4
23 write $cpubw/bw_hwmon/io_percent 34
24 write $cpubw/bw_hwmon/hist_memory 20
25 write $cpubw/bw_hwmon/hyst_length 10
26 write $cpubw/bw_hwmon/low_power_ceil_mbps 0
27 write $cpubw/bw_hwmon/low_power_io_percent 3
    [all...]
  /external/selinux/libsepol/tests/policies/test-deps/
modreq-bool-global.conf 5 class file { read write };
14 allow a_t b_t : file { read write };
modreq-type-global.conf 5 class file { read write };
12 allow test_t type_req_t : file { read write };
modreq-type-opt.conf 5 class file { read write };
15 allow type_req_t file_t : file { read write };
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
ShortRenderer.java 38 writer.write("-0x");
40 writer.write('s');
42 writer.write("0x");
44 writer.write('s');
ByteRenderer.java 38 writer.write("-0x");
40 writer.write('t');
42 writer.write("0x");
44 writer.write('t');
49 writer.write("0x");
51 writer.write('t');
  /external/strace/tests/
read-write.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (read-write -a15 -eread=0 -ewrite=1 -e trace=read,write -P read-write-tmpfile -P /dev/zero -P /dev/null); do not edit.
4 run_strace_match_diff -a15 -eread=0 -ewrite=1 -e trace=read,write -P read-write-tmpfile -P /dev/zero -P /dev/null
  /external/strace/tests-m32/
read-write.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (read-write -a15 -eread=0 -ewrite=1 -e trace=read,write -P read-write-tmpfile -P /dev/zero -P /dev/null); do not edit.
4 run_strace_match_diff -a15 -eread=0 -ewrite=1 -e trace=read,write -P read-write-tmpfile -P /dev/zero -P /dev/null
  /external/strace/tests-mx32/
read-write.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (read-write -a15 -eread=0 -ewrite=1 -e trace=read,write -P read-write-tmpfile -P /dev/zero -P /dev/null); do not edit.
4 run_strace_match_diff -a15 -eread=0 -ewrite=1 -e trace=read,write -P read-write-tmpfile -P /dev/zero -P /dev/null
  /toolchain/binutils/binutils-2.27/libiberty/
msdos.c 4 write(1, msg, sizeof(msg));
  /external/tensorflow/tensorflow/contrib/lite/testing/
generate_examples_report.py 52 fp.write("<td style='background-color: %s' onclick='%s'>%s</td>\n" % (
55 fp.write("""<html>
68 # Write the log data to a javascript variable and also make a function
70 fp.write("<script> \n")
71 fp.write("""
78 fp.write("var data = \n")
79 fp.write(json.dumps([[cgi.escape(x[1]["tf_log"], quote=True),
82 fp.write(";</script>\n")
84 # Write the main table and use onclick on the items that have log items.
85 fp.write("""
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyWriter.java 28 * methods being called, such as write(char[]) to write(char[], int, int)
29 * and write(String) to write(String, int, int).
47 * Invokes the delegate's <code>write(int)</code> method.
48 * @param idx the character to write
51 public void write(int idx) throws IOException { method in class:ProxyWriter
52 out.write(idx);
56 * Invokes the delegate's <code>write(char[])</code> method.
57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException { method in class:ProxyWriter
71 public void write(char[] chr, int st, int end) throws IOException { method in class:ProxyWriter
80 public void write(String str) throws IOException { method in class:ProxyWriter
91 public void write(String str, int st, int end) throws IOException { method in class:ProxyWriter
    [all...]
TeeOutputStream.java 31 /** the second OutputStream to write to */
45 * Write the bytes to both streams.
46 * @param b the bytes to write
49 public synchronized void write(byte[] b) throws IOException { method in class:TeeOutputStream
50 super.write(b);
51 this.branch.write(b);
55 * Write the specified bytes to both streams.
56 * @param b the bytes to write
58 * @param len The number of bytes to write
61 public synchronized void write(byte[] b, int off, int len) throws IOException method in class:TeeOutputStream
71 public synchronized void write(int b) throws IOException { method in class:TeeOutputStream
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 33 * write(int val)
34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
54 public void write(int val) throws IOException; method in interface:WriterChain
56 public void write(char[] chars) throws IOException; method in interface:WriterChain
58 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
60 public void write(String chars) throws IOException; method in interface:WriterChain
62 public void write(String chars, int start, int count) throws IOException method in interface:WriterChain
    [all...]
  /external/python/cpython2/Mac/Modules/qt/
qtscan.py 55 self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n")
56 self.defsfile.write("xmlIdentifierUnrecognized = -1\n")
57 self.defsfile.write("kControllerMinimum = -0xf777\n")
58 self.defsfile.write("notImplementedMusicOSErr = -2071\n")
59 self.defsfile.write("cantSendToSynthesizerOSErr = -2072\n")
60 self.defsfile.write("cantReceiveFromSynthesizerOSErr = -2073\n")
61 self.defsfile.write("illegalVoiceAllocationOSErr = -2074\n")
62 self.defsfile.write("illegalPartOSErr = -2075\n")
63 self.defsfile.write("illegalChannelOSErr = -2076\n")
64 self.defsfile.write("illegalKnobOSErr = -2077\n"
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/csv/
DelimitedWriterTest.java 45 writer.write("test");
51 writer.write("value,1");
57 writer.write("\",\"");
63 writer.write(new String[] {});
69 writer.write("header1", "header2", "header3");
75 writer.write("test1");
76 writer.write("test2");
82 writer.write("test1");
83 writer.write("test2");
85 writer.write("test3")
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
SyntheticAccessCommentMethodItem.java 52 writer.write("# ");
55 writer.write("invokes: ");
58 writer.write("getter for: ");
61 writer.write("setter for: ");
64 writer.write("++operator for: ");
67 writer.write("operator++ for: ");
70 writer.write("--operator for: ");
73 writer.write("operator-- for: ");
76 writer.write("+= operator for: ");
79 writer.write("-= operator for: ")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeOutputStream.java 28 public void write(byte[] buf) method in class:TeeOutputStream
31 this.output1.write(buf);
32 this.output2.write(buf);
35 public void write(byte[] buf, int off, int len) method in class:TeeOutputStream
38 this.output1.write(buf, off, len);
39 this.output2.write(buf, off, len);
42 public void write(int b) method in class:TeeOutputStream
45 this.output1.write(b);
46 this.output2.write(b);
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
26 * to help them write to the underlying stream.
37 * @param writer The writer to write to. Could be a file, a string, etc.
51 public void write(String format, Object... args) { method in class:Output
53 mWriter.write(String.format(format, args));
62 * @param c The character to write.
64 public void write(char c) { method in class:Output
65 write(Character.toString(c));
71 * @param sb The {@link StringBuilder#toString()} method is used to ge the string to write.
73 public void write(StringBuilder sb) method in class:Output
    [all...]
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
CountingOutputStream.java 47 public void write(int b) throws IOException { method in class:CountingOutputStream
49 out.write(b);
53 public void write(byte[] b) throws IOException { method in class:CountingOutputStream
55 out.write(b);
59 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
61 out.write(b, off, len);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
FinishableWrapperOutputStream.java 36 * Calls {@link java.io.OutputStream#write(int) out.write(b)}.
38 public void write(int b) throws IOException { method in class:FinishableWrapperOutputStream
39 out.write(b);
43 * Calls {@link java.io.OutputStream#write(byte[]) out.write(buf)}.
45 public void write(byte[] buf) throws IOException { method in class:FinishableWrapperOutputStream
46 out.write(buf);
50 * Calls {@link java.io.OutputStream#write(byte[],int,int)
51 out.write(buf, off, len)}
53 public void write(byte[] buf, int off, int len) throws IOException { method in class:FinishableWrapperOutputStream
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
CountOutputStream.java 41 * @see java.io.OutputStream#write(byte[], int, int)
43 public void write(byte[] buf, int off, int len) throws IOException method in class:CountOutputStream
45 out.write(buf, off, len);
52 * @see java.io.OutputStream#write(byte[])
54 public void write(byte[] buf) throws IOException method in class:CountOutputStream
56 out.write(buf);
63 * @see java.io.OutputStream#write(int)
65 public void write(int b) throws IOException method in class:CountOutputStream
67 out.write(b);

Completed in 731 milliseconds

12 3 4 5 6 7 8 91011>>