HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 101 - 125 of 1637) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/tools/gyp/tools/emacs/
gyp-tests.el 24 (defun read-golden-sample (filename)
27 (read (current-buffer))))
48 (let ((golden (read-golden-sample sample))
  /external/flac/include/FLAC/
callback.h 90 /** Signature for the read callback.
94 * \param ptr The address of the read buffer.
95 * \param size The size of the records to be read.
96 * \param nmemb The number of records to be read.
99 * The number of records read.
170 FLAC__IOCallback_Read read; member in struct:__anon18273
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelInputStream.java 50 public int read(byte[] b, int off, int len) throws IOException method in class:ChannelInputStream
75 public int read(byte[] b) throws IOException method in class:ChannelInputStream
77 return read(b, 0, b.length);
81 public int read() throws IOException method in class:ChannelInputStream
83 /* Yes, this stream is pure and unbuffered, a single byte read() is slow */
87 int ret = read(b, 0, 1);
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.java 26 * An {@link InputStream} that counts the number of bytes read.
38 * Wraps another input stream, counting the number of bytes read.
46 /** Returns the number of bytes read. */
51 @Override public int read() throws IOException { method in class:CountingInputStream
52 int result = in.read();
59 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:CountingInputStream
60 int result = in.read(b, off, len);
LimitInputStream.java 27 * An InputStream that limits the number of bytes which can be read.
39 * Wraps another input stream, limiting the number of bytes which can be read.
42 * @param limit the maximum number of bytes to be read
61 @Override public int read() throws IOException { method in class:LimitInputStream
66 int result = in.read();
73 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:LimitInputStream
79 int result = in.read(b, off, len);
MultiInputStream.java 78 @Override public int read() throws IOException { method in class:MultiInputStream
82 int result = in.read();
85 return read();
90 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:MultiInputStream
94 int result = in.read(b, off, len);
97 return read(b, off, len);
110 if (read() == -1) {
MultiReader.java 51 @Override public int read(char cbuf[], int off, int len) throws IOException { method in class:MultiReader
55 int result = current.read(cbuf, off, len);
58 return read(cbuf, off, len);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java 73 public void read(JmeImporter im) throws IOException { method in class:BoxCollisionShape
74 super.read(im);
ConeCollisionShape.java 55 public void read(JmeImporter im) throws IOException { method in class:ConeCollisionShape
56 super.read(im);
CylinderCollisionShape.java 91 public void read(JmeImporter im) throws IOException { method in class:CylinderCollisionShape
92 super.read(im);
PlaneCollisionShape.java 47 public void read(JmeImporter im) throws IOException { method in class:PlaneCollisionShape
48 super.read(im);
SimplexCollisionShape.java 62 public void read(JmeImporter im) throws IOException { method in class:SimplexCollisionShape
63 super.read(im);
SphereCollisionShape.java 72 public void read(JmeImporter im) throws IOException { method in class:SphereCollisionShape
73 super.read(im);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
ChildCollisionShape.java 40 public void read(JmeImporter im) throws IOException { method in class:ChildCollisionShape
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioKey.java 60 * be read entirely but not decoded, allowing features such as
109 * be read entirely but not decoded, allowing features such as
130 public void read(JmeImporter im) throws IOException{ method in class:AudioKey
131 super.read(im);
Filter.java 55 public void read(JmeImporter im) throws IOException { method in class:Filter
56 // nothing to read
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
EmptyParticleInfluencer.java 22 public void read(JmeImporter im) throws IOException { method in class:EmptyParticleInfluencer
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Kerning.java 69 public void read(JmeImporter im) throws IOException { method in class:Kerning
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
ColorOverlayFilter.java 106 public void read(JmeImporter im) throws IOException { method in class:ColorOverlayFilter
107 super.read(im);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java 73 public void read(JmeImporter im) throws IOException { method in class:BoxCollisionShape
74 super.read(im);
PlaneCollisionShape.java 46 public void read(JmeImporter im) throws IOException { method in class:PlaneCollisionShape
47 super.read(im);
SphereCollisionShape.java 72 public void read(JmeImporter im) throws IOException { method in class:SphereCollisionShape
73 super.read(im);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Kernel.java 48 * A marker envelope returned from read() that indicates that
87 public Envelope read() throws InterruptedException; method in interface:Kernel
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
LodDistanceCalculatorFactory.java 74 public void read(JmeImporter im) throws IOException { method in class:LodDistanceCalculatorFactory
LodPerspectiveCalculatorFactory.java 69 public void read(JmeImporter im) throws IOException { method in class:LodPerspectiveCalculatorFactory

Completed in 148 milliseconds

1 2 3 45 6 7 8 91011>>