/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
CompactQuaternionArray.java | 79 public void read(JmeImporter im) throws IOException {
method in class:CompactQuaternionArray
|
CompactVector3Array.java | 79 public void read(JmeImporter im) throws IOException {
method in class:CompactVector3Array
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
LowPassFilter.java | 88 public void read(JmeImporter im) throws IOException{ method in class:LowPassFilter 89 super.read(im);
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
EmitterPointShape.java | 93 public void read(JmeImporter im) throws IOException { method in class:EmitterPointShape
|
/external/jmonkeyengine/engine/src/core/com/jme3/light/ |
DirectionalLight.java | 98 public void read(JmeImporter im) throws IOException { method in class:DirectionalLight 99 super.read(im);
|
/external/jmonkeyengine/engine/src/core/com/jme3/shader/ |
ShaderVariable.java | 62 public void read(JmeImporter im) throws IOException{ method in class:ShaderVariable
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
ConeCollisionShape.java | 57 public void read(JmeImporter im) throws IOException { method in class:ConeCollisionShape 58 super.read(im);
|
CylinderCollisionShape.java | 93 public void read(JmeImporter im) throws IOException { method in class:CylinderCollisionShape 94 super.read(im);
|
SimplexCollisionShape.java | 62 public void read(JmeImporter im) throws IOException { method in class:SimplexCollisionShape 63 super.read(im);
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/ |
Point2PointJoint.java | 99 public void read(JmeImporter im) throws IOException { method in class:Point2PointJoint 100 super.read(im);
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
AbstractKernel.java | 97 public Envelope read() throws InterruptedException method in class:AbstractKernel
|
/external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/ |
GuiTrack.java | 114 public void read(JmeImporter im) throws IOException { method in class:GuiTrack 115 super.read(im);
|
/external/llvm/lib/IR/ |
GCOV.cpp | 10 // GCOV implements the interface to read and write coverage files that use 40 /// read - Read GCOV buffer. 41 bool GCOVFile::read(GCOVBuffer &Buffer) { function in class:GCOVFile 57 if (!GFun || !GFun->read(Buffer, Format)) 88 /// read - Read a aunction from the buffer. Return false if buffer cursor 90 bool GCOVFunction::read(GCOVBuffer &Buff, GCOV::GCOVFormat Format) { function in class:GCOVFunction 115 // read blocks. 125 // read edges [all...] |
/external/marisa-trie/lib/marisa/ |
trie.cc | 49 read(reader); 54 read(reader); 57 void Trie::read(int fd) { function in class:marisa::Trie 59 read(reader); 62 void Trie::read(std::istream &stream) { function in class:marisa::Trie 64 read(reader); 67 void Trie::read(Reader &reader) { function in class:marisa::Trie 69 temp.louds_.read(reader); 70 temp.labels_.read(reader); 71 temp.terminal_flags_.read(reader) [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
trie.cc | 49 read(reader); 54 read(reader); 57 void Trie::read(int fd) { function in class:marisa_alpha::Trie 59 read(reader); 62 void Trie::read(std::istream &stream) { function in class:marisa_alpha::Trie 64 read(reader); 67 void Trie::read(Reader &reader) { function in class:marisa_alpha::Trie 69 temp.louds_.read(reader); 70 temp.labels_.read(reader); 71 temp.terminal_flags_.read(reader) [all...] |
/external/mesa3d/src/gallium/auxiliary/rbug/ |
rbug_connection.c | 76 size_t read = 0; local 93 uint8_t *ptr = ((uint8_t*)data) + read; 94 ret = u_socket_recv(c->socket, ptr, length - read); 101 read += ret; 102 } while(read < length);
|
/external/mesa3d/src/gallium/state_trackers/dri/common/ |
dri_context.c | 220 struct dri_drawable *read = dri_drawable(driReadPriv); local 240 read->texture_stamp = driReadPriv->lastStamp - 1; 243 ctx->stapi->make_current(ctx->stapi, ctx->st, &draw->base, &read->base);
|
/external/mockito/src/org/mockito/internal/util/reflection/ |
InstanceField.java | 15 * Contains the instance reference on which the field can be read adn write. 35 * Safely read the field. 40 public Object read() { method in class:InstanceField 41 return reader().read();
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/ |
ScalingList.java | 23 import com.googlecode.mp4parser.h264.read.CAVLCReader; 57 public static ScalingList read(CAVLCReader is, int sizeOfScalingList) method in class:ScalingList
|
/external/proguard/src/proguard/io/ |
ClassReader.java | 34 * Class files are read as ProgramClass objects or LibraryClass objects, 71 public void read(DataEntry dataEntry) throws IOException method in class:ClassReader
|
/external/smack/src/com/kenai/jbosh/ |
StaticBody.java | 79 * @param inStream stream to read message XML from 89 int read; local 91 read = inStream.read(buffer); 92 if (read > 0) { 93 byteOut.write(buffer, 0, read); 95 } while (read >= 0); 98 "Could not read body data", iox));
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Input.java | 35 * bytes read from this instance. 60 * @return the byte value that was read 67 * @return the short value that was read, as an int 74 * @return the unsigned int value that was read 81 * @return the long value that was read 91 * @return the integer value that was read 100 * @return the integer value that was read 118 * @param bytes non-null; the buffer to read the data into 121 * @param length >= 0; number of bytes to read 123 public void read(byte[] bytes, int offset, int length) method in interface:Input 131 public void read(byte[] bytes); method in interface:Input [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
ByteBuffer.java | 73 * @throws IOException If the stream cannot be read. 82 int read; local 83 while ((read = in.read(this.buffer, this.length, chunk)) > 0) 85 this.length += read; 86 if (read == chunk)
|
/frameworks/av/cmds/stagefright/ |
SineSource.cpp | 60 status_t SineSource::read( function in class:android::SineSource
|
/frameworks/av/libvideoeditor/lvpp/ |
DummyVideoSource.cpp | 118 status_t DummyVideoSource::read( function in class:android::DummyVideoSource 122 ALOGV("read: E"); 136 ALOGV("read: EOS reached"); 149 ALOGV("read: jpg 1st frame timeUs = %lld, begin cut time = %ld", 160 ALOGV("read: jpg frame timeUs = %lld", mFrameTimeUs);
|