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

1 2

  /external/webkit/WebCore/rendering/
RenderSVGTransformableContainer.cpp 53 FloatSize translation = static_cast<SVGShadowTreeContainerElement*>(node())->containerTranslation();
54 if (translation.width() == 0 && translation.height() == 0)
57 m_localTransform.translate(translation.width(), translation.height());
  /external/webkit/WebKit/android/nav/
CachedLayer.cpp 51 const FloatPoint& translation = aLayer->translation(); local
52 temp.move(translation.x(), translation.y());
59 position.x(), position.y(), translation.x(), translation.y(),
  /external/quake/quake/src/WinQuake/
draw.h 31 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation);
draw.cpp 427 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation)
451 dest[u] = translation[tbyte];
464 dest[u] = translation[tbyte];
466 dest[u+1] = translation[tbyte];
468 dest[u+2] = translation[tbyte];
470 dest[u+3] = translation[tbyte];
472 dest[u+4] = translation[tbyte];
474 dest[u+5] = translation[tbyte];
476 dest[u+6] = translation[tbyte];
478 dest[u+7] = translation[tbyte]
    [all...]
  /external/quake/quake/src/QW/client/
draw.h 32 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation);
draw.c 533 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation)
557 dest[u] = translation[tbyte];
570 dest[u] = translation[tbyte];
572 dest[u+1] = translation[tbyte];
574 dest[u+2] = translation[tbyte];
576 dest[u+3] = translation[tbyte];
578 dest[u+4] = translation[tbyte];
580 dest[u+5] = translation[tbyte];
582 dest[u+6] = translation[tbyte];
584 dest[u+7] = translation[tbyte]
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 196 FloatSize translation = glyphBuffer.offsetAt(from); local
197 if (translation.width() || translation.height()) {
203 xform.eDx = translation.width();
204 xform.eDy = translation.height();
350 FloatSize translation = glyphBuffer.offsetAt(from); local
367 CGContextSetTextPosition(cgContext, point.x() + translation.width() + shadowSize.width(), point.y() + translation.height() + shadowSize.height());
370 CGContextSetTextPosition(cgContext, point.x() + translation.width() + shadowSize.width() + font->syntheticBoldOffset(), point.y() + translation.height() + shadowSize.height())
    [all...]
  /dalvik/vm/mterp/armv5te/
entry.S 119 b jitSVShadowRunStart @ re-enter the translation after the
125 bx r10 @ re-enter the translation
footer.S 85 * Return from the translation cache to the interpreter when the compiler is
112 * lr <= resume point in translation
131 * Return from the translation cache and immediately request
132 * a translation for the exit target. Commonly used for callees.
141 bl dvmJitGetCodeAddr @ Is there a translation?
143 mov r1, rPC @ arg1 of translation may need this
145 cmp r0,#0 @ !0 means translation exists
150 * Return from the translation cache and immediately request
151 * a translation for the exit target. Commonly used following
161 bl dvmJitGetCodeAddr @ Is there a translation
    [all...]
  /external/bison/lib/
quotearg.c 163 /* MSGID approximates a quotation mark. Return its translation if it
168 char const *translation = _(msgid); local
169 if (translation == msgid && s == clocale_quoting_style)
170 translation = "\"";
171 return translation;
230 "'". If the catalog has no translation,
  /external/webkit/WebCore/svg/
SVGTransformDistance.cpp 219 FloatPoint translation = transform.translate(); local
220 translation += FloatSize::narrowPrecision(m_transform.e(), m_transform.f());
221 newTransform.setTranslate(translation.x(), translation.y());
233 // FIXME: I'm not certain the translation is calculated correctly here
SVGSVGElement.cpp 213 void SVGSVGElement::setCurrentTranslate(const FloatPoint &translation)
215 m_translation = translation;
  /external/e2fsprogs/intl/
dcigettext.c 235 /* And finally the translation. */
236 const char *translation; member in struct:known_translation_t
310 const char *translation, size_t translation_len)
479 /* Try to find the translation among those which we found at
493 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation,
496 retval = (char *) (*foundp)->translation;
579 got an ordered list of languages to consider for the translation. */
589 by implicitly appending a "C" entry, i.e. no translation
641 /* Found the translation of MSGID1 in domain DOMAIN:
661 newp->translation = retval
    [all...]
  /external/bluetooth/glib/glib/
gstrfuncs.c 3033 const gchar *translation; local
3096 const char *translation; local
    [all...]
  /external/qemu/
block_int.h 157 int cyls, heads, secs, translation; member in struct:BlockDriverState
block.c 810 int translation, lba_detected = 0; local
817 translation = bdrv_get_translation_hint(bs);
826 translation was active, so the default
834 /* disable any translation to be in sync with
836 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
853 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
882 void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
884 bs->translation = translation;
902 return bs->translation;
    [all...]
block.h 115 void bdrv_set_translation_hint(BlockDriverState *bs, int translation);
vl-android.c 2162 int cyls, heads, secs, translation; local
4924 int cyls, heads, secs, translation; local
    [all...]
vl.c 2241 int cyls, heads, secs, translation; local
4988 int cyls, heads, secs, translation; local
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 132 #translation between symbol names used in decision trees
134 %translation = (
273 $translated = $translation{$table}{$sym};
  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.h 80 SkPoint translation() const { return m_translation; } function in class:WebCore::LayerAndroid
  /external/webkit/WebCore/platform/graphics/cg/
PathCG.cpp 157 CGAffineTransform translation = CGAffineTransformMake(1, 0, 0, 1, size.width(), size.height()); local
159 CGPathAddPath(newPath, &translation, m_path);
  /device/samsung/crespo/alsa-lib/include/sound/
emu10k1.h 282 unsigned int translation; /* translation type (EMU10K1_GPR_TRANSLATION*) */ member in struct:__anon1411
  /build/tools/droiddoc/templates/assets/
android-developer-docs.js 443 if (node.not(":empty").length != 0) { //if this languages node has a translation, show it
457 if (node.not(":empty").length != 0) { // if this languages node has a translation, show it
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 396 if (node.not(":empty").length != 0) { //if this languages node has a translation, show it
410 if (node.not(":empty").length != 0) { // if this languages node has a translation, show it

Completed in 1064 milliseconds

1 2