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

1234

/external/chromium_org/mojo/apps/js/bindings/
H A Dhandle.cc9 v8::Handle<v8::Value> Converter<mojo::Handle>::ToV8(v8::Isolate* isolate,
11 return Converter<MojoHandle>::ToV8(isolate, val.value());
14 bool Converter<mojo::Handle>::FromV8(v8::Isolate* isolate,
17 return Converter<MojoHandle>::FromV8(isolate, val, out->mutable_value());
H A Dhandle.h14 struct Converter<mojo::Handle> { struct in namespace:gin
/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()));
/external/chromium_org/gin/
H A Dconverter.cc23 Handle<Value> Converter<bool>::ToV8(Isolate* isolate, bool val) {
27 bool Converter<bool>::FromV8(Isolate* isolate, Handle<Value> val, bool* out) {
32 Handle<Value> Converter<int32_t>::ToV8(Isolate* isolate, int32_t val) {
36 bool Converter<int32_t>::FromV8(Isolate* isolate, Handle<Value> val,
44 Handle<Value> Converter<uint32_t>::ToV8(Isolate* isolate, uint32_t val) {
48 bool Converter<uint32_t>::FromV8(Isolate* isolate, Handle<Value> val,
56 Handle<Value> Converter<int64_t>::ToV8(Isolate* isolate, int64_t val) {
60 bool Converter<int64_t>::FromV8(Isolate* isolate, Handle<Value> val,
70 Handle<Value> Converter<uint64_t>::ToV8(Isolate* isolate, uint64_t val) {
74 bool Converter<uint64_
[all...]
H A Dconverter.h18 struct Converter {}; struct in namespace:gin
21 struct GIN_EXPORT Converter<bool> { struct in namespace:gin
30 struct GIN_EXPORT Converter<int32_t> { struct in namespace:gin
39 struct GIN_EXPORT Converter<uint32_t> { struct in namespace:gin
48 struct GIN_EXPORT Converter<int64_t> { struct in namespace:gin
58 struct GIN_EXPORT Converter<uint64_t> { struct in namespace:gin
68 struct GIN_EXPORT Converter<double> { struct in namespace:gin
77 struct GIN_EXPORT Converter<base::StringPiece> { struct in namespace:gin
84 struct GIN_EXPORT Converter<std::string> { struct in namespace:gin
93 struct GIN_EXPORT Converter<v struct in namespace:gin
100 struct GIN_EXPORT Converter<v8::Handle<v8::Object> > { struct in namespace:gin
109 struct GIN_EXPORT Converter<v8::Handle<v8::ArrayBuffer> > { struct in namespace:gin
118 struct GIN_EXPORT Converter<v8::Handle<v8::External> > { struct in namespace:gin
127 struct GIN_EXPORT Converter<v8::Handle<v8::Value> > { struct in namespace:gin
136 struct Converter<std::vector<T> > { struct in namespace:gin
[all...]
H A Ddictionary.cc28 v8::Handle<v8::Value> Converter<Dictionary>::ToV8(v8::Isolate* isolate,
33 bool Converter<Dictionary>::FromV8(v8::Isolate* isolate,
H A Drunner_unittest.cc31 EXPECT_TRUE(Converter<std::string>::FromV8(isolate,
/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/chromium_org/third_party/WebKit/Source/wtf/
H A DStringHasher.h91 template<typename T, UChar Converter(T)> void addCharactersAssumingAligned(const T* data, unsigned length)
99 addCharactersAssumingAligned(Converter(data[0]), Converter(data[1]));
104 addCharacter(Converter(*data));
112 template<typename T, UChar Converter(T)> void addCharactersAssumingAligned(const T* data)
119 addCharacter(Converter(a));
122 addCharactersAssumingAligned(Converter(a), Converter(b));
131 template<typename T, UChar Converter(T)> void addCharacters(const T* data, unsigned length)
135 addCharactersAssumingAligned(m_pendingCharacter, Converter(*dat
[all...]
/external/chromium_org/ui/events/ozone/
H A Devent_factory_ozone.h50 typedef EventConverterOzone* Converter; typedef in class:ui::EventFactoryOzone
52 std::map<int, Converter> converters_;
/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.h47 typedef Fst<A> *(*Converter)(const Fst<A> &fst); typedef in struct:fst::FstRegisterEntry
50 Converter converter;
52 FstRegisterEntry(Reader r, Converter c) : reader(r), converter(c) { }
62 typedef typename FstRegisterEntry<A>::Converter Converter; typedef in class:fst::FstRegister
68 const Converter GetConverter(const string &type) const {
120 const typename FstRegister<A>::Converter
/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));
/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...]

Completed in 422 milliseconds

1234