HomeSort by relevance Sort by last modified time
    Searched defs:convert (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js 30 function convert() { function
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/
Converter.java 38 public T convert(T input, Map<String, String> params); method in interface:Converter
  /cts/tools/signature-tools/test/signature/converter/util/
AbstractTestSourceConverter.java 29 public IApi convert(Set<CompilationUnit> units) throws IOException { method in class:AbstractTestSourceConverter
30 return convert(Visibility.PROTECTED, units);
32 public IApi convert(CompilationUnit... units) throws IOException { method in class:AbstractTestSourceConverter
33 return convert(Visibility.PROTECTED, new HashSet<CompilationUnit>(Arrays.asList(units)));
35 public IApi convert(Visibility visibility, CompilationUnit... units) throws IOException { method in class:AbstractTestSourceConverter
36 return convert(visibility, new HashSet<CompilationUnit>(Arrays.asList(units)));
ITestSourceConverter.java 26 IApi convert(Set<CompilationUnit> units) throws IOException; method in interface:ITestSourceConverter
27 IApi convert(CompilationUnit... units) throws IOException; method in interface:ITestSourceConverter
28 IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException; method in interface:ITestSourceConverter
29 IApi convert(Visibility visibility, CompilationUnit... units) throws IOException; method in interface:ITestSourceConverter
AbstractConvertTest.java 43 public IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException { method in class:AbstractConvertTest
44 return converter.convert(visibility, units);
  /frameworks/wilhelm/tools/mphtogen/
mphtogen.c 25 static void convert(const signed char MPH_to[MPH_MAX], const char *filename) function
50 #define _(x) convert(MPH_to_##x, "../../src/autogen/MPH_to_" #x ".h");
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
LetterConverter.java 31 * Convert the layer #0 text(pressed key sequence) to layer #1 text(pre converted string).
41 public boolean convert(ComposingText text); method in interface:LetterConverter
  /external/javassist/src/main/javassist/convert/
Transformer.java 16 package javassist.convert;
TransformAfter.java 16 package javassist.convert;
TransformFieldAccess.java 16 package javassist.convert;
TransformNewClass.java 16 package javassist.convert;
TransformWriteField.java 16 package javassist.convert;
  /libcore/luni/src/main/java/libcore/icu/
NativeIDN.java 21 return convert(s, flags, true);
26 return convert(s, flags, false);
35 private static String convert(String s, int flags, boolean toAscii) { method in class:NativeIDN
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
RomkanHalfKatakana.java 146 /** @see LetterConverter#convert */
147 public boolean convert(ComposingText text) { method in class:RomkanHalfKatakana
148 return RomkanFullKatakana.convert(text, mRomkanTable);
  /cts/tools/signature-tools/test/signature/converter/dex/
DexTestConverter.java 35 public IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException { method in class:DexTestConverter
  /external/bluetooth/glib/tests/
unicode-caseconv.c 20 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 = g_utf8_casefold (test, -1)
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java 82 cShape = new BoxShape(Converter.convert(halfExtents));
83 cShape.setLocalScaling(Converter.convert(getScale()));
PlaneCollisionShape.java 54 cShape = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant());
55 cShape.setLocalScaling(Converter.convert(getScale()));
SphereCollisionShape.java 81 cShape.setLocalScaling(Converter.convert(getScale()));
ConeCollisionShape.java 74 cShape.setLocalScaling(Converter.convert(getScale()));
CylinderCollisionShape.java 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()));
SimplexCollisionShape.java 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));
80 cShape = new BU_Simplex1to4(Converter.convert(vector1))
    [all...]
  /external/webkit/Source/WebCore/platform/text/transcoder/
FontTranscoder.cpp 80 void FontTranscoder::convert(String& text, const FontDescription& fontDescription, const TextEncoding* encoding) const function in class:WebCore::FontTranscoder
  /external/clang/test/CodeGen/
debug-info.c 5 void convert(void) { function
  /frameworks/native/opengl/tools/glgen/src/
JType.java 161 public static JType convert(CType ctype, boolean useArray) { method in class:JType

Completed in 531 milliseconds

1 2 3 4 5 6 7