Searched defs:write (Results 401 - 425 of 721) sorted by relevance

<<11121314151617181920>>

/external/freetype/src/gzip/
H A Dinfutil.h57 Bytef *write; /* window write pointer */ member in struct:inflate_blocks_state
68 #define UPDOUT {s->write=q;}
79 #define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
/external/freetype/src/pshinter/
H A Dpshglob.c664 PSH_Width write = dim->stdw.widths; local
667 write->org = priv->standard_width[0];
668 write++;
673 write->org = *read;
674 write++;
684 PSH_Width write = dim->stdw.widths; local
687 write->org = priv->standard_height[0];
688 write++;
692 write->org = *read;
693 write
[all...]
/external/freetype/src/smooth/
H A Dftsmooth.c342 FT_Byte* write = bitmap->buffer; local
348 ft_memcpy( write, read, pitch );
349 write += pitch;
351 ft_memcpy( write, read, pitch );
352 write += pitch;
354 ft_memcpy( write, read, pitch );
355 write += pitch;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DDecodeJob.java264 public boolean write(File file) { method in class:DecodeJob.SourceWriter
272 Log.d(TAG, "Failed to find file to write to disk cache", e);
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONArray.java933 public Writer write(Writer writer) throws JSONException { method in class:JSONArray
938 writer.write('[');
942 writer.write(',');
946 ((JSONObject)v).write(writer);
948 ((JSONArray)v).write(writer);
950 writer.write(JSONObject.valueToString(v));
954 writer.write(']');
/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java131 * @param from the character sequence to write
134 * @deprecated Use {@link CharSink#write(CharSequence)} instead. This method
138 public static <W extends Appendable & Closeable> void write(CharSequence from, method in class:CharStreams
140 asCharSink(to).write(from);
168 * @param to the object to write to
185 * @param to the object to write to
450 public void write(int c) { method in class:CharStreams.NullWriter
454 public void write(char[] cbuf) { method in class:CharStreams.NullWriter
459 public void write(char[] cbuf, int off, int len) { method in class:CharStreams.NullWriter
464 public void write(Strin method in class:CharStreams.NullWriter
469 public void write(String str, int off, int len) { method in class:CharStreams.NullWriter
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DDataOutputCompressor.java40 public void write(byte[] b) throws IOException { method in class:DataOutputCompressor
41 dataOutput.write(b);
44 public void write(byte[] b, int off, int len) throws IOException { method in class:DataOutputCompressor
45 dataOutput.write(b, off, len);
48 public void write(int b) throws IOException { method in class:DataOutputCompressor
49 dataOutput.write(b);
138 while (true) { // write sequence of 7 bits, with top bit = 1 for continuation
/external/javassist/src/main/javassist/bytecode/
H A DMethodInfo.java530 void write(DataOutputStream out) throws IOException { method in class:MethodInfo
/external/jetty/src/java/org/eclipse/jetty/http/gzip/
H A DAbstractCompressedStream.java88 b.write(_bOut.getBuf(),0,_bOut.size());
198 * @see java.io.OutputStream#write(int)
201 public void write(int b) throws IOException method in class:AbstractCompressedStream
204 _out.write(b);
209 * @see java.io.OutputStream#write(byte[])
212 public void write(byte b[]) throws IOException method in class:AbstractCompressedStream
215 _out.write(b);
220 * @see java.io.OutputStream#write(byte[], int, int)
223 public void write(byte b[], int off, int len) throws IOException method in class:AbstractCompressedStream
226 _out.write(
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DIO.java75 Writer write; field in class:IO.Job
82 this.write=null;
84 Job(Reader read,Writer write) argument
89 this.write=write;
102 copy(read,write,-1);
110 if (write!=null)
111 write.close();
196 out.write(buffer,0,len);
206 out.write(buffe
487 public void write(byte[]b){} method in class:IO.NullOS
489 public void write(byte[]b,int i,int l){} method in class:IO.NullOS
491 public void write(int b){} method in class:IO.NullOS
535 public void write(char[]b){} method in class:IO.NullWrite
537 public void write(char[]b,int o,int l){} method in class:IO.NullWrite
539 public void write(int b){} method in class:IO.NullWrite
541 public void write(String s){} method in class:IO.NullWrite
543 public void write(String s,int o,int l){} method in class:IO.NullWrite
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
H A DProperties.java315 public void write(JmeExporter ex) throws IOException { method in class:Properties
317 oc.write(name, "name", DEFAULT_NAME);
318 oc.write(type, "type", 0);
319 oc.write(subType, "subtype", 0);
320 oc.write(description, "description", null);
323 oc.write((String) value, "value", null);
326 oc.write((Integer) value, "value", 0);
329 oc.write((Float) value, "value", 0);
334 oc.write((int[]) value, "value", null);
337 oc.write((floa
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
H A DPhysicsCollisionObject.java298 public void write(JmeExporter e) throws IOException { method in class:PhysicsCollisionObject
300 capsule.write(collisionGroup, "collisionGroup", 0x00000001);
301 capsule.write(collisionGroupsMask, "collisionGroupsMask", 0x00000001);
302 capsule.write(debugShape, "debugShape", null);
303 capsule.write(collisionShape, "collisionShape", null);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DHingeJoint.java140 public void write(JmeExporter ex) throws IOException { method in class:HingeJoint
141 super.write(ex);
143 capsule.write(axisA, "axisA", new Vector3f());
144 capsule.write(axisB, "axisB", new Vector3f());
146 capsule.write(angularOnly, "angularOnly", false);
148 capsule.write(getLowerLimit(), "lowerLimit", 1e30f);
149 capsule.write(getUpperLimit(), "upperLimit", -1e30f);
151 capsule.write(biasFactor, "biasFactor", 0.3f);
152 capsule.write(relaxationFactor, "relaxationFactor", 1f);
153 capsule.write(limitSoftnes
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
H A DPhysicsCharacter.java282 public void write(JmeExporter e) throws IOException { method in class:PhysicsCharacter
283 super.write(e);
285 capsule.write(stepHeight, "stepHeight", 1.0f);
286 capsule.write(getGravity(), "gravity", 9.8f * 3);
287 capsule.write(getMaxSlope(), "maxSlope", 1.0f);
288 capsule.write(fallSpeed, "fallSpeed", 55.0f);
289 capsule.write(jumpSpeed, "jumpSpeed", 10.0f);
290 capsule.write(upAxis, "upAxis", 1);
291 capsule.write(getCcdMotionThreshold(), "ccdMotionThreshold", 0);
292 capsule.write(getCcdSweptSphereRadiu
[all...]
H A DPhysicsGhostObject.java282 public void write(JmeExporter e) throws IOException { method in class:PhysicsGhostObject
283 super.write(e);
285 capsule.write(getPhysicsLocation(new Vector3f()), "physicsLocation", new Vector3f());
286 capsule.write(getPhysicsRotationMatrix(new Matrix3f()), "physicsRotation", new Matrix3f());
287 capsule.write(getCcdMotionThreshold(), "ccdMotionThreshold", 0);
288 capsule.write(getCcdSweptSphereRadius(), "ccdSweptSphereRadius", 0);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimControl.java347 public void write(JmeExporter ex) throws IOException { method in class:AnimControl
348 super.write(ex);
350 oc.write(skeleton, "skeleton", null);
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java835 public void write(JmeExporter e) throws IOException { method in class:BoundingSphere
836 super.write(e);
838 e.getCapsule(this).write(radius, "radius", 0);
840 logger.logp(Level.SEVERE, this.getClass().toString(), "write(JMEExporter)", "Exception", ex);
H A DBoundingVolume.java320 public void write(JmeExporter e) throws IOException { method in class:BoundingVolume
321 e.getCapsule(this).write(center, "center", Vector3f.ZERO);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DCinematic.java131 public void write(JmeExporter ex) throws IOException { method in class:Cinematic
132 super.write(ex);
137 oc.write(timeLine, "timeLine", null);
H A DMotionPath.java153 public void write(JmeExporter ex) throws IOException { method in class:MotionPath
155 oc.write(spline, "spline", null);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DAbstractCinematicEvent.java253 public void write(JmeExporter ex) throws IOException { method in class:AbstractCinematicEvent
255 oc.write(playState, "playState", PlayState.Stopped);
256 oc.write(speed, "speed", 1);
257 oc.write(initialDuration, "initalDuration", 10);
258 oc.write(loopMode, "loopMode", LoopMode.DontLoop);
H A DMotionTrack.java197 public void write(JmeExporter ex) throws IOException { method in class:MotionTrack
198 super.write(ex);
200 oc.write(lookAt, "lookAt", Vector3f.ZERO);
201 oc.write(upVector, "upVector", Vector3f.UNIT_Y);
202 oc.write(rotation, "rotation", Quaternion.IDENTITY);
203 oc.write(directionType, "directionType", Direction.None);
204 oc.write(path, "path", null);
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTree.java465 public void write(JmeExporter ex) throws IOException { method in class:BIHTree
467 oc.write(mesh, "mesh", null);
468 oc.write(root, "root", null);
469 oc.write(maxTrisPerNode, "tris_per_node", 0);
470 oc.write(pointData, "points", null);
471 oc.write(triIndices, "indices", null);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacter.java156 public void write(JmeExporter ex) throws IOException { method in class:BitmapCharacter
158 oc.write(c, "c", 0);
159 oc.write(x, "x", 0);
160 oc.write(y, "y", 0);
161 oc.write(width, "width", 0);
162 oc.write(height, "height", 0);
163 oc.write(xOffset, "xOffset", 0);
164 oc.write(yOffset, "yOffset", 0);
165 oc.write(xAdvance, "xAdvance", 0);
177 oc.write(second
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DTechniqueDef.java366 public void write(JmeExporter ex) throws IOException{ method in class:TechniqueDef
368 oc.write(name, "name", null);
369 oc.write(vertName, "vertName", null);
370 oc.write(fragName, "fragName", null);
371 oc.write(shaderLang, "shaderLang", null);
372 oc.write(presetDefines, "presetDefines", null);
373 oc.write(lightMode, "lightMode", LightMode.Disable);
374 oc.write(shadowMode, "shadowMode", ShadowMode.Disable);
375 oc.write(renderState, "renderState", null);
376 oc.write(usesShader
[all...]

Completed in 1693 milliseconds

<<11121314151617181920>>