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

1 2 3

  /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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/Renderable/
Light.java 77 public synchronized void updateLightPosition(float[] translation) {
79 Matrix.translateM(getModelMatrix(), 0, translation[X], translation[Y], translation[Z]); local
  /external/autotest/frontend/client/src/autotest/afe/
JobStatusDataSource.java 53 String translation = translateStatus(status); local
54 queueEntry.put("status", new JSONString(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 EIGEN_DEVICE_FUNC Translation() {}
56 EIGEN_DEVICE_FUNC inline Translation(const Scalar& sx, const Scalar& sy)
63 EIGEN_DEVICE_FUNC 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 EIGEN_DEVICE_FUNC explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {
90 EIGEN_DEVICE_FUNC const VectorType& translation() const { return m_coeffs; } function in class:Eigen::Translation
91 EIGEN_DEVICE_FUNC VectorType& translation() { return m_coeffs; } function in class:Eigen::Translation
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/naming/
ClassRenamingMapper.java 9 * Provides a translation between class names based on a source and target proguard map.
14 * <li> {@link #translation} a bidirectional mapping between obfuscated names on the source
42 ImmutableBiMap<String, String> translation = translationBuilder.build(); local
44 .copyOf(Sets.difference(targetObfuscatedToOriginal.keySet(), translation.values()));
46 return new ClassRenamingMapper(translation, newClasses.build(), unusedNames);
53 public final ImmutableBiMap<String, String> translation; field in class:ClassRenamingMapper
65 private ClassRenamingMapper(ImmutableBiMap<String, String> translation,
67 this.translation = translation;
75 builder.append("Translation:\n\n")
    [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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
461 # a mapping between absolute .mo file path and Translation object
464 def translation(domain, localedir=None, languages=None, function
472 raise IOError(ENOENT, 'No translation file found for domain', domain)
482 # Copy the translation object to allow setting fallbacks and
496 t = translation(domain, localedir, fallback=True, codeset=codeset)
532 t = translation(domain, _localedirs.get(domain, None),
540 t = translation(domain, _localedirs.get(domain, None),
548 t = translation(domain, _localedirs.get(domain, None),
559 t = translation(domain, _localedirs.get(domain, None),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
458 # a mapping between absolute .mo file path and Translation object
461 def translation(domain, localedir=None, languages=None, function
469 raise IOError(ENOENT, 'No translation file found for domain', domain)
479 # Copy the translation object to allow setting fallbacks and
493 t = translation(domain, localedir, fallback=True, codeset=codeset)
529 t = translation(domain, _localedirs.get(domain, None),
537 t = translation(domain, _localedirs.get(domain, None),
545 t = translation(domain, _localedirs.get(domain, None),
556 t = translation(domain, _localedirs.get(domain, None),
    [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...]
quotearg.c 188 /* 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/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineVertexUtil.cpp 713 const Vec2& translation = translations[quadNdx]; local
718 Vec4(translation.x(), translation.y(), 0.0f, 1.0f),
723 Vec4(translation.x(), translation.y() + quadSize, 0.0f, 1.0f),
728 Vec4(translation.x() + quadSize, translation.y(), 0.0f, 1.0f),
733 Vec4(translation.x() + quadSize, translation.y() + quadSize, 0.0f, 1.0f),
  /external/freetype/src/cff/
cf2font.c 332 /* include Fontmatrix but ignore translation */
338 /* save client transform, without the translation */
489 FT_Vector translation; local
502 translation.x = transform->tx;
503 translation.y = transform->ty;
521 /* build the outline, passing the full translation */
525 &translation,
552 /* FreeType just wants the advance width; there is no translation */
  /external/pdfium/third_party/freetype/src/cff/
cf2font.c 283 /* include Fontmatrix but ignore translation */
289 /* save client transform, without the translation */
439 FT_Vector translation; local
452 translation.x = transform->tx;
453 translation.y = transform->ty;
471 /* build the outline, passing the full translation */
475 &translation,
502 /* FreeType just wants the advance width; there is no translation */
  /prebuilts/gdb/darwin-x86/lib/python2.7/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
458 # a mapping between absolute .mo file path and Translation object
461 def translation(domain, localedir=None, languages=None, function
469 raise IOError(ENOENT, 'No translation file found for domain', domain)
479 # Copy the translation object to allow setting fallbacks and
493 t = translation(domain, localedir, fallback=True, codeset=codeset)
529 t = translation(domain, _localedirs.get(domain, None),
537 t = translation(domain, _localedirs.get(domain, None),
545 t = translation(domain, _localedirs.get(domain, None),
556 t = translation(domain, _localedirs.get(domain, None)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
458 # a mapping between absolute .mo file path and Translation object
461 def translation(domain, localedir=None, languages=None, function
469 raise IOError(ENOENT, 'No translation file found for domain', domain)
479 # Copy the translation object to allow setting fallbacks and
493 t = translation(domain, localedir, fallback=True, codeset=codeset)
529 t = translation(domain, _localedirs.get(domain, None),
537 t = translation(domain, _localedirs.get(domain, None),
545 t = translation(domain, _localedirs.get(domain, None),
556 t = translation(domain, _localedirs.get(domain, None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
458 # a mapping between absolute .mo file path and Translation object
461 def translation(domain, localedir=None, languages=None, function
469 raise IOError(ENOENT, 'No translation file found for domain', domain)
479 # Copy the translation object to allow setting fallbacks and
493 t = translation(domain, localedir, fallback=True, codeset=codeset)
529 t = translation(domain, _localedirs.get(domain, None),
537 t = translation(domain, _localedirs.get(domain, None),
545 t = translation(domain, _localedirs.get(domain, None),
556 t = translation(domain, _localedirs.get(domain, None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
458 # a mapping between absolute .mo file path and Translation object
461 def translation(domain, localedir=None, languages=None, function
469 raise IOError(ENOENT, 'No translation file found for domain', domain)
479 # Copy the translation object to allow setting fallbacks and
493 t = translation(domain, localedir, fallback=True, codeset=codeset)
529 t = translation(domain, _localedirs.get(domain, None),
537 t = translation(domain, _localedirs.get(domain, None),
545 t = translation(domain, _localedirs.get(domain, None),
556 t = translation(domain, _localedirs.get(domain, None)
    [all...]
  /external/python/cpython2/Lib/
gettext.py 54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
534 # a mapping between absolute .mo file path and Translation object
537 def translation(domain, localedir=None, languages=None, function
545 raise IOError(ENOENT, 'No translation file found for domain', domain)
555 # Copy the translation object to allow setting fallbacks and
569 t = translation(domain, localedir, fallback=True, codeset=codeset)
605 t = translation(domain, _localedirs.get(domain, None),
613 t = translation(domain, _localedirs.get(domain, None),
621 t = translation(domain, _localedirs.get(domain, None),
632 t = translation(domain, _localedirs.get(domain, None)
    [all...]
  /external/v8/src/inspector/
wasm-translation.cc 5 #include "src/inspector/wasm-translation.h"
24 WasmTranslation* translation; member in struct:WasmTranslation::TranslatorImpl::TransLocation
28 TransLocation(WasmTranslation* translation, String16 script_id, int line,
30 : translation(translation),
61 void Init(Isolate* isolate, WasmTranslation* translation,
73 AddFakeScript(isolate, script_id, func_idx, translation, agent);
109 v8::Isolate* isolate = loc->translation->isolate_;
180 int func_idx, WasmTranslation* translation,
195 V8DebuggerScript::CreateWasm(isolate, translation, script
    [all...]
  /external/v8/tools/turbolizer/
graph-view.js 1021 var translation = [-minX*scale, -minY*scale]; variable
1022 translation = graph.getVisibleTranslation(translation, scale);
1023 graph.translateClipped(translation, scale, transition);
1029 var translation = [0, 0]; variable
1030 translation = graph.getVisibleTranslation(translation, minScale);
1031 graph.translateClipped(translation, minScale);
  /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,
  /frameworks/base/telephony/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...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
KeyMaps.java 463 * during final translation.
670 String translation = sOutputForResultChar.get(c); local
671 if (translation == null) {
676 result.append(translation);
  /external/e2fsprogs/intl/
dcigettext.c 236 /* 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 = retval
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripLayout.java 69 // We use this to record the current translation position instead of using
70 // the real value because we might set the translation before onMeasure()
353 // filmstrip view. To do so, on our first translation, jump the filmstrip view
354 // to the correct position, and then smoothly animate the translation from that
497 * Adjust the target width and translation calculation when we start translating
526 float translation = mFilmstripContentLayout.getTranslationX() - mOffset; local
527 if (translation == width) {

Completed in 1748 milliseconds

1 2 3