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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/io/instructions/
CodeOutput.java 26 public void write(short codeUnit); method in interface:CodeOutput
31 public void write(short u0, short u1); method in interface:CodeOutput
36 public void write(short u0, short u1, short u2); method in interface:CodeOutput
41 public void write(short u0, short u1, short u2, short u3); method in interface:CodeOutput
46 public void write(short u0, short u1, short u2, short u3, short u4); method in interface:CodeOutput
61 public void write(byte[] data); method in interface:CodeOutput
66 public void write(short[] data); method in interface:CodeOutput
71 public void write(int[] data); method in interface:CodeOutput
76 public void write(long[] data); method in interface:CodeOutput
ShortArrayCodeOutput.java 24 /** array to write to */
57 public void write(short codeUnit) { method in class:ShortArrayCodeOutput
63 public void write(short u0, short u1) { method in class:ShortArrayCodeOutput
64 write(u0);
65 write(u1);
69 public void write(short u0, short u1, short u2) { method in class:ShortArrayCodeOutput
70 write(u0);
71 write(u1);
72 write(u2);
76 public void write(short u0, short u1, short u2, short u3) method in class:ShortArrayCodeOutput
84 public void write(short u0, short u1, short u2, short u3, short u4) { method in class:ShortArrayCodeOutput
94 write((short) value); method
95 write((short) (value >> 16)); method
100 write((short) value); method
101 write((short) (value >> 16)); method
102 write((short) (value >> 32)); method
103 write((short) (value >> 48)); method
107 public void write(byte[] data) { method in class:ShortArrayCodeOutput
116 write((short) value); method
122 write((short) value); method
127 public void write(short[] data) { method in class:ShortArrayCodeOutput
134 public void write(int[] data) { method in class:ShortArrayCodeOutput
141 public void write(long[] data) { method in class:ShortArrayCodeOutput
    [all...]
  /external/v8/
genmakefiles.py 29 # Write a makefile in the simpler format used by v8_libplatform and
36 out.write(_makefileCommonHeader(module_name))
37 out.write('LOCAL_MODULE_CLASS := STATIC_LIBRARIES\n')
39 out.write('LOCAL_SRC_FILES := \\\n')
41 out.write(_makefileSources(sources))
43 out.write('LOCAL_C_INCLUDES := \\\n')
44 out.write('\t$(LOCAL_PATH)/src \\\n')
45 out.write('\t$(LOCAL_PATH)/include\n')
47 out.write('include $(BUILD_STATIC_LIBRARY)\n')
54 out.write(_makefileCommonHeader('v8mkpeephole')
    [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/min_freq 1525
22 write $cpubw/bw_hwmon/mbps_zones "3143 5859 11863 13763"
23 write $cpubw/bw_hwmon/sample_ms 4
24 write $cpubw/bw_hwmon/io_percent 34
25 write $cpubw/bw_hwmon/hist_memory 20
26 write $cpubw/bw_hwmon/hyst_length 10
27 write $cpubw/bw_hwmon/low_power_ceil_mbps
    [all...]
  /external/javassist/sample/evolve/sample/evolve/
WebPage.java 13 out.write("<H2>Current Time:</H2>");
15 out.write("<CENTER><H3><FONT color=\"blue\">");
16 out.write(c.getTime().toString());
17 out.write("</FONT></H3></CENTER><HR>");
18 out.write("<P><A HREF=\"demo.html\">Return to the home page.</A>");
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
NullWriter.java 44 * @param idx The character to write
46 public void write(int idx) { method in class:NullWriter
52 * @param chr The characters to write
54 public void write(char[] chr) { method in class:NullWriter
60 * @param chr The characters to write
62 * @param end The number of characters to write
64 public void write(char[] chr, int st, int end) { method in class:NullWriter
70 * @param str The string to write
72 public void write(String str) { method in class:NullWriter
78 * @param str The string to write
82 public void write(String str, int st, int end) { method in class:NullWriter
    [all...]
  /external/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /device/google/marlin/
init.power.sh 6 function write() { function
18 write $cpubw/governor "bw_hwmon"
19 write $cpubw/polling_interval 50
20 write $cpubw/min_freq 1525
21 write $cpubw/bw_hwmon/mbps_zones "1525 5195 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
    [all...]
  /external/selinux/libsepol/tests/policies/test-expander/
user-module.conf 4 class file {read write};
  /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...]
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 46 * [Print]FileWriter to write the XML to. Call the {@link #begin()} or
67 * @param out the FileWriter to write the XML to
76 * @param out the FileWriter to write the XML to
87 * Write <em>unescaped</em> text into the XML file. To write
89 * @param s the text to write. This String will not be escaped.
91 public void write(String s) throws IOException { method in class:XMLWriter
92 m_out.write(s);
96 * Write <em>unescaped</em> text into the XML file, followed by
97 * a newline. To write escaped text, use the {@link #content(String)
    [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');

Completed in 1797 milliseconds

1 2 3 4 5 6 7 8 91011>>