HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 326 - 350 of 1945) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/dex/code/form/
Form51l.java 100 write(out, opcodeUnit(insn, regs.get(0).getReg()), value); method
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
FieldSourcer.java 48 mOutput.write("@%s", desc);
54 mOutput.write("%s /* non-standard attribute */ ", attr.type);
59 // Need to write type and field name after the annotations and attributes.
62 as.write(mAccess, AccessSourcer.IS_FIELD);
65 mOutput.write(" %s", Type.getType(mDesc).getClassName());
67 mOutput.write(" ");
71 mOutput.write(sigSourcer.toString());
74 mOutput.write(" %s", mName);
76 mOutput.write(";\n");
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
main.py 113 self.stdout.write("\nBye.\n")
174 def write(self, options, text): member in class:_Main
176 self.stdout.write(text)
180 self.write(options, text + '\n')
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CPPTarget.java 93 generator.write(headerFileST, grammar.name+extName);
ObjCTarget.java 46 generator.write(headerFileST, grammar.name + Grammar.grammarTypeToFileNameSuffix[grammar.type] + extName);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 103 * the non-null array containing characters to write.
107 * maximum number of characters to write
113 public void write(char[] buf, int offset, int count) { method in class:Support_StringWriter
131 * The character to write
135 public void write(int oneChar) { method in class:Support_StringWriter
146 * the non-null String containing the characters to write.
150 public void write(String str) { method in class:Support_StringWriter
162 * the non-null String containing the characters to write.
166 * the number of characters to retrieve and write.
172 public void write(String str, int offset, int count) method in class:Support_StringWriter
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
AbstractMessageWriter.java 70 public void write( method in class:AbstractMessageWriter
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToASCI.java 42 /** The byte stream to write to. */
49 * @param os The byte stream to write to.
57 * Write a portion of an array of characters.
61 * @param length Number of characters to write
67 public void write(char chars[], int start, int length) method in class:WriterToASCI
75 m_os.write(chars[i]);
80 * Write a single character. The character to be written is contained in
90 public void write(int c) throws IOException method in class:WriterToASCI
92 m_os.write(c);
96 * Write a string
102 public void write(String s) throws IOException method in class:WriterToASCI
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringGenerator.java 54 public void write( method in class:BEROctetStringGenerator.BufferedBEROctetStream
67 public void write(byte[] b, int off, int len) throws IOException method in class:BEROctetStringGenerator.BufferedBEROctetStream
DERBMPString.java 142 out.write(BERTags.BMP_STRING);
149 out.write((byte)(c >> 8));
150 out.write((byte)c);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
NullDigest.java 25 bOut.write(in);
30 bOut.write(in, inOff, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 61 out.write(encodingTable[(v >>> 4)]);
62 out.write(encodingTable[v & 0xf]);
124 out.write((b1 << 4) | b2);
180 out.write((b1 << 4) | b2);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java 66 outStr.write(bs, 0, numRead);
83 outStr.write(bs, 0, numRead);
TeeInputStream.java 32 output.write(buf, off, i);
45 output.write(i);
  /external/chromium_org/chrome/installer/mini_installer/
mini_string.cc 56 wchar_t* write = dest; local
58 if ((*write++ = *src++) == L'\0')
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
server.js 7 // Stream encapsulates read/write operations over socket.
30 write: function(output) {
35 socket.write(this.socketId_, outputBuffer, function(writeInfo) {
49 socket.write(this.socketId_, outputBuffer, function(writeInfo) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logtesting.py 60 # constructor should support write() and flush():
63 def write(self, message): member in class:TestLogStream
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
metered_stream.py 90 self.write(txt, now)
94 def write(self, txt, now=None, pid=None): member in class:MeteredStream
108 self._stream.write(msg)
111 self.write(self._ensure_newline(txt), now, pid)
115 self._stream.write(self._erasure(self._last_partial_line))
120 self._stream.write('\n')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler_unittest.py 59 def write(self, data): member in class:WriteConvertingLogger
  /external/chromium_org/third_party/angle/src/libGLESv2/
BinaryStream.h 122 void write(const T *v, size_t num) function in class:gl::BinaryOutputStream
135 void write(const T &v) function in class:gl::BinaryOutputStream
137 write(&v, 1);
140 void write(const std::string &v) function in class:gl::BinaryOutputStream
143 write(length);
145 write(v.c_str(), length);
  /external/chromium_org/third_party/skia/src/svg/
SkSVGElements.cpp 84 void SkSVGElement::write(SkSVGParser& , SkString& ) { function in class:SkSVGElement
SkSVGGradient.cpp 50 SkASSERT(0); // !!! need to write this case
79 void SkSVGGradient::write(SkSVGParser& parser, SkString& baseColor) { function in class:SkSVGGradient
86 f_id.set("mask"); // write out gradient named given name + color (less initial #)
  /external/chromium_org/third_party/tlslite/tlslite/utils/
OpenSSL_RSAKey.py 89 def write(self, password=None): member in class:.OpenSSL_RSAKey
107 return Python_RSAKey(self.n, self.e).write(indent)
Python_RSAKey.py 71 def write(self, indent=''): member in class:Python_RSAKey
94 return Python_RSAKey(self.n, self.e).write(indent)
RSAKey.py 202 """Return True if the write() method accepts a password for use
209 def write(self, password=None): member in class:RSAKey
224 return Python_RSAKey(self.n, self.e).write(indent)

Completed in 773 milliseconds

<<11121314151617181920>>