Searched refs:Translation (Results 1 - 25 of 49) sorted by relevance

12

/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTranslation.h16 * \class Translation
29 class Translation class in namespace:Eigen
53 Translation() {} function in class:Eigen::Translation
55 inline Translation(const Scalar& sx, const Scalar& sy) function in class:Eigen::Translation
62 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz) function in class:Eigen::Translation
70 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {} function in class:Eigen::Translation
76 inline Translation operator* (const Translation& other) const
77 { return Translation(m_coeffs + other.m_coeffs); }
91 friend inline TransformType operator* (const LinearMatrixType& linear, const Translation
129 Translation(const Translation<OtherScalarType,Dim>& other) argument
[all...]
H A DAll.h16 #include "Translation.h"
43 #define Translation eigen2_Translation macro
69 #include "Translation.h"
98 #undef Translation macro
H A DRotationBase.h45 inline Transform<Scalar,Dim> operator*(const Translation<Scalar,Dim>& t) const argument
H A DScaling.h26 * \sa class Translation, class Transform
42 typedef Translation<Scalar,Dim> TranslationType;
/external/eigen/Eigen/src/Geometry/
H A DTranslation.h17 * \class Translation
30 class Translation class in namespace:Eigen
54 Translation() {} function in class:Eigen::Translation
56 inline Translation(const Scalar& sx, const Scalar& sy) function in class:Eigen::Translation
63 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz) function in class:Eigen::Translation
71 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {} function in class:Eigen::Translation
94 inline Translation operator* (const Translation& other) const
95 { return Translation(m_coeffs + other.m_coeffs); }
112 inline AffineTransformType operator*(const EigenBase<OtherDerived>& linear, const Translation
158 Translation(const Translation<OtherScalarType,Dim>& other) argument
[all...]
H A DScaling.h30 * \sa Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const;
154 UniformScaling<Scalar>::operator* (const Translation<Scalar,Dim>& t) const argument
/external/chromium_org/v8/src/
H A Ddeoptimizer.cc788 Translation::Opcode opcode =
789 static_cast<Translation::Opcode>(iterator.Next());
790 DCHECK(Translation::BEGIN == opcode);
811 Translation::Opcode opcode =
812 static_cast<Translation::Opcode>(iterator.Next());
814 case Translation::JS_FRAME:
818 case Translation::ARGUMENTS_ADAPTOR_FRAME:
821 case Translation::CONSTRUCT_STUB_FRAME:
824 case Translation::GETTER_STUB_FRAME:
827 case Translation
[all...]
H A Dframes.cc923 if (literal_id == Translation::kSelfLiteralId) {
954 Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next());
955 DCHECK(opcode == Translation::BEGIN);
964 opcode = static_cast<Translation::Opcode>(it.Next());
965 if (opcode == Translation::JS_FRAME) {
975 opcode = static_cast<Translation::Opcode>(it.Next());
980 if (opcode == Translation::LITERAL) {
982 } else if (opcode == Translation::STACK_SLOT) {
1020 } else if (opcode == Translation
[all...]
/external/chromium_org/tools/grit/grit/node/custom/
H A Dfilename_unittest.py27 translation = tclib.Translation(id=msg.GetId(), text='Bilingo bolongo:')
/external/chromium_org/v8/src/compiler/
H A Dcode-generator.h96 Translation* translation, size_t frame_state_offset,
98 void AddTranslationForOperand(Translation* translation, Instruction* instr,
H A Dcode-generator.cc302 Translation* translation, size_t frame_state_offset,
311 int id = Translation::kSelfLiteralId;
354 Translation translation(
369 void CodeGenerator::AddTranslationForOperand(Translation* translation,
/external/chromium_org/tools/grit/grit/
H A Dpseudo.py117 tclib.Translation()
119 transl = tclib.Translation()
H A Dtclib_unittest.py43 trans = tclib.Translation(text=text, placeholders=phs)
55 '''Regression tests a bug that was caused by grit.tclib.Translation
56 inheriting from the translation console's Translation object
64 transl = tclib.Translation(text=msg.GetPresentableContent(),
H A Dclique_unittest.py35 msg_fr = tclib.Translation(text='Bonjour USERNAME, comment ca va?',
38 msg_de = tclib.Translation(text='Guten tag USERNAME, wie geht es dir?',
139 translation = tclib.Translation(id=messages[0].GetId(),
188 translation = tclib.Translation(id=message.GetId(), text='Bilingo bolongo')
H A Dpseudo_rtl.py94 tclib.Translation()
96 transl = tclib.Translation()
H A Dclique.py119 translation: tclib.Translation()
199 This callback will create Translation objects for each message from
219 translation = tclib.Translation(id=id)
233 'Translation for message ID %s had <ph name="%s"/>, no match\n'
251 '''Returns true if the translation (a tclib.Translation object) is valid,
306 CONSTANT_TRANSLATION = tclib.Translation(text='TTTTTT')
334 # subclasses (i.e. tclib.Message and tclib.Translation).
419 'fr' : tclib.Translation,
420 pseudo.PSEUDO_LANG : tclib.Translation }
442 translation: tclib.Translation()
[all...]
H A Dtclib.py29 '''Base class with methods shared by Message and Translation.
181 class Translation(BaseMessage): class in inherits:BaseMessage
185 super(Translation, self).__init__(text, placeholders, description, meaning)
/external/llvm/lib/Option/
H A DArgList.cpp253 const char *Translation,
259 Output.push_back(MakeArgString(StringRef(Translation) +
262 Output.push_back(Translation);
252 AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0, const char *Translation, bool Joined) const argument
/external/giflib/
H A Dgifalloc.c204 GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]) argument
210 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
/external/eigen/test/
H A Dgeo_transformations.cpp25 typedef Translation<Scalar,3> Translation3;
93 typedef Translation<Scalar,2> Translation2;
94 typedef Translation<Scalar,3> Translation3;
381 Translation<float,3> tr1f = tr1.template cast<float>();
383 Translation<double,3> tr1d = tr1.template cast<double>();
/external/chromium_org/tools/grit/grit/extern/
H A Dtclib.py7 # messages destined for the Translation Console, as well as for reading
21 # The basic classes defined here for external use are Message and Translation,
99 # BaseMessage is the common parent class of Message and Translation.
454 # The Translation class represents translated messages
456 class Translation(BaseMessage): class in inherits:BaseMessage
500 Returns a copy of this Translation.
502 return Translation(None, clone_from=self)
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.h139 void WriteTranslation(LEnvironment* environment, Translation* translation);
243 Translation* translation,
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.h271 void WriteTranslation(LEnvironment* environment, Translation* translation);
274 Translation* translation,
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.h119 void WriteTranslation(LEnvironment* environment, Translation* translation);
221 Translation* translation,
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.h138 void WriteTranslation(LEnvironment* environment, Translation* translation);
242 Translation* translation,

Completed in 3186 milliseconds

12