/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
D | BoneTrack.java | 56 private CompactVector3Array translations; field in BoneTrack 74 …public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotatio… in BoneTrack() argument 76 this.setKeyframes(times, translations, rotations); in BoneTrack() 87 …public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotatio… in BoneTrack() argument 89 this.setKeyframes(times, translations, rotations, scales); in BoneTrack() 136 return translations.toObjectArray(); in getTranslations() 145 public void setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations) { in setKeyframes() argument 150 assert times.length == translations.length && times.length == rotations.length; in setKeyframes() 153 this.translations = new CompactVector3Array(); in setKeyframes() 154 this.translations.add(translations); in setKeyframes() [all …]
|
D | SpatialTrack.java | 24 private CompactVector3Array translations; field in SpatialTrack 56 public SpatialTrack(float[] times, Vector3f[] translations, in SpatialTrack() argument 58 setKeyframes(times, translations, rotations, scales); in SpatialTrack() 82 if (translations != null) in setTime() 83 translations.get(0, tempV); in setTime() 90 if (translations != null) in setTime() 91 translations.get(lastFrame, tempV); in setTime() 108 if (translations != null) in setTime() 109 translations.get(startFrame, tempV); in setTime() 115 if (translations != null) in setTime() [all …]
|
D | AnimationFactory.java | 132 protected Vector3f[] translations; field in AnimationFactory 170 translations = new Vector3f[totalFrames]; in AnimationFactory() 392 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales); in buildAnimation() 430 …translations[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[ke… in interpolate() 449 translations[j] = ((Vector3f) keyFrames[i]).clone(); in interpolate()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
D | CalculationBone.java | 25 private Vector3f[] translations; field in CalculationBone 36 this.translations = new Vector3f[boneFramesCount]; in CalculationBone() 40 Arrays.fill(this.translations, 0, boneFramesCount, this.startTranslation); in CalculationBone() 56 this.translations = track.getTranslations(); in CalculationBone() 62 return this.translations==null ? 0 : this.translations.length; in getBoneFramesCount() 106 translations[frame].set(this.getLocalTranslation()); in rotate() 115 track.setKeyframes(track.getTimes(), translations, rotations, scales); in applyCalculatedTracks() local 118 bone.setUserTransforms(translations[0], rotations[0], scales[0]); in applyCalculatedTracks()
|
D | Ipo.java | 134 Vector3f[] translations = new Vector3f[framesAmount + 1]; in calculateTrack() local 224 translations[index] = new Vector3f(translation[0], translation[1], translation[2]); in calculateTrack() 229 calculatedTrack = new SpatialTrack(times, translations, rotations, scales); in calculateTrack() 231 calculatedTrack = new BoneTrack(targetIndex, times, translations, rotations, scales); in calculateTrack()
|
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/ |
D | gen_xmlpool.py | 104 def expandMatches (matches, translations, end=None): argument 106 nTranslations = len(translations) 109 for lang,trans in translations: 114 if len(matches) == 1 and i < len(translations) and \ 134 translations = [("en", gettext.NullTranslations())] variable 141 translations.append ((lang, trans)) 167 expandMatches (descMatches, translations, line) 182 expandMatches ([matchDESC], translations) 191 expandMatches (descMatches, translations)
|
/external/libexif/ |
D | NEWS | 2 * New translations: en_AU, uk 3 * Updated translations: cs, da, de, en_CA, nl, pl, sk, sv, vi 13 * New translations: bs, tr 14 * Updated translations: be, cs, da, de, en_GB, en_CA, it, ja, nl, pl, pt_BR, 25 * New translations: be, en_GB, it, ja, pt, sq, zh_CN 26 * Updated translations: da, sv, vi 32 * New translations: da, pt_BR, sr 33 * Updated translations: cs, de, en_CA, nl, pl, sk, sv, vi 63 * Updated translations: cs, de, pl, sk, vi 64 * New translations: nl, sv, en_CA [all …]
|
D | ABOUT-NLS | 7 A few packages already provide translations for their messages. 17 available translations. They tell how people wanting to contribute and 18 work at translations should contact the appropriate team. 91 translations have been forbidden at `configure' time by using the 92 `--disable-nls' switch, all available translations are installed 123 Not all programs have translations for all languages. By default, an 131 read translations in German than English for when Swedish is not 139 older translations are used. 167 _actively_ in translations, or at solving translational difficulties, 762 the use of `gettext' the only thing missing are the translations. The
|
D | README | 135 The libexif translations are made by volunteers working on their own, 139 <https://translations.edge.launchpad.net/ubuntu/precise/+source/libexif/+pots/libexif-12>. 140 Any updates to language translations coordinated by the Translation Project
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
D | ConstraintShrinkWrap.java | 67 Vector3f[] translations = track.getTranslations(); in bakeConstraint() local 69 int maxFrames = translations.length; in bakeConstraint() 71 Vector3f currentTranslation = translations[frame]; in bakeConstraint() 83 translations[frame] = minDistancePoint.clone(); in bakeConstraint() 86 track.setKeyframes(track.getTimes(), translations, rotations, track.getScales()); in bakeConstraint() local
|
D | ConstraintLocLike.java | 72 Vector3f[] translations = blenderTrack.getTranslations(); in bakeConstraint() local 73 int maxFrames = translations.length; in bakeConstraint() 75 this.locLike(translations[frame], targetTransform.getTranslation(), ipo.calculateValue(frame)); in bakeConstraint() 77 …blenderTrack.setKeyframes(blenderTrack.getTimes(), translations, blenderTrack.getRotations(), blen… in bakeConstraint() local
|
D | ConstraintDistLimit.java | 58 Vector3f[] translations = blenderTrack.getTranslations(); in bakeConstraint() local 60 Vector3f v = translations[frame].subtract(targetLocation); in bakeConstraint() 62 translations[frame].addLocal(v); in bakeConstraint() 64 …blenderTrack.setKeyframes(blenderTrack.getTimes(), translations, blenderTrack.getRotations(), blen… in bakeConstraint() local
|
D | ConstraintLocLimit.java | 83 Vector3f[] translations = track.getTranslations(); in bakeConstraint() local 84 int maxFrames = translations.length; in bakeConstraint() 86 this.locLimit(translations[frame], ipo.calculateValue(frame)); in bakeConstraint() 88 track.setKeyframes(track.getTimes(), translations, track.getRotations(), track.getScales()); in bakeConstraint() local
|
D | BlenderTrack.java | 107 public void setKeyframes(float[] times, Vector3f[] translations, in setKeyframes() argument 110 boneTrack.setKeyframes(times, translations, rotations, scales); in setKeyframes() 112 spatialTrack.setKeyframes(times, translations, rotations, scales); in setKeyframes()
|
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
D | i18n.py | 99 translations = None variable in I18nStore 127 self.translations = {} 183 trans = self.translations.get(locale) 189 self.translations[locale] = trans 229 translations = None variable in I18n 252 self.translations = self.store.get_translations(locale) 274 return self.translations.ugettext(string) % variables 276 return self.translations.ugettext(string) 295 return self.translations.ungettext(singular, plural, n) % variables 297 return self.translations.ungettext(singular, plural, n)
|
/external/elfutils/po/ |
D | LINGUAS | 1 # List of translations, i.e. .po files supplied by translators. 4 # These are automagically created, not real translations.
|
/external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/ |
D | i18n.rst | 49 Create a directory for translations 103 :func:`webapp2_extras.i18n.lazy_gettext` instead, because we want translations 110 Extract and compile translations 113 to extract, initialize, compile and update translations. Refer to Babel's 121 **1.** Extract all translations. We pass the current app directory to be 139 created on step 1. Here we initialize three translations, ``en_US``, ``es_ES`` 167 Update translations 169 When translations change, first repeat step 1 above. It will create a new 179 the translations again.
|
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/ |
D | TestSpatialAnim.java | 58 Vector3f[] translations = new Vector3f[totalFrames]; in simpleInitApp() local 64 translations[i] = new Vector3f(x, 0, 0); in simpleInitApp() 69 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales); in simpleInitApp()
|
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/ |
D | SkeletonLoader.java | 74 private ArrayList<Vector3f> translations = new ArrayList<Vector3f>(); field in SkeletonLoader 185 translations.add(position); in endElement() 204 Vector3f[] transArray = translations.toArray(new Vector3f[translations.size()]); in endElement() 215 translations.clear(); in endElement() 244 translations.clear(); in fullReset()
|
/external/chromium-trace/catapult/third_party/webapp2/docs/api/webapp2_extras/ |
D | i18n.rst | 21 :members: translations, translations_path, domains, 28 :members: store, locale, translations, timezone, tzinfo,
|
/external/e2fsprogs/ |
D | ABOUT-NLS | 7 A few packages already provide translations for their messages. 17 available translations. They tell how people wanting to contribute and 18 work at translations should contact the appropriate team. 91 translations have been forbidden at `configure' time by using the 92 `--disable-nls' switch, all available translations are installed 123 Not all programs have translations for all languages. By default, an 131 read translations in German than English for when Swedish is not 160 _actively_ in translations, or at solving translational difficulties, 429 to use of `gettext' the only thing missing are the translations. The
|
/external/autotest/client/profilers/powertop/src/po/ |
D | Makefile | 5 translations: $(OBJ) target
|
/external/elfutils/ |
D | ABOUT-NLS | 7 languages. A few packages already provide translations for their 18 available translations. They tell how people wanting to contribute and 19 work on translations can contact the appropriate team. 92 translations have been forbidden at `configure' time by using the 93 `--disable-nls' switch, all available translations are installed 127 Not all programs have translations for all languages. By default, an 135 read translations in German than English for when Swedish is not 143 older translations are used. 170 _actively_ in translations, or at solving translational difficulties, 1062 the use of `gettext' the only thing missing are the translations. The
|
/external/bison/ |
D | ABOUT-NLS | 7 languages. A few packages already provide translations for their 18 available translations. They tell how people wanting to contribute and 19 work on translations can contact the appropriate team. 92 translations have been forbidden at `configure' time by using the 93 `--disable-nls' switch, all available translations are installed 127 Not all programs have translations for all languages. By default, an 135 read translations in German than English for when Swedish is not 143 older translations are used. 170 _actively_ in translations, or at solving translational difficulties, 1321 the use of `gettext' the only thing missing are the translations. The
|
/external/libnl/ |
D | ChangeLog | 105 o Routing protocol translations. 106 o Routing metric translations. 108 o Nexthop flag translations. 193 o Move realms translations from route to rtnl module. 201 o Moved scope translations routines from route/route.c to
|