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

1 2 3 4 5 6

  /external/selinux/sepolgen/src/sepolgen/
sepolgeni18n.py 22 t = gettext.translation( 'yumex' )
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
sepolgeni18n.py 22 t = gettext.translation( 'yumex' )
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
sepolgeni18n.py 22 t = gettext.translation( 'yumex' )
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Transform.java 40 * Represents a translation, rotation and scale in one object.
52 private Vector3f translation = new Vector3f(); field in class:Transform
55 public Transform(Vector3f translation, Quaternion rot){
56 this.translation.set(translation);
60 public Transform(Vector3f translation, Quaternion rot, Vector3f scale){
61 this(translation, rot);
65 public Transform(Vector3f translation){
66 this(translation, Quaternion.IDENTITY);
88 * Sets this translation to the given value
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintLocLimit.java 101 * This method modifies the given translation.
102 * @param translation the translation to be modified.
105 private void locLimit(Vector3f translation, float influence) {
107 if (translation.x < limits[0][0]) {
108 translation.x -= (translation.x - limits[0][0]) * influence;
112 if (translation.x > limits[0][1]) {
113 translation.x -= (translation.x - limits[0][1]) * influence;
    [all...]
  /external/libexif/test/nls/
test-nls.c 49 char *translation; local
76 puts("before translation");
77 translation = gettext(untranslated);
78 puts("after translation");
80 if (strcmp(expected, translation) != 0) {
86 "translation: %s\n"
87 "Error: translation != expected\n",
92 translation);
98 "translation: %s\n"
101 translation);
    [all...]
  /external/bison/lib/
gettext.h 103 translation is done at a different place in the code.
152 const char *translation = dcgettext (domain, msg_ctxt_id, category); local
153 if (translation == msg_ctxt_id)
156 return translation;
172 const char *translation = local
174 if (translation == msg_ctxt_id || translation == msgid_plural)
177 return translation;
216 const char *translation; local
231 translation = dcgettext (domain, msg_ctxt_id, category)
262 const char *translation; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
DragListener.java 35 float translation = event.getY() - mStatePanelTrack.getTouchPoint().y; local
36 float alpha = 1.0f - (Math.abs(translation)
39 translation = event.getX() - mStatePanelTrack.getTouchPoint().x;
40 alpha = 1.0f - (Math.abs(translation)
42 mStatePanelTrack.getCurrentView().setTranslationX(translation);
44 mStatePanelTrack.getCurrentView().setTranslationY(translation);
StatePanelTrack.java 239 float translation = event.getY() - mTouchPoint.y; local
240 float alpha = 1.0f - (Math.abs(translation) / mCurrentView.getHeight());
242 translation = event.getX() - mTouchPoint.x;
243 alpha = 1.0f - (Math.abs(translation) / mCurrentView.getWidth());
244 mCurrentView.setTranslationX(translation);
246 mCurrentView.setTranslationY(translation);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
Ipo.java 135 float[] translation = new float[3]; local
152 translation[0] = (float) value;
156 translation[2] = (float) -value;
158 translation[1] = (float) value;
162 translation[fixUpAxis && spatialTrack ? 1 : 2] = (float) value;
224 translations[index] = new Vector3f(translation[0], translation[1], translation[2]);
  /external/deqp/framework/common/
tcuMatrixUtil.hpp 34 Matrix<T, Size+1, Size+1> translationMatrix (const Vector<T, Size>& translation);
47 // Builds a translation matrix for a homogenous coordinate system
49 inline Matrix<T, Len+1, Len+1> translationMatrix (const Vector<T, Len>& translation)
53 res(row, Len) = translation.m_data[row];
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Bone.java 335 //translation
425 // Computing translation
426 // Translation depend on rotation and scale
437 public void setUserTransforms(Vector3f translation, Quaternion rotation, Vector3f scale) {
446 localPos.addLocal(translation);
453 * @param translation
456 public void setUserTransformsWorld(Vector3f translation, Quaternion rotation) {
462 worldPos.set(translation);
467 attachNode.setLocalTranslation(translation);
508 void setAnimTransforms(Vector3f translation, Quaternion rotation, Vector3f scale)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java 649 Point translation = MasterImage.getImage().getTranslation(); local
650 translation.x = (int) (originalTranslation.x + translateX);
651 translation.y = (int) (originalTranslation.y + translateY);
652 MasterImage.getImage().setTranslation(translation);
678 Point translation = MasterImage.getImage().getTranslation(); local
679 constrainTranslation(translation, scaleFactor);
680 MasterImage.getImage().setTranslation(translation);
704 Point translation = MasterImage.getImage().getTranslation();
705 translation.x = (Integer) animation.getAnimatedValue();
706 MasterImage.getImage().setTranslation(translation);
725 Point translation = MasterImage.getImage().getTranslation(); local
760 Point translation = MasterImage.getImage().getTranslation(); local
    [all...]
  /external/freetype/src/cff/
cf2intrp.h 70 const FT_Vector* translation,
  /external/pdfium/third_party/freetype/src/cff/
cf2intrp.h 70 const FT_Vector* translation,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Sms7BitEncodingTranslator.java 56 * if true and some error occurs during translation, an exception
101 * corresponding character, based on the translation table or white
102 * space, if no mapping is found in the translation table for such
108 Rlog.v(TAG, "No translation needed for " + Integer.toHexString(c));
115 * present on translation table, c does not belong to Unicode Latin-1
120 int translation = -1; local
123 translation = mTranslationTableCommon.get(c, -1);
126 if (translation == -1) {
129 translation = mTranslationTableCDMA.get(c, -1);
133 translation = mTranslationTableGSM.get(c, -1)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardAffordanceHelper.java 303 float translation = getTranslationFromRadius(newRadius);
304 mTranslation = right ? -translation : translation;
320 // We snap back if the current translation is not far enough
372 private void setTranslation(float translation, boolean isReset, boolean animateReset) {
373 translation = rightSwipePossible() ? translation : Math.max(0, translation);
374 translation = leftSwipePossible() ? translation : Math.min(0, translation)
420 float translation = (circleSize - mMinBackgroundRadius) local
    [all...]
  /external/v8/src/compiler/
code-generator.cc 302 Translation* translation, size_t frame_state_offset,
304 // Outer-most state must be added to translation first.
307 translation, frame_state_offset,
311 int id = Translation::kSelfLiteralId;
319 translation->BeginJSFrame(
324 translation->BeginArgumentsAdaptorFrame(
332 translation, instr,
339 AddTranslationForOperand(translation, instr, instr->OutputAt(0));
354 Translation translation
    [all...]
  /external/opencv/cv/src/
cvposit.cpp 114 CvMatr32f rotation, CvVect32f translation )
137 if( !translation )
237 translation[0] = imagePoints[0].x * invScale;
238 translation[1] = imagePoints[0].y * invScale;
239 translation[2] = 1 / inv_Z;
354 CvMatr32f rotation, CvVect32f translation )
361 rotation, translation ));
  /external/eigen/Eigen/src/Geometry/
Translation.h 17 * \class Translation
19 * \brief Represents a translation transformation
24 * \note This class is not aimed to be used to store a translation transformation,
30 class Translation
54 Translation() {}
56 inline Translation(const Scalar& sx, const Scalar& sy)
63 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz)
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
71 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {
90 const VectorType& translation() const { return m_coeffs; } function in class:Eigen::Translation
91 VectorType& translation() { return m_coeffs; } function in class:Eigen::Translation
    [all...]
  /external/eigen/test/eigen2/
eigen2_hyperplane.cpp 54 Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random());
63 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling*translation)
64 .absDistance((rot*scaling*translation) * p1), Scalar(1) );
66 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*translation,Isometry)
67 .absDistance((rot*translation) * p1), Scalar(1) );
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Translation.h 16 * \class Translation
18 * \brief Represents a translation transformation
23 * \note This class is not aimed to be used to store a translation transformation,
29 class Translation
53 Translation() {}
55 inline Translation(const Scalar& sx, const Scalar& sy)
62 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz)
70 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
75 /** Concatenates two translation */
76 inline Translation operator* (const Translation& other) cons
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 309 Vector3f translation = localMatrix.toTranslationVector(); local
314 float y = translation.y;
315 translation.y = translation.z;
316 translation.z = -y;
328 Transform t = new Transform(translation, rotation);
366 Vector3f translation = result.toTranslationVector(); local
370 float y = translation.y;
371 translation.y = translation.z;
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestTangentGen.java 86 private void addMesh(String name, Mesh mesh, Vector3f translation) {
92 testGeom.getLocalTranslation().set(translation);
102 debug.getLocalTranslation().set(translation);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 100 float translation = translationScale * mStartTranslation; local
102 mAppearing ? translation : -translation,
118 float translation = translationScale * mStartTranslation; local
126 mAppearing ? translation : -translation,

Completed in 347 milliseconds

1 2 3 4 5 6