Searched defs:convert (Results 1 - 25 of 74) sorted by relevance

123

/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DhtmlMathML.js30 function convert() { function
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/
H A DConverter.java38 public T convert(T input, Map<String, String> params); method in interface:Converter
/external/javassist/src/main/javassist/convert/
H A DTransformAfter.java16 package javassist.convert;
H A DTransformWriteField.java16 package javassist.convert;
H A DTransformFieldAccess.java16 package javassist.convert;
H A DTransformNew.java16 package javassist.convert;
H A DTransformNewClass.java16 package javassist.convert;
H A DTransformer.java16 package javassist.convert;
H A DTransformAccessArrayField.java15 package javassist.convert;
H A DTransformCall.java16 package javassist.convert;
H A DTransformReadField.java16 package javassist.convert;
H A DTransformBefore.java16 package javassist.convert;
/external/bluetooth/glib/tests/
H A Dunicode-caseconv.c20 char *convert; local
69 convert = g_utf8_strup (test, -1);
71 if (strcmp (convert, expected) != 0)
74 test, convert, expected);
77 g_free (convert);
79 convert = g_utf8_strdown (test, -1);
81 if (strcmp (convert, expected) != 0)
84 test, convert, expected);
87 g_free (convert);
116 convert
[all...]
/external/clang/test/CodeGen/
H A Ddebug-info.c5 void convert(void) { function
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
H A DConverter.java54 public static com.jme3.math.Vector3f convert(javax.vecmath.Vector3f oldVec) { method in class:Converter
56 convert(oldVec, newVec);
60 public static com.jme3.math.Vector3f convert(javax.vecmath.Vector3f oldVec, com.jme3.math.Vector3f newVec) { method in class:Converter
67 public static javax.vecmath.Vector3f convert(com.jme3.math.Vector3f oldVec) { method in class:Converter
69 convert(oldVec, newVec);
73 public static javax.vecmath.Vector3f convert(com.jme3.math.Vector3f oldVec, javax.vecmath.Vector3f newVec) { method in class:Converter
80 public static javax.vecmath.Quat4f convert(com.jme3.math.Quaternion oldQuat, javax.vecmath.Quat4f newQuat) { method in class:Converter
88 public static javax.vecmath.Quat4f convert(com.jme3.math.Quaternion oldQuat) { method in class:Converter
90 convert(oldQuat, newQuat);
94 public static com.jme3.math.Quaternion convert(java method in class:Converter
99 public static com.jme3.math.Quaternion convert(javax.vecmath.Quat4f oldQuat) { method in class:Converter
105 public static com.jme3.math.Quaternion convert(javax.vecmath.Matrix3f oldMatrix, com.jme3.math.Quaternion newQuaternion) { method in class:Converter
143 public static javax.vecmath.Matrix3f convert(com.jme3.math.Quaternion oldQuaternion, javax.vecmath.Matrix3f newMatrix) { method in class:Converter
176 public static com.jme3.math.Matrix3f convert(javax.vecmath.Matrix3f oldMatrix) { method in class:Converter
182 public static com.jme3.math.Matrix3f convert(javax.vecmath.Matrix3f oldMatrix, com.jme3.math.Matrix3f newMatrix) { method in class:Converter
195 public static javax.vecmath.Matrix3f convert(com.jme3.math.Matrix3f oldMatrix) { method in class:Converter
201 public static javax.vecmath.Matrix3f convert(com.jme3.math.Matrix3f oldMatrix, javax.vecmath.Matrix3f newMatrix) { method in class:Converter
214 public static com.bulletphysics.linearmath.Transform convert(com.jme3.math.Transform in, com.bulletphysics.linearmath.Transform out) { method in class:Converter
220 public static com.jme3.math.Transform convert(com.bulletphysics.linearmath.Transform in, com.jme3.math.Transform out) { method in class:Converter
226 public static IndexedMesh convert(Mesh mesh) { method in class:Converter
256 public static Mesh convert(IndexedMesh mesh) { method in class:Converter
279 public static Mesh convert(HeightfieldTerrainShape heightfieldShape) { method in class:Converter
[all...]
/external/openfst/src/script/
H A Dfst-class.cc85 MutableFstClass *MutableFstClass::Read(const string &fname, bool convert) { argument
86 if (convert == false) {
/external/webkit/Source/WebCore/platform/text/transcoder/
H A DFontTranscoder.cpp80 void FontTranscoder::convert(String& text, const FontDescription& fontDescription, const TextEncoding* encoding) const function in class:WebCore::FontTranscoder
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DDERGeneralizedTime.java99 // explicitly convert to characters
194 return "GMT" + sign + convert(hours) + ":" + convert(minutes);
197 private String convert(int time) method in class:DERGeneralizedTime
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DSsaToRop.java70 return new SsaToRop(ssaMeth, minimizeRegisters).convert();
92 private RopMethod convert() { method in class:SsaToRop
/external/libvpx/
H A Dy4minput.h51 y4m_convert_func convert; member in struct:y4m_input
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dpath.py29 """generic routines to convert platform-specific paths to URIs."""
78 return _CygPath._singleton.convert(path)
101 def convert(self, path): member in class:_CygPath
108 # use uppercase. We always convert to uppercase for consistency.
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java22 public long convert(long d, TimeUnit u) { return u.toNanos(d); }
33 public long convert(long d, TimeUnit u) { return u.toMicros(d); }
44 public long convert(long d, TimeUnit u) { return u.toMillis(d); }
55 public long convert(long d, TimeUnit u) { return u.toSeconds(d); }
66 public long convert(long d, TimeUnit u) { return u.toMinutes(d); }
77 public long convert(long d, TimeUnit u) { return u.toHours(d); }
88 public long convert(long d, TimeUnit u) { return u.toDays(d); }
111 public long convert(long sourceDuration, TimeUnit sourceUnit) { method in class:TimeUnit
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
H A DImageToAwt.java205 public static void convert(BufferedImage image, Format format, ByteBuffer buf){ method in class:ImageToAwt
246 // convert RGB to luminance
301 public static void convert(Image input, Image output){ method in class:ImageToAwt
367 public static BufferedImage convert(Image image, boolean do16bit, boolean fullalpha, int mipLevel){ method in class:ImageToAwt
/external/libxml2/
H A Dxmlcatalog.c39 static int convert = 0; variable
363 } else if ((!strcmp(argv[i], "-convert")) ||
364 (!strcmp(argv[i], "--convert"))) {
365 convert++;
417 if (convert)
585 if ((!sgml) && ((add) || (del) || (create) || (convert))) {
/external/qemu/android/utils/
H A Dmapfile.c135 LARGE_INTEGER convert; local
136 convert.QuadPart = offset;
137 if ((SetFilePointer(handle, convert.LowPart, &convert.HighPart,

Completed in 352 milliseconds

123