HomeSort by relevance Sort by last modified time
    Searched refs:convert (Results 101 - 125 of 1011) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
charset.py 126 output charset when the method Charset.convert() is called. The default
196 input_codec: The name of the Python codec used to convert the
200 output_codec: The name of the Python codec used to convert Unicode
274 def convert(self, s):
275 """Convert a string from the input_codec to the output_codec."""
282 """Convert a possibly multibyte string to a safely splittable format.
284 Uses the input_codec to try and convert the string to Unicode, so it
288 Returns the string as-is if it isn't known how to convert it to
304 """Convert a splittable string back into an encoded string.
306 Uses the proper codec to try and convert the string from Unicode bac
270 def convert(self, s): member in class:Charset
    [all...]
  /external/clang/test/SemaTemplate/
member-access-expr.cpp 54 T convert(const U& value) { function
59 convert<int>(x2);
60 convert<long>(x2); // expected-note{{instantiation}}
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
MeshCollisionShape.java 70 bulletMesh = Converter.convert(mesh);
84 return Converter.convert(bulletMesh);
123 cShape.setLocalScaling(Converter.convert(getScale()));
GImpactCollisionShape.java 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/jbullet/com/jme3/bullet/objects/infos/
RigidBodyMotionState.java 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/guava/guava-tests/test/com/google/common/primitives/
DoublesTest.java 510 assertEquals((Double) 1.0, converter.convert("1.0"));
511 assertEquals((Double) 0.0, converter.convert("0.0"));
512 assertEquals((Double) (-1.0), converter.convert("-1.0"));
513 assertEquals((Double) 1.0, converter.convert("1"));
514 assertEquals((Double) 0.0, converter.convert("0"));
515 assertEquals((Double) (-1.0), converter.convert("-1"));
516 assertEquals((Double) 1e6, converter.convert("1e6"));
517 assertEquals((Double) 1e-6, converter.convert("1e-6"));
522 Doubles.stringConverter().convert("notanumber");
529 assertNull(Doubles.stringConverter().convert(null))
    [all...]
FloatsTest.java 497 assertEquals((Float) 1.0f, converter.convert("1.0"));
498 assertEquals((Float) 0.0f, converter.convert("0.0"));
499 assertEquals((Float) (-1.0f), converter.convert("-1.0"));
500 assertEquals((Float) 1.0f, converter.convert("1"));
501 assertEquals((Float) 0.0f, converter.convert("0"));
502 assertEquals((Float) (-1.0f), converter.convert("-1"));
503 assertEquals((Float) 1e6f, converter.convert("1e6"));
504 assertEquals((Float) 1e-6f, converter.convert("1e-6"));
509 Floats.stringConverter().convert("notanumber");
516 assertNull(Floats.stringConverter().convert(null))
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformAfter.java 16 package javassist.convert;
Transformer.java 16 package javassist.convert;
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_objects_VehicleWheel.cpp 57 jmeBulletUtil::convert(env, &vehicle->getWheelInfo(wheelIndex).m_worldTransform.getOrigin(), out);
73 jmeBulletUtil::convert(env, &vehicle->getWheelInfo(wheelIndex).m_worldTransform.getBasis(), out);
110 jmeBulletUtil::convert(env, &vehicle->getWheelInfo(wheelIndex).m_raycastInfo.m_contactPointWS, out);
126 jmeBulletUtil::convert(env, &vehicle->getWheelInfo(wheelIndex).m_raycastInfo.m_contactNormalWS, out);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
HingeJoint.java 153 Converter.convert(pivotA), Converter.convert(pivotB),
154 Converter.convert(axisA), Converter.convert(axisB));
  /external/libvpx/libvpx/
y4minput.h 57 y4m_convert_func convert; member in struct:y4m_input
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
XmlBox.java 42 byteBuffer.put(Utf8.convert(xml));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleMeanBox.java 35 byteBuffer.put(Utf8.convert(meaning));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/vodafone/
ContentDistributorIdBox.java 62 byteBuffer.put(Utf8.convert(contentDistributorId));
CoverUriBox.java 58 byteBuffer.put(Utf8.convert(coverUri));
LyricsUriBox.java 59 byteBuffer.put(Utf8.convert(lyricsUri));
  /external/openfst/src/bin/
fstconvert.cc 23 #include <fst/script/convert.h>
52 ofst = s::Convert(*ifst, FLAGS_fst_type);
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 65 return unit.convert(mDelay, TimeUnit.MILLISECONDS);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
y4minput.h 57 y4m_convert_func convert; member in struct:y4m_input
  /libcore/luni/src/main/java/java/io/
OutputStreamWriter.java 179 private void convert(CharBuffer chars) throws IOException { method in class:OutputStreamWriter
231 * Returns the canonical name of the encoding used by this writer to convert characters to
269 convert(chars);
289 convert(chars);
327 convert(chars);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
cast.hpp 53 return converter::convert(arg);
converter.hpp 41 result_type operator() ( argument_type s ) const { return this->convert(s) ; }
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
DoublesTest.java 399 assertEquals((Double) 1.0, converter.convert("1.0"));
400 assertEquals((Double) 0.0, converter.convert("0.0"));
401 assertEquals((Double) (-1.0), converter.convert("-1.0"));
402 assertEquals((Double) 1.0, converter.convert("1"));
403 assertEquals((Double) 0.0, converter.convert("0"));
404 assertEquals((Double) (-1.0), converter.convert("-1"));
405 assertEquals((Double) 1e6, converter.convert("1e6"));
406 assertEquals((Double) 1e-6, converter.convert("1e-6"));
411 Doubles.stringConverter().convert("notanumber");
418 assertNull(Doubles.stringConverter().convert(null))
    [all...]
  /external/eigen/test/eigen2/
gsl_helper.h 96 void convert(const MatrixType& m, gsl_matrix* &res) function in namespace:Eigen
107 void convert(const gsl_matrix* m, MatrixType& res) function in namespace:Eigen
116 void convert(const VectorType& m, gsl_vector* &res) function in namespace:Eigen
125 void convert(const gsl_vector* m, VectorType& res) function in namespace:Eigen
133 void convert(const MatrixType& m, gsl_matrix_complex* &res) function in namespace:Eigen
145 void convert(const gsl_matrix_complex* m, MatrixType& res) function in namespace:Eigen
156 void convert(const VectorType& m, gsl_vector_complex* &res) function in namespace:Eigen
164 void convert(const gsl_vector_complex* m, VectorType& res) function in namespace:Eigen

Completed in 1563 milliseconds

1 2 3 45 6 7 8 91011>>