Searched defs:write (Results 426 - 450 of 721) sorted by relevance

<<11121314151617181920>>

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DColorRGBA.java465 public void write(JmeExporter e) throws IOException { method in class:ColorRGBA
467 capsule.write(r, "r", 0);
468 capsule.write(g, "g", 0);
469 capsule.write(b, "b", 0);
470 capsule.write(a, "a", 0);
H A DSpline.java407 public void write(JmeExporter ex) throws IOException { method in class:Spline
410 oc.write(type, "type", SplineType.CatmullRom);
415 oc.write(list, "segmentsLength", null);
417 oc.write(totalLength, "totalLength", 0);
419 oc.write(curveTension, "curveTension", 0.5f);
420 oc.write(cycle, "cycle", false);
422 oc.write(weights, "weights", null);
423 oc.write(basisFunctionDegree, "basisFunctionDegree", 0);
H A DTriangle.java278 public void write(JmeExporter e) throws IOException { method in class:Triangle
279 e.getCapsule(this).write(pointa, "pointa", Vector3f.ZERO);
280 e.getCapsule(this).write(pointb, "pointb", Vector3f.ZERO);
281 e.getCapsule(this).write(pointc, "pointc", Vector3f.ZERO);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DBatchNode.java329 public void write(JmeExporter ex) throws IOException { method in class:BatchNode
330 super.write(ex);
334 // oc.write(material.getAssetName(), "materialName", null);
336 // oc.write(material, "material", null);
H A DGeometry.java522 public void write(JmeExporter ex) throws IOException { method in class:Geometry
523 super.write(ex);
525 oc.write(mesh, "mesh", null);
527 oc.write(material.getAssetName(), "materialName", null);
529 oc.write(material, "material", null);
530 oc.write(ignoreTransform, "ignoreTransform", false);
H A DNode.java588 public void write(JmeExporter e) throws IOException { method in class:Node
589 super.write(e);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShader.java125 public void write(JmeExporter ex) throws IOException{ method in class:Shader.ShaderSource
127 oc.write(shaderType, "shaderType", null);
128 oc.write(name, "name", null);
129 oc.write(source, "source", null);
130 oc.write(defines, "defines", null);
245 public void write(JmeExporter ex) throws IOException{ method in class:Shader
247 oc.write(language, "language", null);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DBloomFilter.java287 public void write(JmeExporter ex) throws IOException { method in class:BloomFilter
288 super.write(ex);
290 oc.write(glowMode, "glowMode", GlowMode.Scene);
291 oc.write(blurScale, "blurScale", 1.5f);
292 oc.write(exposurePower, "exposurePower", 5.0f);
293 oc.write(exposureCutOff, "exposureCutOff", 0.0f);
294 oc.write(bloomIntensity, "bloomIntensity", 2.0f);
295 oc.write(downSamplingFactor, "downSamplingFactor", 1);
H A DLightScatteringFilter.java221 public void write(JmeExporter ex) throws IOException { method in class:LightScatteringFilter
222 super.write(ex);
224 oc.write(lightPosition, "lightPosition", Vector3f.ZERO);
225 oc.write(nbSamples, "nbSamples", 50);
226 oc.write(blurStart, "blurStart", 0.02f);
227 oc.write(blurWidth, "blurWidth", 0.9f);
228 oc.write(lightDensity, "lightDensity", 1.4f);
229 oc.write(adaptative, "adaptative", true);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
H A DSSAOFilter.java306 public void write(JmeExporter ex) throws IOException { method in class:SSAOFilter
307 super.write(ex);
309 oc.write(sampleRadius, "sampleRadius", 5.1f);
310 oc.write(intensity, "intensity", 1.5f);
311 oc.write(scale, "scale", 0.2f);
312 oc.write(bias, "bias", 0.1f);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryOutputCapsule.java72 public void write(byte value, String name, byte defVal) throws IOException { method in class:BinaryOutputCapsule
76 write(value);
79 public void write(byte[] value, String name, byte[] defVal) method in class:BinaryOutputCapsule
84 write(value);
87 public void write(byte[][] value, String name, byte[][] defVal) method in class:BinaryOutputCapsule
92 write(value);
95 public void write(int value, String name, int defVal) throws IOException { method in class:BinaryOutputCapsule
99 write(value);
102 public void write(int[] value, String name, int[] defVal) method in class:BinaryOutputCapsule
107 write(valu
110 public void write(int[][] value, String name, int[][] defVal) method in class:BinaryOutputCapsule
118 public void write(float value, String name, float defVal) method in class:BinaryOutputCapsule
126 public void write(float[] value, String name, float[] defVal) method in class:BinaryOutputCapsule
134 public void write(float[][] value, String name, float[][] defVal) method in class:BinaryOutputCapsule
142 public void write(double value, String name, double defVal) method in class:BinaryOutputCapsule
150 public void write(double[] value, String name, double[] defVal) method in class:BinaryOutputCapsule
158 public void write(double[][] value, String name, double[][] defVal) method in class:BinaryOutputCapsule
166 public void write(long value, String name, long defVal) throws IOException { method in class:BinaryOutputCapsule
173 public void write(long[] value, String name, long[] defVal) method in class:BinaryOutputCapsule
181 public void write(long[][] value, String name, long[][] defVal) method in class:BinaryOutputCapsule
189 public void write(short value, String name, short defVal) method in class:BinaryOutputCapsule
197 public void write(short[] value, String name, short[] defVal) method in class:BinaryOutputCapsule
205 public void write(short[][] value, String name, short[][] defVal) method in class:BinaryOutputCapsule
213 public void write(boolean value, String name, boolean defVal) method in class:BinaryOutputCapsule
221 public void write(boolean[] value, String name, boolean[] defVal) method in class:BinaryOutputCapsule
229 public void write(boolean[][] value, String name, boolean[][] defVal) method in class:BinaryOutputCapsule
237 public void write(String value, String name, String defVal) method in class:BinaryOutputCapsule
245 public void write(String[] value, String name, String[] defVal) method in class:BinaryOutputCapsule
253 public void write(String[][] value, String name, String[][] defVal) method in class:BinaryOutputCapsule
261 public void write(BitSet value, String name, BitSet defVal) method in class:BinaryOutputCapsule
269 public void write(Savable object, String name, Savable defVal) method in class:BinaryOutputCapsule
277 public void write(Savable[] objects, String name, Savable[] defVal) method in class:BinaryOutputCapsule
285 public void write(Savable[][] objects, String name, Savable[][] defVal) method in class:BinaryOutputCapsule
293 public void write(FloatBuffer value, String name, FloatBuffer defVal) method in class:BinaryOutputCapsule
301 public void write(IntBuffer value, String name, IntBuffer defVal) method in class:BinaryOutputCapsule
309 public void write(ByteBuffer value, String name, ByteBuffer defVal) method in class:BinaryOutputCapsule
317 public void write(ShortBuffer value, String name, ShortBuffer defVal) method in class:BinaryOutputCapsule
437 protected void write(byte value) throws IOException { method in class:BinaryOutputCapsule
445 protected void write(byte[] value) throws IOException { method in class:BinaryOutputCapsule
454 protected void write(byte[][] value) throws IOException { method in class:BinaryOutputCapsule
466 protected void write(int value) throws IOException { method in class:BinaryOutputCapsule
479 protected void write(int[] value) throws IOException { method in class:BinaryOutputCapsule
489 protected void write(int[][] value) throws IOException { method in class:BinaryOutputCapsule
501 protected void write(float value) throws IOException { method in class:BinaryOutputCapsule
510 protected void write(float[] value) throws IOException { method in class:BinaryOutputCapsule
520 protected void write(float[][] value) throws IOException { method in class:BinaryOutputCapsule
532 protected void write(double value) throws IOException { method in class:BinaryOutputCapsule
536 protected void write(double[] value) throws IOException { method in class:BinaryOutputCapsule
546 protected void write(double[][] value) throws IOException { method in class:BinaryOutputCapsule
558 protected void write(long value) throws IOException { method in class:BinaryOutputCapsule
562 protected void write(long[] value) throws IOException { method in class:BinaryOutputCapsule
572 protected void write(long[][] value) throws IOException { method in class:BinaryOutputCapsule
584 protected void write(short value) throws IOException { method in class:BinaryOutputCapsule
595 protected void write(short[] value) throws IOException { method in class:BinaryOutputCapsule
605 protected void write(short[][] value) throws IOException { method in class:BinaryOutputCapsule
617 protected void write(boolean value) throws IOException { method in class:BinaryOutputCapsule
621 protected void write(boolean[] value) throws IOException { method in class:BinaryOutputCapsule
631 protected void write(boolean[][] value) throws IOException { method in class:BinaryOutputCapsule
643 protected void write(String value) throws IOException { method in class:BinaryOutputCapsule
654 protected void write(String[] value) throws IOException { method in class:BinaryOutputCapsule
664 protected void write(String[][] value) throws IOException { method in class:BinaryOutputCapsule
676 protected void write(BitSet value) throws IOException { method in class:BinaryOutputCapsule
716 protected void write(Savable object) throws IOException { method in class:BinaryOutputCapsule
727 protected void write(Savable[] objects) throws IOException { method in class:BinaryOutputCapsule
738 protected void write(Savable[][] objects) throws IOException { method in class:BinaryOutputCapsule
872 protected void write(FloatBuffer value) throws IOException { method in class:BinaryOutputCapsule
888 protected void write(IntBuffer value) throws IOException { method in class:BinaryOutputCapsule
905 protected void write(ByteBuffer value) throws IOException { method in class:BinaryOutputCapsule
921 protected void write(ShortBuffer value) throws IOException { method in class:BinaryOutputCapsule
935 public void write(Enum value, String name, Enum defVal) throws IOException { method in class:BinaryOutputCapsule
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
H A DPhysicsCollisionObject.java270 public void write(JmeExporter e) throws IOException { method in class:PhysicsCollisionObject
272 capsule.write(collisionGroup, "collisionGroup", 0x00000001);
273 capsule.write(collisionGroupsMask, "collisionGroupsMask", 0x00000001);
274 capsule.write(debugShape, "debugShape", null);
275 capsule.write(collisionShape, "collisionShape", null);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
H A DPhysicsCharacter.java260 public void write(JmeExporter e) throws IOException { method in class:PhysicsCharacter
261 super.write(e);
263 capsule.write(stepHeight, "stepHeight", 1.0f);
264 capsule.write(getGravity(), "gravity", 9.8f * 3);
265 capsule.write(getMaxSlope(), "maxSlope", 1.0f);
266 capsule.write(fallSpeed, "fallSpeed", 55.0f);
267 capsule.write(jumpSpeed, "jumpSpeed", 10.0f);
268 capsule.write(upAxis, "upAxis", 1);
269 capsule.write(getCcdMotionThreshold(), "ccdMotionThreshold", 0);
270 capsule.write(getCcdSweptSphereRadiu
[all...]
H A DPhysicsGhostObject.java265 public void write(JmeExporter e) throws IOException { method in class:PhysicsGhostObject
266 super.write(e);
268 capsule.write(getPhysicsLocation(new Vector3f()), "physicsLocation", new Vector3f());
269 capsule.write(getPhysicsRotationMatrix(new Matrix3f()), "physicsRotation", new Matrix3f());
270 capsule.write(getCcdMotionThreshold(), "ccdMotionThreshold", 0);
271 capsule.write(getCcdSweptSphereRadius(), "ccdSweptSphereRadius", 0);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
H A DSelectorKernel.java383 protected void write( SelectionKey key ) throws IOException method in class:SelectorKernel.SelectorThread
398 c.write( current );
431 write(key);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLODGeomap.java1115 public void write(JmeExporter ex) throws IOException { method in class:LODGeomap
1116 super.write(ex);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DPhysicsHoverControl.java210 public void write(JmeExporter ex) throws IOException { method in class:PhysicsHoverControl
211 super.write(ex);
213 oc.write(enabled, "enabled", true);
214 oc.write(spatial, "spatial", null);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java91 public void write(PrintWriter out) {
92 stringExpr.write(out);
121 public void write(PrintWriter out) {
122 expression.write(out);
177 public abstract void write(PrintWriter out); method in class:JavaExpression
182 write(new PrintWriter(out));
199 public void write(PrintWriter out) {
209 param.write(out);
232 public void write(PrintWriter out) {
233 instance.write(ou
261 public void write(PrintWriter out) { method in class:JavaExpression.StringExpression
319 public void write(PrintWriter out) { method in class:JavaExpression.BooleanLiteralExpression
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DData.java251 void write(Appendable out, int indent) throws IOException; method in interface:Data
H A DDefaultDataContext.java368 public void write(Appendable out, int indent) throws IOException { method in class:DefaultDataContext.LocalVariable
H A DDelegatedData.java285 public void write(Appendable out, int indent) throws IOException { method in class:DelegatedData
286 getDelegate().write(out, indent);
/external/jsoncpp/src/lib_json/
H A Djson_writer.cpp208 FastWriter::write( const Value &root ) function in class:Json::FastWriter
288 StyledWriter::write( const Value &root ) function in class:Json::StyledWriter
565 StyledStreamWriter::write( std::ostream &out, const Value &root ) function in class:Json::StyledStreamWriter
836 writer.write(sout, root);
/external/libdrm/radeon/
H A Dradeon_bo_gem.c151 static int bo_map(struct radeon_bo_int *boi, int write) argument
/external/libnfc-nci/src/hal/include/
H A Dnfc_hal_api.h121 tHAL_API_WRITE *write; member in struct:__anon8387
/external/libunwind/src/ia64/
H A DGinit.c76 access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, argument
79 if (write)
126 access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val, int write, argument
143 if (write)
155 if (write)
170 if (write)
183 if (write)
190 if (write)
198 if (write)
205 if (write)
246 access_fpreg(unw_addr_space_t as, unw_regnum_t reg, unw_fpreg_t *val, int write, void *arg) argument
281 access_reg(unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val, int write, void *arg) argument
334 access_fpreg(unw_addr_space_t as, unw_regnum_t reg, unw_fpreg_t *val, int write, void *arg) argument
411 ia64_uc_access_reg(struct cursor *c, ia64_loc_t loc, unw_word_t *valp, int write) argument
482 ia64_uc_access_fpreg(struct cursor *c, ia64_loc_t loc, unw_fpreg_t *valp, int write) argument
[all...]

Completed in 1301 milliseconds

<<11121314151617181920>>