HomeSort by relevance Sort by last modified time
    Searched refs:Translation (Results 26 - 50 of 70) sorted by null

12 3

  /external/chromium_org/tools/grit/grit/
clique.py 114 def FindCliqueAndAddTranslation(self, translation, language):
115 '''Adds the specified translation to the clique with the source message
116 it is a translation of.
119 translation: tclib.Translation()
125 if translation.GetId() in self.cliques_:
126 for clique in self.cliques_[translation.GetId()]:
127 clique.AddTranslation(translation, language)
199 This callback will create Translation objects for each message from
210 if debug: print "Ignoring translation #%s" % i
    [all...]
tclib_unittest.py 43 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(),
  /external/chromium_org/tools/grit/grit/gather/
rc.py 244 # VALUE "Translation", 0x409, 1252
270 # "Translation" VALUE block to indicate the correct language code.
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 26 * \sa class Translation, class Transform
41 /** corresponding translation type */
42 typedef Translation<Scalar,Dim> TranslationType;
81 /** Concatenates a scaling and a translation */
153 res.translation() = m_coeffs.cwise() * t.vector();
  /external/giflib/
gifalloc.c 201 Apply a given color translation to the raster bits of an image
204 GifApplyTranslation(SavedImage *Image, GifPixelType Translation[])
210 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
gif_lib.h 248 extern void GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]);
  /external/v8/src/ia32/
lithium-codegen-ia32.h 121 // Emit frame translation commands for an environment.
122 void WriteTranslation(LEnvironment* environment, Translation* translation);
223 void AddToTranslation(Translation* translation,
  /external/v8/src/x64/
lithium-codegen-x64.h 114 // Emit frame translation commands for an environment.
115 void WriteTranslation(LEnvironment* environment, Translation* translation);
214 void AddToTranslation(Translation* translation,
  /external/eigen/test/
geo_transformations.cpp 35 typedef Translation<Scalar,2> Translation2;
36 typedef Translation<Scalar,3> Translation3;
75 // translation * vector
106 typedef Translation<Scalar,2> Translation2;
107 typedef Translation<Scalar,3> Translation3;
267 // mat * aligned scaling and mat * translation
274 // mat * transformation and aligned scaling * translation
298 // translation * aligned scaling and transformation * mat
301 // scaling * mat and translation * mat
307 // translation * mat and aligned scaling * transformatio
    [all...]
geo_hyperplane.cpp 55 Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random());
64 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling*translation)
65 .absDistance((rot*scaling*translation) * p1), Scalar(1) );
67 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*translation,Isometry)
68 .absDistance((rot*translation) * p1), Scalar(1) );
  /external/llvm/lib/Option/
ArgList.cpp 264 const char *Translation,
271 Output.push_back(MakeArgString(StringRef(Translation) +
274 Output.push_back(Translation);
  /external/chromium_org/tools/grit/grit/extern/
tclib.py 7 # 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):
500 Returns a copy of this Translation.
502 return Translation(None, clone_from=self)
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.h 173 // Emit frame translation commands for an environment.
174 void WriteTranslation(LEnvironment* environment, Translation* translation);
291 Translation* translation,
  /external/chromium_org/v8/src/ia32/
lithium-codegen-ia32.h 173 // Emit frame translation commands for an environment.
174 void WriteTranslation(LEnvironment* environment, Translation* translation);
286 Translation* translation,
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.h 172 // Emit frame translation commands for an environment.
173 void WriteTranslation(LEnvironment* environment, Translation* translation);
295 Translation* translation,
  /external/chromium_org/v8/src/x64/
lithium-codegen-x64.h 141 // Emit frame translation commands for an environment.
142 void WriteTranslation(LEnvironment* environment, Translation* translation);
251 Translation* translation,
  /external/eigen/unsupported/test/
openglsupport.cpp 191 Translation<float,3> tf3; tf3.vector().setRandom();
194 Translation<double,3> td3; td3.vector().setRandom();
  /external/v8/src/arm/
lithium-codegen-arm.h 131 // Emit frame translation commands for an environment.
132 void WriteTranslation(LEnvironment* environment, Translation* translation);
234 void AddToTranslation(Translation* translation,
  /external/v8/src/mips/
lithium-codegen-mips.h 127 // Emit frame translation commands for an environment.
128 void WriteTranslation(LEnvironment* environment, Translation* translation);
234 void AddToTranslation(Translation* translation,
  /external/chromium_org/remoting/tools/
json_to_grd.py 124 # We've already written translation for this message.
126 parsed_translation = tclib.Translation(text, msg_id, placeholders)
129 translation = doc.createElement('translation')
130 bundle.appendChild(translation)
131 translation.setAttribute('id', parsed_translation.GetId())
135 translation.appendChild(ph)
138 translation.appendChild(doc.createTextNode(part))
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 55 /** \returns the concatenation of the rotation \c *this with a translation \a t */
56 inline Transform<Scalar,Dim,Isometry> operator*(const Translation<Scalar,Dim>& t) const
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 33 typedef Translation<Scalar,2> Translation2;
34 typedef Translation<Scalar,3> Translation3;
254 // mat * scaling and mat * translation
257 // mat * transformation and scaling * translation
263 // translation * scaling and transformation * mat
266 // scaling * mat and translation * mat
272 // translation * mat and scaling * transformation
279 // transformation * translation
283 // translation * transformation
293 // translation * quaternio
    [all...]
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/v8/src/
deoptimizer.h 287 // the next command. Returns false if translation of the command failed
551 class Translation BASE_EMBEDDED {
572 Translation(TranslationBuffer* buffer, int frame_count, int jsframe_count)
  /external/chromium_org/chrome/browser/resources/translate_internals/
translate_internals.js 110 * @param {string} error Translation error type from the browser.
123 6: 'Translation Error',

Completed in 944 milliseconds

12 3