Searched refs:im (Results 101 - 125 of 193) sorted by relevance

12345678

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimControl.java355 public void read(JmeImporter im) throws IOException { argument
356 super.read(im);
357 InputCapsule in = im.getCapsule(this);
361 if (im.getFormatVersion() == 0) {
H A DBoneTrack.java297 public void read(JmeImporter im) throws IOException { argument
298 InputCapsule ic = im.getCapsule(this);
307 if (im.getFormatVersion() == 0){
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShader.java133 public void read(JmeImporter im) throws IOException{ argument
134 InputCapsule ic = im.getCapsule(this);
253 public void read(JmeImporter im) throws IOException{ argument
254 InputCapsule ic = im.getCapsule(this);
H A DDefineList.java66 public void read(JmeImporter im) throws IOException{ argument
67 InputCapsule ic = im.getCapsule(this);
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DAnimatedGifEncoder.java146 * @param im
150 public boolean addFrame(Bitmap im) { argument
151 if ((im == null) || !started) {
158 setSize(im.getWidth(), im.getHeight());
160 image = im;
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DAbstractCinematicEvent.java263 * @param im importer
266 public void read(JmeImporter im) throws IOException { argument
267 InputCapsule ic = im.getCapsule(this);
H A DMotionTrack.java208 public void read(JmeImporter im) throws IOException { argument
209 super.read(im);
210 InputCapsule in = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacter.java181 public void read(JmeImporter im) throws IOException { argument
182 InputCapsule ic = im.getCapsule(this);
H A DBitmapFont.java162 public void read(JmeImporter im) throws IOException { argument
163 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DTechnique.java252 public void read(JmeImporter im) throws IOException { argument
253 InputCapsule ic = im.getCapsule(this);
H A DTechniqueDef.java383 public void read(JmeImporter im) throws IOException{ argument
384 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DDistanceLodCalculator.java122 public void read(JmeImporter im) throws IOException { argument
123 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioNode.java756 public void read(JmeImporter im) throws IOException { argument
757 super.read(im);
758 InputCapsule ic = im.getCapsule(this);
790 data = im.getAssetManager().loadAudio(audioKey);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DGeometry.java534 public void read(JmeImporter im) throws IOException { argument
535 super.read(im);
536 InputCapsule ic = im.getCapsule(this);
545 material = im.getAssetManager().loadMaterial(matName);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
H A DFractalTileLoader.java84 public void read(JmeImporter im) throws IOException { argument
/external/opencv/cvaux/src/
H A Dcvface.cpp209 int im = 0;//mouth was find local
226 im = 1;
257 if ( (im + jl + kr) )
259 Error = Data.Error/(im + jl + kr);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java67 public void paint(Image im) { argument
69 Rectangle bounds= im.getBounds();
71 GC g= new GC(im);
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
H A DCharacterControl.java198 public void read(JmeImporter im) throws IOException { argument
199 super.read(im);
200 InputCapsule ic = im.getCapsule(this);
H A DRigidBodyControl.java255 public void read(JmeImporter im) throws IOException { argument
256 super.read(im);
257 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DBloomFilter.java299 public void read(JmeImporter im) throws IOException { argument
300 super.read(im);
301 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
H A DSSAOFilter.java316 public void read(JmeImporter im) throws IOException { argument
317 super.read(im);
318 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DPhysicsHoverControl.java218 public void read(JmeImporter im) throws IOException { argument
219 super.read(im);
220 InputCapsule ic = im.getCapsule(this);
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Context.cpp1207 pSegment->m_Result.im = pTRD->decode_Arith(pArithDecoder, grContext);
1209 if(pSegment->m_Result.im == NULL) {
1217 pSegment->m_Result.im = pTRD->decode_Huffman(m_pStream, grContext);
1218 if(pSegment->m_Result.im == NULL) {
1231 m_pPage->composeFrom(ri.x, ri.y, pSegment->m_Result.im, (JBig2ComposeOp)(ri.flags & 0x03));
1232 delete pSegment->m_Result.im;
1233 pSegment->m_Result.im = NULL;
1438 pSegment->m_Result.im = pHRD->decode_Arith(pArithDecoder, gbContext, pPause);
1440 if(pSegment->m_Result.im == NULL) {
1449 pSegment->m_Result.im
[all...]
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp1073 int re, im;
1075 constexpr complex(int re = 0, int im = 0) : re(re), im(im) {}
1076 constexpr complex(const complex &o) : re(o.re), im(o.im) {}
1077 constexpr complex operator-() const { return complex(-re, -im); }
1079 return complex(l.re + r.re, l.im + r.im);
1085 return complex(l.re * r.re - l.im *
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DSixDofJoint.java166 public void read(JmeImporter im) throws IOException { argument
167 super.read(im);
168 InputCapsule capsule = im.getCapsule(this);

Completed in 663 milliseconds

12345678