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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/manual-tests/resources/
write-after-open-popup.html 3 FAIL: document.write should clear this text.
Default-port-frame-contents.html 1 My URL is: <script>document.write(document.URL);</script>
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
BERConstructedSequence.java 20 out.write(SEQUENCE | CONSTRUCTED);
21 out.write(0x80);
29 out.write(0x00);
30 out.write(0x00);
DEROutputStream.java 30 write((byte)(size | 0x80)); method
34 write((byte)(length >> i)); method
39 write((byte)length); method
48 write(tag);
50 write(bytes);
56 write(NULL);
57 write(0x00);
BERSequence.java 42 out.write(SEQUENCE | CONSTRUCTED);
43 out.write(0x80);
51 out.write(0x00);
52 out.write(0x00);
  /frameworks/base/sax/java/android/sax/
package.html 3 A framework that makes it easy to write efficient and robust SAX handlers.
  /bionic/libc/arch-arm/syscalls/
write.S 5 .type write, #function
6 .globl write
10 write: label
  /packages/apps/IM/src/com/android/im/imps/
XmlPrimitiveSerializer.java 54 writer.write('<');
55 writer.write(element.getTagName());
60 writer.write(' ');
61 writer.write(entry.getKey());
62 writer.write("=\"");
64 writer.write('"');
69 writer.write('>');
72 writer.write("</");
73 writer.write(element.getTagName());
74 writer.write('>');
    [all...]
  /packages/apps/Email/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...]
ProxyOutputStream.java 45 * Invokes the delegate's <code>write(int)</code> method.
46 * @param idx the byte to write
49 public void write(int idx) throws IOException { method in class:ProxyOutputStream
50 out.write(idx);
54 * Invokes the delegate's <code>write(byte[])</code> method.
55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException { method in class:ProxyOutputStream
59 out.write(bts);
63 * Invokes the delegate's <code>write(byte[])</code> method.
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException { method in class:ProxyOutputStream
    [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...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/io/
DigestOutputStream.java 22 public void write(int b) method in class:DigestOutputStream
26 out.write(b);
29 public void write( method in class:DigestOutputStream
36 out.write(b, off, len);
MacOutputStream.java 22 public void write(int b) method in class:MacOutputStream
26 out.write(b);
29 public void write( method in class:MacOutputStream
36 out.write(b, off, len);
  /external/proguard/src/proguard/io/
package.html 2 This package contains classes to read and write files, optionally wrapped in
  /external/proguard/src/proguard/
package.html 3 ProGuard can read jar files, shrink and obfuscate them, and write out the
  /external/webkit/WebCore/manual-tests/
write-after-open.html 9 w.document.write("PASS: document.write after window.open(\"\", ...) worked.");
14 w.document.write("PASS: document.write after window.open(\"\", ...) worked.");
19 w.document.write("PASS: document.write after window.open(\"about:blank\", ...) worked.");
24 w.document.write("PASS: document.write after window.open(\"about:blank\", ...) worked.");
28 w = window.open("resources/write-after-open-popup.html", windowName + i++, windowArgs);
29 w.document.write("PASS: document.write after window.open(\"resources/write-after-open-popup.html\", ...) worked.")
    [all...]
  /frameworks/base/awt/javax/imageio/metadata/
package.html 4 This package contains classes which allows to read and write describing metadata of image files.
  /external/clearsilver/python/examples/base/
PassSGMLParser.py 2 ## deja-vu batman, didn't I write this before?
24 self.write(data)
26 def write (self, data): member in class:PassSGMLParser
27 return self.fp.write(data)
32 self.write ("<%s>" % tag)
34 self.write ("<" + tag)
36 self.write (" " + name + '=' + '"' + value + '"')
37 self.write (">")
41 self.write ("</%s>" % tag)
57 self.write ("&%s;" % ref
    [all...]
  /external/webkit/LayoutTests/storage/
multiple-transactions-on-different-handles-expected.txt 3 db1 write statement succeeded
6 db2 write statement succeeded
  /dalvik/libcore/archive/src/main/java/java/util/zip/
GZIPOutputStream.java 24 * The {@code GZIPOutputStream} class is used to write data to a stream in the
35 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to
39 * the {@code OutputStream} to write data to.
48 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to
53 * the {@code OutputStream} to write to.
62 out.write(Deflater.DEFLATED);
63 out.write(0); // flags
65 out.write(0); // extra flags
66 out.write(0); // operating system
84 * Write up to nbytes of data from the given buffer, starting at offset off
88 public void write(byte[] buffer, int off, int nbytes) throws IOException { method in class:GZIPOutputStream
    [all...]
  /development/tools/axl/
axl.py 35 def write(self, data): member in class:BaseProtocol
36 self.log("BaseProtocol.write()", len(data), data)
37 return self.transport.write(data)
50 self.write("HTTP/1.1 200 OK\r\n")
51 self.write("Content-Length: %d\r\n\r\n" % len(response))
53 self.write(response)
78 self.write("welcome to the jungle baby\r\n")
85 self.write("HTTP/1.1 200 OK\r\n")
86 self.write("Cache-Contr")
95 self.write("HTTP/1.1 200 OK\r\n"
    [all...]
  /frameworks/base/tools/aidl/
AST.h 30 // Write the modifiers that are set in both mod and mask
39 virtual void Write(FILE* to) = 0;
45 virtual void Write(FILE* to) = 0;
54 virtual void Write(FILE* to);
70 void Write(FILE* to);
83 void Write(FILE* to);
98 virtual void Write(FILE* to);
104 virtual void Write(FILE* to) = 0;
113 virtual void Write(FILE* to);
125 virtual void Write(FILE* to)
    [all...]
  /cts/tools/host/src/com/android/cts/
CUIOutputStream.java 52 * Write the buffer with given offset and length.
56 * @param len The length in byte to write.
58 static public void write(byte[] buf, int off, int len) { method in class:CUIOutputStream
59 sOutput.write(buf, off, len);
63 * Write a byte.
65 * @param c The byte to write.
67 static public void write(int c) { method in class:CUIOutputStream
68 sOutput.write(c);
72 * Flush the write buffer.
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
FieldSourcer.java 45 mOutput.write("@%s", desc);
50 mOutput.write("%s /* non-standard attribute */ ", attr.type);
54 // Need to write type and field name after the annotations and attributes.
57 as.write(mAccess, AccessSourcer.IS_FIELD);
60 mOutput.write(" %s", Type.getType(mDesc).getClassName());
62 mOutput.write(" ");
66 mOutput.write(sigSourcer.toString());
69 mOutput.write(" %s", mName);
71 mOutput.write(";\n");

Completed in 279 milliseconds

1 2 3 4 5 6 7 8 91011>>