HomeSort by relevance Sort by last modified time
    Searched refs:Converter (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/chromium_org/mojo/apps/js/bindings/
handle.cc 9 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());
handle.h 8 #include "gin/converter.h"
14 struct Converter<mojo::Handle> {
  /external/openfst/src/include/fst/script/
register.h 38 template<class Reader, class Creator, class Converter>
42 Converter converter; member in struct:fst::script::FstClassRegEntry
44 FstClassRegEntry(Reader r, Creator cr, Converter co) :
45 reader(r), creator(cr), converter(co) { }
46 FstClassRegEntry() : reader(0), creator(0), converter(0) { }
49 template<class Reader, class Creator, class Converter>
52 FstClassRegEntry<Reader, Creator, Converter>,
54 Converter> > {
64 Converter GetConverter(const string &arc_type) const
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/motors/
TranslationalLimitMotor.java 34 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/
SimplexCollisionShape.java 8 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.convert(vector2))
    [all...]
CompoundCollisionShape.java 37 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.convert(getScale()))
    [all...]
CylinderCollisionShape.java 37 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()));
BoxCollisionShape.java 35 import com.jme3.bullet.util.Converter;
82 cShape = new BoxShape(Converter.convert(halfExtents));
83 cShape.setLocalScaling(Converter.convert(getScale()));
PlaneCollisionShape.java 9 import com.jme3.bullet.util.Converter;
54 cShape = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant());
55 cShape.setLocalScaling(Converter.convert(getScale()));
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/
Converter.java 37 public interface Converter<T> {
  /external/chromium_org/gin/
converter.cc 5 #include "gin/converter.h"
23 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)
    [all...]
converter.h 18 struct Converter {};
21 struct GIN_EXPORT Converter<bool> {
30 struct GIN_EXPORT Converter<int32_t> {
39 struct GIN_EXPORT Converter<uint32_t> {
48 struct GIN_EXPORT Converter<int64_t> {
58 struct GIN_EXPORT Converter<uint64_t> {
68 struct GIN_EXPORT Converter<double> {
77 struct GIN_EXPORT Converter<base::StringPiece> {
84 struct GIN_EXPORT Converter<std::string> {
93 struct GIN_EXPORT Converter<v8::Handle<v8::Function> >
    [all...]
dictionary.cc 28 v8::Handle<v8::Value> Converter<Dictionary>::ToV8(v8::Isolate* isolate,
33 bool Converter<Dictionary>::FromV8(v8::Isolate* isolate,
  /external/chromium_org/ui/events/ozone/
event_factory_ozone.h 43 void AddEventConverter(int fd, scoped_ptr<EventConverterOzone> converter);
50 typedef EventConverterOzone* Converter;
52 std::map<int, Converter> converters_;
  /external/doclava/src/com/google/doclava/
Converter.java 26 public class Converter {
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.convertMethods(annotationElements)))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
StringHasher.h 91 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(*data++))
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
PhysicsCollisionEvent.java 35 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/
register.h 47 typedef Fst<A> *(*Converter)(const Fst<A> &fst);
50 Converter converter; member in struct:fst::FstRegisterEntry
51 FstRegisterEntry() : reader(0), converter(0) {}
52 FstRegisterEntry(Reader r, Converter c) : reader(r), converter(c) { }
56 // an FST type, and its reader and converter.
62 typedef typename FstRegisterEntry<A>::Converter Converter;
68 const Converter GetConverter(const string &type) const
121 converter = registr->GetConverter(ftype); local
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
SixDofJoint.java 39 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.convert(new Matrix3f()))
    [all...]
ConeJoint.java 37 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);
Point2PointJoint.java 36 import com.jme3.bullet.util.Converter;
109 constraint = new Point2PointConstraint(nodeA.getObjectId(), nodeB.getObjectId(), Converter.convert(pivotA), Converter.convert(pivotB));
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.h 34 struct Converter : public AHandler {
46 Converter(const sp<AMessage> &notify,
81 virtual ~Converter();
151 DISALLOW_EVIL_CONSTRUCTORS(Converter);
Converter.cpp 18 #define LOG_TAG "Converter"
21 #include "Converter.h"
43 Converter::Converter(
90 void Converter::releaseEncoder() {
114 Converter::~Converter() {
118 void Converter::shutdownAsync() {
123 status_t Converter::init() {
133 sp<IGraphicBufferProducer> Converter::getGraphicBufferProducer()
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 39 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.convert(tempTrans.getRotation(tempRot), physicsLocation.getRotation())
    [all...]
PhysicsRigidBody.java 44 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.convert(tempVec, gravity)
    [all...]

Completed in 580 milliseconds

1 2 3 4