Searched defs:write (Results 1 - 25 of 673) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1560.js49 function write(a, i) { a[i] = "bazinga!"; } function
59 for (var i = 0; i < 5; i++) write(mkArray(), 0);
60 %OptimizeFunctionOnNextCall(write);
61 write(mkCOWArray(), 0);
65 %DeoptimizeFunction(write);
67 test([mkArray, mkNumberDictionary], write);
68 test([mkArray, mkNumberDictionary, mkCOWArray], write);
/external/v8/test/mjsunit/regress/
H A Dregress-1560.js49 function write(a, i) { a[i] = "bazinga!"; } function
59 for (var i = 0; i < 5; i++) write(mkArray(), 0);
60 %OptimizeFunctionOnNextCall(write);
61 write(mkCOWArray(), 0);
65 %DeoptimizeFunction(write);
67 test([mkArray, mkNumberDictionary], write);
68 test([mkArray, mkNumberDictionary, mkCOWArray], write);
/external/apache-http/src/org/apache/http/io/
H A DHttpMessageWriter.java50 void write(HttpMessage message) method in interface:HttpMessageWriter
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessable.java17 public void write(OutputStream out) method in interface:CMSProcessable
H A DCMSAbsentContent.java34 public void write(OutputStream zOut) method in class:CMSAbsentContent
H A DNullOutputStream.java12 public void write(byte[] buf) method in class:NullOutputStream
18 public void write(byte[] buf, int off, int len) method in class:NullOutputStream
24 public void write(int b) throws IOException method in class:NullOutputStream
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DPacketListener.java13 void write(String packet); method in interface:PacketListener
/external/smack/src/org/jivesoftware/smack/util/
H A DWriterListener.java39 public abstract void write(String str); method in interface:WriterListener
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileWriter.h46 // Only one write or one truncate operation can be in progress at a time.
48 virtual void write(long long position, const WebURL& blobURL) { } // DEPRECATED function in class:blink::WebFileWriter
49 virtual void write(long long position, const WebString& blobUUID) { } function in class:blink::WebFileWriter
52 // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
53 // Do not call cancel when there is no write or truncate in progress.
/external/chromium_org/third_party/jinja2/
H A Dmeta.py25 def write(self, x): member in class:TrackingCodeGenerator
26 """Don't write."""
/external/chromium_org/third_party/npapi/npspy/common/
H A Dlogfile.cpp75 DWORD CLogFile::write(const std::string& buf) function in class:CLogFile
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutexset_test.cc18 static void Expect(const MutexSet &mset, uptr i, u64 id, bool write, u64 epoch, argument
22 EXPECT_EQ(write, d.write);
/external/guava/guava/src/com/google/common/io/
H A DNullOutputStream.java32 @Override public void write(int b) { method in class:NullOutputStream
36 @Override public void write(byte[] b, int off, int len) { method in class:NullOutputStream
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DSavable.java44 void write(JmeExporter ex) throws IOException; method in interface:Savable
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DConnector.java55 * or write will fail with an exception.
82 public void write( ByteBuffer data ); method in interface:Connector
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeWriterVariable.java23 public static void write(long v, ByteBuffer bb, int bytes) { method in class:IsoTypeWriterVariable
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DPackageWriter.java26 public void write(Movie qualities) throws IOException; method in interface:PackageWriter
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DBitstreamElement.java28 public abstract void write(OutputStream out) throws IOException; method in class:BitstreamElement
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DAbstractOutputStream.java25 * <p>Since a single socket's output stream may be used to write multiple HTTP
31 @Override public final void write(int data) throws IOException { method in class:AbstractOutputStream
32 write(new byte[] { (byte) data });
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs75 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs73 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringWriter.java103 * 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(Strin method in class:Support_StringWriter
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractMessageWriter.java70 public void write( method in class:AbstractMessageWriter
H A DContentLengthOutputStream.java57 * write operations will be ignored.
72 * the stream. Subsequent write operations will be ignored.
104 public void write(byte[] b, int off, int len) throws IOException { method in class:ContentLengthOutputStream
106 throw new IOException("Attempted write to closed stream.");
113 this.out.write(b, off, len);
118 public void write(byte[] b) throws IOException { method in class:ContentLengthOutputStream
119 write(b, 0, b.length);
122 public void write(int b) throws IOException { method in class:ContentLengthOutputStream
124 throw new IOException("Attempted write to closed stream.");
127 this.out.write(
[all...]
H A DIdentityOutputStream.java82 public void write(byte[] b, int off, int len) throws IOException { method in class:IdentityOutputStream
84 throw new IOException("Attempted write to closed stream.");
86 this.out.write(b, off, len);
89 public void write(byte[] b) throws IOException { method in class:IdentityOutputStream
90 write(b, 0, b.length);
93 public void write(int b) throws IOException { method in class:IdentityOutputStream
95 throw new IOException("Attempted write to closed stream.");
97 this.out.write(b);

Completed in 9523 milliseconds

1234567891011>>