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

1 2 3 4 5

  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
AnimData.java 36 import com.jme3.animation.Skeleton;
41 public final Skeleton skeleton; field in class:AnimData
44 public AnimData(Skeleton skeleton, ArrayList<Animation> anims) {
45 this.skeleton = skeleton;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
SkeletonDebugger.java 35 import com.jme3.animation.Skeleton;
44 private Skeleton skeleton; field in class:SkeletonDebugger
46 public SkeletonDebugger(String name, Skeleton skeleton){
49 this.skeleton = skeleton;
50 wires = new SkeletonWire(skeleton);
51 points = new SkeletonPoints(skeleton);
66 // skeleton.resetAndUpdate()
    [all...]
SkeletonPoints.java 36 import com.jme3.animation.Skeleton;
48 private Skeleton skeleton; field in class:SkeletonPoints
50 public SkeletonPoints(Skeleton skeleton){
51 this.skeleton = skeleton;
56 FloatBuffer fpb = BufferUtils.createFloatBuffer(skeleton.getBoneCount() * 3);
69 for (int i = 0; i < skeleton.getBoneCount(); i++){
70 Bone bone = skeleton.getBone(i)
    [all...]
SkeletonWire.java 36 import com.jme3.animation.Skeleton;
50 private Skeleton skeleton; field in class:SkeletonWire
62 indexBuf.put( (short) skeleton.getBoneIndex(bone) );
64 indexBuf.put( (short) skeleton.getBoneIndex(child) );
70 public SkeletonWire(Skeleton skeleton){
71 this.skeleton = skeleton;
72 for (Bone bone : skeleton.getRoots()
    [all...]
  /art/compiler/dex/quick/x86/
assemble_x86.cc     [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
dtitvfmt.h 67 * from (skeleton, the_largest_different_calendar_field)
71 * A skeleton
92 * letter length in skeleton.
112 * There is a set of pre-defined static skeleton strings.
115 * For example, for a skeleton UDAT_YEAR_ABBR_MONTH_DAY, which is &quot;yMMMd&quot;,
125 * For date skeleton, the interval patterns when year, or month, or date is
127 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
131 * If a skeleton is not found in a locale's DateIntervalInfo, which means
132 * the interval patterns for the skeleton is not defined in resource file,
176 * create an instance using default or given locale plus given skeleton
    [all...]
dtitvinf.h 47 * formatter when user pass in skeleton and locale.
56 * from (skeleton, the_largest_different_calendar_field)
60 * A skeleton
77 * letter length in skeleton.
93 * There is a set of pre-defined static skeleton strings.
96 * For example, for a skeleton UDAT_YEAR_ABBR_MONTH_DAY, which is &quot;yMMMd&quot;,
106 * For date skeleton, the interval patterns when year, or month, or date is
108 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
124 * but for skeleton &quot;yMMMd&quot;, the interval pattern when day is different is
126 * pattern is the earlier date. But for skeleton &quot;yMMMd&quot;, when day is different
    [all...]
udatpg.h 30 * patterns. Once that is done, a query can be made using a "skeleton", which is
32 * will return the "best fit" pattern corresponding to that skeleton.
92 * pattern to match those in the skeleton (when this would not happen
185 * Get the best pattern matching the input skeleton. It is guaranteed to
186 * have all of the fields in the skeleton.
195 * @param skeleton
196 * The skeleton is a pattern containing only the variable fields.
198 * @param length the length of skeleton
200 * The best pattern found from the given skeleton.
209 const UChar *skeleton, int32_t length
    [all...]
  /external/icu4c/i18n/unicode/
dtitvfmt.h 67 * from (skeleton, the_largest_different_calendar_field)
71 * A skeleton
92 * letter length in skeleton.
112 * There is a set of pre-defined static skeleton strings.
115 * For example, for a skeleton UDAT_YEAR_ABBR_MONTH_DAY, which is &quot;yMMMd&quot;,
125 * For date skeleton, the interval patterns when year, or month, or date is
127 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
131 * If a skeleton is not found in a locale's DateIntervalInfo, which means
132 * the interval patterns for the skeleton is not defined in resource file,
176 * create an instance using default or given locale plus given skeleton
    [all...]
dtitvinf.h 39 * formatter when user pass in skeleton and locale.
48 * from (skeleton, the_largest_different_calendar_field)
52 * A skeleton
69 * letter length in skeleton.
85 * There is a set of pre-defined static skeleton strings.
88 * For example, for a skeleton UDAT_YEAR_ABBR_MONTH_DAY, which is &quot;yMMMd&quot;,
98 * For date skeleton, the interval patterns when year, or month, or date is
100 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
116 * but for skeleton &quot;yMMMd&quot;, the interval pattern when day is different is
118 * pattern is the earlier date. But for skeleton &quot;yMMMd&quot;, when day is different
    [all...]
udatpg.h 30 * patterns. Once that is done, a query can be made using a "skeleton", which is
32 * will return the "best fit" pattern corresponding to that skeleton.
92 * pattern to match those in the skeleton (when this would not happen
187 * Get the best pattern matching the input skeleton. It is guaranteed to
188 * have all of the fields in the skeleton.
197 * @param skeleton
198 * The skeleton is a pattern containing only the variable fields.
200 * @param length the length of skeleton
202 * The best pattern found from the given skeleton.
211 const UChar *skeleton, int32_t length
    [all...]
udateintervalformat.h 23 * in a locale-sensitive way, using a skeleton that specifies the precision and
25 * specified by the skeleton, a single date format will be produced. If the range
26 * is larger than the format specified by the skeleton, a locale-specific fallback
27 * will be used to format the items missing from the skeleton.
30 * - The skeleton jm will produce
33 * - The skeleton MMMd will produce
37 * - The skeleton jm will produce
40 * - The skeleton MMMd will produce
52 * relevant). Note that a skeleton involving h or H generally explicitly requests
53 * that time style (12- or 24-hour time respectively). For a skeleton tha
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimControl.java 70 * Skeleton object must contain corresponding data for the targets' weight buffers.
72 Skeleton skeleton; field in class:AnimControl
90 * Creates a new animation control for the given skeleton.
94 * @param skeleton The skeleton to animate
96 public AnimControl(Skeleton skeleton) {
97 this.skeleton = skeleton;
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 43 import com.jme3.animation.Skeleton;
126 public Map<Integer, Integer> getGroupToBoneIndexMap(Structure defBaseStructure, Skeleton skeleton, BlenderContext blenderContext) throws BlenderFileException {
128 if (skeleton.getBoneCount() != 0) {
134 Integer boneIndex = this.getBoneIndex(skeleton, deformGroupName);
161 public BoneTrack[] getTracks(Structure actionStructure, Skeleton skeleton, BlenderContext blenderContext) throws BlenderFileException {
163 return this.getTracks249(actionStructure, skeleton, blenderContext);
165 return this.getTracks250(actionStructure, skeleton, blenderContext);
182 private BoneTrack[] getTracks250(Structure actionStructure, Skeleton skeleton, BlenderContext blenderContext) throws BlenderFileException {
    [all...]
  /external/libogg/doc/
Makefile.am 9 rfc3533.txt rfc5334.txt skeleton.html
  /external/chromium_org/third_party/icu/source/i18n/
udatpg.cpp 58 const UChar *skeleton, int32_t length,
61 return udatpg_getBestPatternWithOptions(dtpg, skeleton, length,
68 const UChar *skeleton, int32_t length,
75 if(skeleton==NULL && length!=0) {
79 UnicodeString skeletonString((UBool)(length<0), skeleton, length);
87 UChar *skeleton, int32_t capacity,
98 return result.extract(skeleton, capacity, *pErrorCode);
104 UChar *skeleton, int32_t capacity,
115 return result.extract(skeleton, capacity, *pErrorCode);
217 const UChar *skeleton, int32_t skeletonLength
    [all...]
dtitvinf.cpp 82 DateIntervalInfo::setIntervalPattern(const UnicodeString& skeleton,
88 setIntervalPatternInternally(skeleton, UCAL_AM_PM, intervalPattern, status);
89 setIntervalPatternInternally(skeleton, UCAL_HOUR, intervalPattern, status);
92 setIntervalPatternInternally(skeleton, UCAL_DATE, intervalPattern, status);
94 setIntervalPatternInternally(skeleton, lrgDiffCalUnit, intervalPattern, status);
178 DateIntervalInfo::getIntervalPattern(const UnicodeString& skeleton,
186 const UnicodeString* patternsOfOneSkeleton = (UnicodeString*) fIntervalPatterns->get(skeleton);
273 const char* skeleton = ures_getKey(oneRes); local
274 if ( skeleton == NULL ||
275 skeletonSet.geti(UnicodeString(skeleton)) == 1 )
475 UnicodeString* skeleton = (UnicodeString*)keyTok.pointer; local
    [all...]
dtitvfmt.cpp 69 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
71 return createInstance(skeleton, Locale::getDefault(), status);
76 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
83 skeleton.extract(0, skeleton.length(), result, "UTF-8");
87 sprintf(mesg, "skeleton: %s; pattern: %s\n", result, result_1);
92 return create(locale, dtitvinf, &skeleton, status);
98 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
101 return createInstance(skeleton, Locale::getDefault(), dtitvinf, status);
106 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
665 UnicodeString skeleton = fSkeleton; local
895 const UnicodeString* skeleton; local
    [all...]
  /external/icu4c/i18n/
udatpg.cpp 58 const UChar *skeleton, int32_t length,
61 return udatpg_getBestPatternWithOptions(dtpg, skeleton, length,
68 const UChar *skeleton, int32_t length,
75 if(skeleton==NULL && length!=0) {
79 UnicodeString skeletonString((UBool)(length<0), skeleton, length);
87 UChar *skeleton, int32_t capacity,
98 return result.extract(skeleton, capacity, *pErrorCode);
104 UChar *skeleton, int32_t capacity,
115 return result.extract(skeleton, capacity, *pErrorCode);
217 const UChar *skeleton, int32_t skeletonLength
    [all...]
dtitvfmt.cpp 69 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
71 return createInstance(skeleton, Locale::getDefault(), status);
76 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
83 skeleton.extract(0, skeleton.length(), result, "UTF-8");
87 sprintf(mesg, "skeleton: %s; pattern: %s\n", result, result_1);
92 return create(locale, dtitvinf, &skeleton, status);
98 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
101 return createInstance(skeleton, Locale::getDefault(), dtitvinf, status);
106 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
709 UnicodeString skeleton = fSkeleton; local
939 const UnicodeString* skeleton; local
    [all...]
dtitvinf.cpp 82 DateIntervalInfo::setIntervalPattern(const UnicodeString& skeleton,
88 setIntervalPatternInternally(skeleton, UCAL_AM_PM, intervalPattern, status);
89 setIntervalPatternInternally(skeleton, UCAL_HOUR, intervalPattern, status);
92 setIntervalPatternInternally(skeleton, UCAL_DATE, intervalPattern, status);
94 setIntervalPatternInternally(skeleton, lrgDiffCalUnit, intervalPattern, status);
178 DateIntervalInfo::getIntervalPattern(const UnicodeString& skeleton,
186 const UnicodeString* patternsOfOneSkeleton = (UnicodeString*) fIntervalPatterns->get(skeleton);
275 const char* skeleton = ures_getKey(oneRes.getAlias()); local
276 if (skeleton == NULL) {
279 UnicodeString skeletonUniStr(skeleton, -1, US_INV)
488 UnicodeString* skeleton = (UnicodeString*)keyTok.pointer; local
    [all...]
udateintervalformat.cpp 25 const UChar* skeleton,
34 if ((skeleton == NULL ? skeletonLength != 0 : skeletonLength < -1) ||
40 UnicodeString skel((UBool)(skeletonLength == -1), skeleton, skeletonLength);
  /external/icu4c/test/cintltst/
cdateintervalformattest.c 41 const char * skeleton; member in struct:__anon20791
81 u_unescape(testItemPtr->skeleton, skelBuf, kSkelBufLen);
100 log_err("ERROR: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: expect %s, get %s\n",
101 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to,
105 log_err("FAIL: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: %s\n",
106 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to, myErrorName(status) );
110 log_data_err("FAIL: udtitvfmt_open for locale %s, skeleton %s, tzid %s - %s\n",
111 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, myErrorName(status) );
  /external/chromium_org/third_party/angle_dx11/src/compiler/
generate_parser.sh 20 bison --no-lines --skeleton=yacc.c --defines=$output_header --output=$output_source $input_file
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
generate_parser.sh 19 bison --no-lines --skeleton=yacc.c --output=$output_source $input_file

Completed in 389 milliseconds

1 2 3 4 5