Searched defs:translation (Results 1 - 25 of 41) sorted by relevance

12

/external/deqp/framework/common/
H A DtcuMatrixUtil.hpp34 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) argument
53 res(row, Len) = translation.m_data[row];
/external/libexif/test/nls/
H A Dtest-nls.c49 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/chromium_org/third_party/freetype/src/cff/
H A Dcf2font.c176 /* include Fontmatrix but ignore translation */
182 /* save client transform, without the translation */
328 FT_Vector translation; local
341 translation.x = transform->tx;
342 translation.y = transform->ty;
360 /* build the outline, passing the full translation */
364 &translation,
391 /* FreeType just wants the advance width; there is no translation */
H A Dcf2intrp.c424 const FT_Vector* translation,
500 translation );
1113 translation,
1129 translation,
421 cf2_interpT2CharString( CF2_Font font, CF2_Buffer buf, CF2_OutlineCallbacks callbacks, const FT_Vector* translation, FT_Bool doingSeac, CF2_Fixed curX, CF2_Fixed curY, CF2_Fixed* width ) argument
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2font.c177 /* include Fontmatrix but ignore translation */
183 /* save client transform, without the translation */
330 FT_Vector translation; local
344 translation.x = transform->tx;
345 translation.y = transform->ty;
363 /* build the outline, passing the full translation */
367 &translation,
394 /* FreeType just wants the advance width; there is no translation */
H A Dcf2intrp.c424 const FT_Vector* translation,
502 translation );
1115 translation,
1131 translation,
421 cf2_interpT2CharString( CF2_Font font, CF2_Buffer buf, CF2_OutlineCallbacks callbacks, const FT_Vector* translation, FT_Bool doingSeac, CF2_Fixed curX, CF2_Fixed curY, CF2_Fixed* width ) argument
/external/bison/lib/
H A Dgettext.h103 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
262 const char *translation; local
[all...]
H A Dquotearg.c188 /* MSGID approximates a quotation mark. Return its translation if it
195 char const *translation = _(msgid); local
198 if (translation != msgid)
199 return translation;
300 If the catalog has no translation, we will try to
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformDistance.cpp168 FloatPoint translation = transform->translate(); local
169 translation += FloatSize::narrowPrecision(m_transform.e(), m_transform.f());
170 newTransform->setTranslate(translation.x(), translation.y());
/external/eigen/Eigen/src/Geometry/
H A DTranslation.h19 * \brief Represents a translation transformation
24 * \note This class is not aimed to be used to store a translation transformation,
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
73 /** \brief Retruns the x-translation by value. **/
75 /** \brief Retruns the y-translation by value. **/
77 /** \brief Retruns the z-translation by value. **/
80 /** \brief Retruns the x-translation as a reference. **/
82 /** \brief Retruns the y-translation as a reference. **/
84 /** \brief Retruns the z-translation a
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...]
H A DTransform.h94 * linear & translation\\
210 /** type of a read/write reference to the translation part of the rotation */
212 /** type of a read reference to the translation part of the rotation */
214 /** corresponding translation type */
332 translation() = other.translation();
381 /** \returns a read-only expression of the translation vector of the transformation */
382 inline ConstTranslationPart translation() const { return ConstTranslationPart(m_matrix,0,Dim); } function in class:Eigen::Transform
383 /** \returns a writable expression of the translation vector of the transformation */
384 inline TranslationPart translation() { retur function in class:Eigen::Transform
[all...]
/external/freetype/src/cff/
H A Dcf2font.c272 /* include Fontmatrix but ignore translation */
278 /* save client transform, without the translation */
428 FT_Vector translation; local
441 translation.x = transform->tx;
442 translation.y = transform->ty;
460 /* build the outline, passing the full translation */
464 &translation,
491 /* FreeType just wants the advance width; there is no translation */
H A Dcf2intrp.c424 const FT_Vector* translation,
500 translation );
1113 translation,
1129 translation,
421 cf2_interpT2CharString( CF2_Font font, CF2_Buffer buf, CF2_OutlineCallbacks callbacks, const FT_Vector* translation, FT_Bool doingSeac, CF2_Fixed curX, CF2_Fixed curY, CF2_Fixed* width ) argument
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DAffineTransform.h154 static AffineTransform translation(double x, double y) function in class:blink::AffineTransform
/external/qemu/
H A Dblockdev.c144 int cyls, heads, secs, translation; local
158 translation = BIOS_ATA_TRANSLATION_AUTO;
244 translation = BIOS_ATA_TRANSLATION_NONE;
246 translation = BIOS_ATA_TRANSLATION_LBA;
248 translation = BIOS_ATA_TRANSLATION_AUTO;
250 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
435 bdrv_set_translation_hint(dinfo->bdrv, translation);
/external/chromium_org/ui/gfx/
H A Dtransform_util.cc222 const SkMatrix44& translation,
229 matrix.preConcat(translation);
438 SkMatrix44 translation = BuildTranslationMatrix(decomp); local
443 return ComposeTransform(perspective, translation, rotation, skew, scale);
453 SkMatrix44 translation = BuildSnappedTranslationMatrix(decomp); local
464 ComposeTransform(perspective, translation, rotation_matrix, skew, scale);
221 ComposeTransform(const SkMatrix44& perspective, const SkMatrix44& translation, const SkMatrix44& rotation, const SkMatrix44& skew, const SkMatrix44& scale) argument
H A Dtransform_unittest.cc233 Transform translation; local
234 translation.Translate(value.tx, value.ty);
235 xform = translation * xform;
460 Transform translation; local
461 translation.Translate(value.tx, value.ty);
462 xform = translation * xform;
1268 // perspective * translation * rotation * skew * scale
1390 // Invert a translation
1391 gfx::Transform translation; local
1392 translation
2649 Transform translation; local
2658 Transform translation; local
2671 Transform translation; local
2680 Transform translation; local
[all...]
/external/chromium_org/v8/src/compiler/
H A Dcode-generator.cc302 Translation* translation, size_t frame_state_offset,
304 // Outer-most state must be added to translation first.
307 translation, frame_state_offset,
319 translation->BeginJSFrame(
324 translation->BeginArgumentsAdaptorFrame(
332 translation, instr,
339 AddTranslationForOperand(translation, instr, instr->OutputAt(0));
354 Translation translation(
357 BuildTranslationForFrameStateDescriptor(descriptor, instr, &translation,
363 descriptor->bailout_id(), translation
300 BuildTranslationForFrameStateDescriptor( FrameStateDescriptor* descriptor, Instruction* instr, Translation* translation, size_t frame_state_offset, OutputFrameStateCombine state_combine) argument
369 AddTranslationForOperand(Translation* translation, Instruction* instr, InstructionOperand* op) argument
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTransform.h63 /** type of a read/write reference to the translation part of the rotation */
65 /** type of a read/write reference to the translation part of the rotation */
67 /** corresponding translation type */
108 transform->translation().setZero();
152 /** \returns a read-only expression of the translation vector of the transformation */
153 inline ConstTranslationPart translation() const { return m_matrix.template block<Dim,1>(0,Dim); } function in class:Eigen::Transform
154 /** \returns a writable expression of the translation vector of the transformation */
155 inline TranslationPart translation() { return m_matrix.template block<Dim,1>(0,Dim); } function in class:Eigen::Transform
426 /** Applies on the right the translation matrix represented by the vector \a other
436 translation()
[all...]
/external/e2fsprogs/intl/
H A Ddcigettext.c236 /* And finally the translation. */
237 const char *translation; member in struct:known_translation_t
311 const char *translation, size_t translation_len)
480 /* Try to find the translation among those which we found at
494 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation,
497 retval = (char *) (*foundp)->translation;
580 got an ordered list of languages to consider for the translation. */
590 by implicitly appending a "C" entry, i.e. no translation
642 /* Found the translation of MSGID1 in domain DOMAIN:
662 newp->translation
1033 plural_lookup(struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len) argument
[all...]
/external/qemu/include/block/
H A Dblock_int.h193 int cyls, heads, secs, translation; member in struct:BlockDriverState
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_common.cc123 // computes a change of basis translation. It does this by accumulating the
124 // translation components of the draw transforms of each target between the
137 gfx::Vector2dF translation; local
141 // Ensure that this translation is truly 2d.
144 translation += trans.To2dTranslation();
147 return translation;
160 gfx::Vector2dF translation = ComputeChangeOfBasisTranslation<LayerType>( local
163 translation.Scale(-1.f);
165 gfx::RectF(rect.origin() + translation, rect.size()));
236 // a translation whe
[all...]
H A Dlayer_tree_host_common_unittest.cc236 // scale transform, because scale and translation are not commutative.
1071 // skipping a necessary translation. Without that translation, the coordinate
5729 // Case 2: Integral translation.
5739 // Case 3: Non-integral translation.
7899 TransformOperations translation; local
7900 translation.AppendTranslate(1.f, 2.f, 3.f);
7903 parent_raw, 1.0, TransformOperations(), translation);
8007 // |child| has a transform that's neither a translation nor a scale.
8035 // |grand_parent| has a transform that's neither a translation no
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer.cc449 gfx::Transform translation; local
450 translation.Translate(static_cast<float>(p->bounds().x()),
456 transform->ConcatTransform(translation);
/external/qemu/hw/i386/
H A Dpc.c363 int cylinders, heads, sectors, translation; local
367 geometry can be different if a translation is done. */
368 translation = bdrv_get_translation_hint(hd_table[i]);
369 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
372 /* No translation. */
373 translation = 0;
375 /* LBA translation. */
376 translation = 1;
379 translation--;
381 val |= translation << (
[all...]

Completed in 2673 milliseconds

12