Searched refs:Converter (Results 1 - 25 of 56) sorted by relevance

123

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/motors/
H A DTranslationalLimitMotor.java34 import com.jme3.bullet.util.Converter;
54 return Converter.convert(motor.lowerLimit);
58 Converter.convert(lowerLimit, motor.lowerLimit);
62 return Converter.convert(motor.upperLimit);
66 Converter.convert(upperLimit, motor.upperLimit);
70 return Converter.convert(motor.accumulatedImpulse);
74 Converter.convert(accumulatedImpulse, motor.accumulatedImpulse);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DSimplexCollisionShape.java8 import com.jme3.bullet.util.Converter;
74 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.convert(vector3), Converter.convert(vector4));
76 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.convert(vector3));
78 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter
[all...]
H A DCompoundCollisionShape.java37 import com.jme3.bullet.util.Converter;
70 Transform transA = new Transform(Converter.convert(new Matrix3f()));
71 Converter.convert(location, transA.origin);
85 Transform transA = new Transform(Converter.convert(rotation));
86 Converter.convert(location, transA.origin);
87 Converter.convert(rotation, transA.basis);
96 Transform transA = new Transform(Converter.convert(rotation));
97 Converter.convert(location, transA.origin);
98 Converter.convert(rotation, transA.basis);
138 cShape.setLocalScaling(Converter
[all...]
H A DCylinderCollisionShape.java37 import com.jme3.bullet.util.Converter;
104 cShape = new CylinderShapeX(Converter.convert(halfExtents));
107 cShape = new CylinderShape(Converter.convert(halfExtents));
110 cShape = new CylinderShapeZ(Converter.convert(halfExtents));
113 cShape.setLocalScaling(Converter.convert(getScale()));
H A DBoxCollisionShape.java35 import com.jme3.bullet.util.Converter;
82 cShape = new BoxShape(Converter.convert(halfExtents));
83 cShape.setLocalScaling(Converter.convert(getScale()));
H A DPlaneCollisionShape.java9 import com.jme3.bullet.util.Converter;
54 cShape = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant());
55 cShape.setLocalScaling(Converter.convert(getScale()));
H A DMeshCollisionShape.java37 import com.jme3.bullet.util.Converter;
70 bulletMesh = Converter.convert(mesh);
84 return Converter.convert(bulletMesh);
123 cShape.setLocalScaling(Converter.convert(getScale()));
H A DCollisionShape.java34 import com.jme3.bullet.util.Converter;
84 cShape.setLocalScaling(Converter.convert(scale));
H A DSphereCollisionShape.java35 import com.jme3.bullet.util.Converter;
81 cShape.setLocalScaling(Converter.convert(getScale()));
H A DGImpactCollisionShape.java37 import com.jme3.bullet.util.Converter;
72 bulletMesh = Converter.convert(mesh);
86 return Converter.convert(bulletMesh);
127 cShape.setLocalScaling(Converter.convert(worldScale));
129 cShape.setLocalScaling(Converter.convert(getScale()));
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/
H A DConverter.java37 public interface Converter<T> { interface
/external/openfst/src/include/fst/script/
H A Dregister.h38 template<class Reader, class Creator, class Converter>
42 Converter converter;
44 FstClassRegEntry(Reader r, Creator cr, Converter co) :
49 template<class Reader, class Creator, class Converter>
52 FstClassRegEntry<Reader, Creator, Converter>,
54 Converter> > {
64 Converter GetConverter(const string &arc_type) const {
88 typedef FstClassImplBase *(*Converter)(const FstClass &other); typedef in struct:fst::script::IORegistration
90 typedef FstClassRegEntry<Reader, Creator, Converter> Entry;
93 typedef FstClassIORegister<Reader, Creator, Converter> Registe
[all...]
/external/doclava/src/com/google/doclava/
H A DConverter.java26 public class Converter { class
38 Converter.obtainClass(classDocs[i]);
58 mRootClasses = Converter.convertClasses(r.classes());
78 cl.init(Converter.obtainType(c),
79 new ArrayList<ClassInfo>(Arrays.asList(Converter.convertClasses(c.interfaces()))),
80 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.interfaceTypes()))),
81 new ArrayList<ClassInfo>(Arrays.asList(Converter.convertClasses(c.innerClasses()))),
83 Converter.convertMethods(c.constructors(false)))),
84 new ArrayList<MethodInfo>(Arrays.asList(Converter.convertMethods(c.methods(false)))),
85 new ArrayList<MethodInfo>(Arrays.asList(Converter
202 private Converter() {} method in class:Converter
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEvent.java35 import com.jme3.bullet.util.Converter;
151 return Converter.convert(cp.lateralFrictionDir1);
155 return Converter.convert(cp.lateralFrictionDir2);
167 return Converter.convert(cp.localPointA);
171 return Converter.convert(cp.localPointB);
175 return Converter.convert(cp.normalWorldOnB);
187 return Converter.convert(cp.positionWorldOnA);
191 return Converter.convert(cp.positionWorldOnB);
/external/openfst/src/include/fst/
H A Dregister.h46 typedef Fst<A> *(*Converter)(const Fst<A> &fst); typedef in struct:fst::FstRegisterEntry
49 Converter converter;
51 FstRegisterEntry(Reader r, Converter c) : reader(r), converter(c) { }
61 typedef typename FstRegisterEntry<A>::Converter Converter; typedef in class:fst::FstRegister
67 const Converter GetConverter(const string &type) const {
119 const typename FstRegister<A>::Converter
/external/webkit/Source/JavaScriptCore/wtf/
H A DStringHasher.h91 template<typename T, UChar Converter(T)> static inline unsigned computeHash(const T* data, unsigned length)
98 hasher.addCharacters(Converter(data[0]), Converter(data[1]));
103 hasher.addCharacter(Converter(*data));
108 template<typename T, UChar Converter(T)> static inline unsigned computeHash(const T* data)
113 UChar b0 = Converter(*data++);
116 UChar b1 = Converter(*data++);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DSixDofJoint.java39 import com.jme3.bullet.util.Converter;
82 Transform transA = new Transform(Converter.convert(rotA));
83 Converter.convert(pivotA, transA.origin);
84 Converter.convert(rotA, transA.basis);
86 Transform transB = new Transform(Converter.convert(rotB));
87 Converter.convert(pivotB, transB.origin);
88 Converter.convert(rotB, transB.basis);
102 Transform transA = new Transform(Converter.convert(new Matrix3f()));
103 Converter.convert(pivotA, transA.origin);
105 Transform transB = new Transform(Converter
[all...]
H A DConeJoint.java37 import com.jme3.bullet.util.Converter;
126 Transform transA = new Transform(Converter.convert(rotA));
127 Converter.convert(pivotA, transA.origin);
128 Converter.convert(rotA, transA.basis);
130 Transform transB = new Transform(Converter.convert(rotB));
131 Converter.convert(pivotB, transB.origin);
132 Converter.convert(rotB, transB.basis);
H A DPoint2PointJoint.java36 import com.jme3.bullet.util.Converter;
109 constraint = new Point2PointConstraint(nodeA.getObjectId(), nodeB.getObjectId(), Converter.convert(pivotA), Converter.convert(pivotB));
H A DHingeJoint.java36 import com.jme3.bullet.util.Converter;
153 Converter.convert(pivotA), Converter.convert(pivotB),
154 Converter.convert(axisA), Converter.convert(axisB));
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
H A DPhysicsGhostObject.java39 import com.jme3.bullet.util.Converter;
66 protected Transform tempTrans = new Transform(Converter.convert(new Matrix3f()));
109 Converter.convert(location, tempTrans.origin);
119 Converter.convert(rotation, tempTrans.basis);
129 Converter.convert(rotation, tempTrans.basis);
148 Converter.convert(tempTrans.origin, physicsLocation.getTranslation());
160 Converter.convert(tempTrans.getRotation(tempRot), physicsLocation.getRotation());
172 Converter.convert(tempTrans.getRotation(tempRot), physicsLocation.getRotation());
181 Converter.convert(tempTrans.origin, physicsLocation.getTranslation());
190 Converter
[all...]
H A DPhysicsRigidBody.java44 import com.jme3.bullet.util.Converter;
154 Converter.convert(location, tempTrans.origin);
165 Converter.convert(rotation, tempTrans.basis);
176 Converter.convert(rotation, tempTrans.basis);
204 return Converter.convert(tempTrans.origin, location);
216 return Converter.convert(tempTrans.basis, rotation);
236 return Converter.convert(tempTrans.basis, rotation);
248 return Converter.convert(tempTrans.origin, location);
260 return Converter.convert(tempTrans.basis, rotation);
344 return Converter
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/infos/
H A DRigidBodyMotionState.java37 import com.jme3.bullet.util.Converter;
51 private Transform motionStateTrans = new Transform(Converter.convert(new Matrix3f()));
88 Converter.convert(worldTrans.origin, worldLocation);
89 Converter.convert(worldTrans.basis, worldRotation);
188 // Converter.convert(worldLocation, motionStateTrans.origin);
189 // Converter.convert(worldRotation, motionStateTrans.basis);
/external/clang/test/PCH/
H A Dcxx-templates.cpp50 template<typename T, char Converter(T)> static inline unsigned createHash(const T*, unsigned) {
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dregister.h45 typedef Fst<A> *(*Converter)(const Fst<A> &fst); typedef in class:fst::FstRegister
49 Converter converter;
62 const Converter GetConverter(const string &type) const {
160 const typename FstRegister<A>::Converter

Completed in 278 milliseconds

123