Searched refs:im (Results 26 - 50 of 193) sorted by relevance

12345678

/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DFadeFilter.java151 public void read(JmeImporter im) throws IOException { argument
152 super.read(im);
153 InputCapsule ic = im.getCapsule(this);
H A DRadialBlurFilter.java150 public void read(JmeImporter im) throws IOException { argument
151 super.read(im);
152 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCapsuleCollisionShape.java101 public void read(JmeImporter im) throws IOException { argument
102 super.read(im);
103 InputCapsule capsule = im.getCapsule(this);
H A DConeCollisionShape.java57 public void read(JmeImporter im) throws IOException { argument
58 super.read(im);
59 InputCapsule capsule = im.getCapsule(this);
H A DCylinderCollisionShape.java93 public void read(JmeImporter im) throws IOException { argument
94 super.read(im);
95 InputCapsule capsule = im.getCapsule(this);
H A DCollisionShape.java106 public void read(JmeImporter im) throws IOException { argument
107 InputCapsule capsule = im.getCapsule(this);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DPoint2PointJoint.java99 public void read(JmeImporter im) throws IOException { argument
100 super.read(im);
102 InputCapsule cap=im.getCapsule(this);
/external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
H A DGuiTrack.java114 public void read(JmeImporter im) throws IOException { argument
115 super.read(im);
116 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DNormalRecalcControl.java100 public void read(JmeImporter im) throws IOException { argument
101 super.read(im);
102 InputCapsule ic = im.getCapsule(this);
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplexFormat.java157 double im = complex.getImaginary();
158 if (im < 0.0) {
160 formatDouble(-im, getImaginaryFormat(), toAppendTo, pos);
162 } else if (im > 0.0 || Double.isNaN(im)) {
164 formatDouble(im, getImaginaryFormat(), toAppendTo, pos);
315 Number im = parseNumber(source, getRealFormat(), pos);
316 if (im == null) {
328 return new Complex(re.doubleValue(), im.doubleValue() * sign);
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DFilter.java55 public void read(JmeImporter im) throws IOException { argument
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Segment.cpp38 delete m_Result.im;
/external/libopus/celt/
H A Dmdct.c173 kiss_fft_scalar re, im, yr, yi; local
175 im = yp[1];
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
264 kiss_fft_scalar re, im, yr, yi; local
267 im = yp0[1];
271 yr = S_MUL(re,t0) - S_MUL(im,t1);
272 yi = S_MUL(im,t0) + S_MUL(re,t1);
274 im = yp1[1];
282 yr = S_MUL(re,t0) - S_MUL(im,t
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCollisionShape.java116 public void read(JmeImporter im) throws IOException { argument
117 InputCapsule capsule = im.getCapsule(this);
H A DHullCollisionShape.java43 public void read(JmeImporter im) throws IOException { argument
44 super.read(im);
45 InputCapsule capsule = im.getCapsule(this);
H A DSimplexCollisionShape.java62 public void read(JmeImporter im) throws IOException { argument
63 super.read(im);
64 InputCapsule capsule = im.getCapsule(this);
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
H A DChildCollisionShape.java40 public void read(JmeImporter im) throws IOException { argument
41 InputCapsule capsule = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactQuaternionArray.java79 public void read(JmeImporter im) throws IOException { argument
80 InputCapsule in = im.getCapsule(this);
H A DCompactVector3Array.java79 public void read(JmeImporter im) throws IOException { argument
80 InputCapsule in = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DKeyFrame.java70 public void read(JmeImporter im) throws IOException { argument
71 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterPointShape.java93 public void read(JmeImporter im) throws IOException { argument
94 this.point = (Vector3f) im.getCapsule(this).readSavable("point", null);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLight.java189 public void read(JmeImporter im) throws IOException { argument
190 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DAbstractControl.java106 public void read(JmeImporter im) throws IOException { argument
107 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DLodDistanceCalculatorFactory.java74 public void read(JmeImporter im) throws IOException { argument
75 InputCapsule c = im.getCapsule(this);
H A DSimpleLodThreshold.java97 public void read(JmeImporter im) throws IOException { argument
98 InputCapsule ic = im.getCapsule(this);

Completed in 550 milliseconds

12345678