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

1 2 3 4 5

  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalFormat.java 68 * from (skeleton, the_largest_different_calendar_field)
72 * A skeleton
89 * letter length in skeleton.
112 * There is a set of pre-defined static skeleton strings in DateFormat,
115 * For example, for a skeleton YEAR_ABBR_MONTH_DAY, which is "yMMMd",
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,
174 * create an instance using default or given locale plus given skeleton
290 final String skeleton; field in class:DateIntervalFormat.SkeletonAndItsBestMatch
1094 String skeleton = fSkeleton; local
1503 String skeleton; local
    [all...]
DateIntervalInfo.java 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.
95 * There is a set of pre-defined static skeleton strings.
98 * For example, for a skeleton YEAR_ABBR_MONTH_DAY, which is "yMMMd",
108 * For date skeleton, the interval patterns when year, or month, or date is
110 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
126 * but for skeleton "yMMMd", the interval pattern when day is different is
128 * pattern is the earlier date. But for skeleton "yMMMd", when day is different
958 String skeleton = skeletonEntry.getKey(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalFormat.java 67 * from (skeleton, the_largest_different_calendar_field)
71 * A skeleton
88 * letter length in skeleton.
111 * There is a set of pre-defined static skeleton strings in DateFormat,
114 * For example, for a skeleton YEAR_ABBR_MONTH_DAY, which is "yMMMd",
124 * For date skeleton, the interval patterns when year, or month, or date is
126 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
130 * If a skeleton is not found in a locale's DateIntervalInfo, which means
131 * the interval patterns for the skeleton is not defined in resource file,
173 * create an instance using default or given locale plus given skeleton
291 final String skeleton; field in class:DateIntervalFormat.SkeletonAndItsBestMatch
1107 String skeleton = fSkeleton; local
1516 String skeleton; local
    [all...]
DateIntervalInfo.java 46 * formatter when user pass in skeleton and locale.
55 * from (skeleton, the_largest_different_calendar_field)
59 * A skeleton
76 * letter length in skeleton.
94 * There is a set of pre-defined static skeleton strings.
97 * For example, for a skeleton YEAR_ABBR_MONTH_DAY, which is "yMMMd",
107 * For date skeleton, the interval patterns when year, or month, or date is
109 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
125 * but for skeleton "yMMMd", the interval pattern when day is different is
127 * pattern is the earlier date. But for skeleton "yMMMd", when day is different
973 String skeleton = skeletonEntry.getKey(); local
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
dtitvfmt.h 69 * from (skeleton, the_largest_different_calendar_field)
73 * A skeleton
94 * letter length in skeleton.
116 * There is a set of pre-defined static skeleton strings.
119 * For example, for a skeleton UDAT_YEAR_ABBR_MONTH_DAY, which is "yMMMd",
129 * For date skeleton, the interval patterns when year, or month, or date is
131 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
135 * If a skeleton is not found in a locale's DateIntervalInfo, which means
136 * the interval patterns for the skeleton is not defined in resource file,
180 * create an instance using default or given locale plus given skeleton
    [all...]
dtitvinf.h 41 * formatter when user pass in skeleton and locale.
50 * from (skeleton, the_largest_different_calendar_field)
54 * A skeleton
71 * letter length in skeleton.
87 * There is a set of pre-defined static skeleton strings.
90 * For example, for a skeleton UDAT_YEAR_ABBR_MONTH_DAY, which is "yMMMd",
100 * For date skeleton, the interval patterns when year, or month, or date is
102 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
118 * but for skeleton "yMMMd", the interval pattern when day is different is
120 * pattern is the earlier date. But for skeleton "yMMMd", when day is different
    [all...]
udatpg.h 32 * patterns. Once that is done, a query can be made using a "skeleton", which is
34 * will return the "best fit" pattern corresponding to that skeleton.
100 * pattern to match those in the skeleton (when this would not happen
200 * Get the best pattern matching the input skeleton. It is guaranteed to
201 * have all of the fields in the skeleton.
210 * @param skeleton
211 * The skeleton is a pattern containing only the variable fields.
213 * @param length the length of skeleton
215 * The best pattern found from the given skeleton.
224 const UChar *skeleton, int32_t length
    [all...]
udateintervalformat.h 25 * in a locale-sensitive way, using a skeleton that specifies the precision and
27 * specified by the skeleton, a single date format will be produced. If the range
28 * is larger than the format specified by the skeleton, a locale-specific fallback
29 * will be used to format the items missing from the skeleton.
32 * - The skeleton jm will produce
35 * - The skeleton MMMd will produce
39 * - The skeleton jm will produce
42 * - The skeleton MMMd will produce
54 * relevant). Note that a skeleton involving h or H generally explicitly requests
55 * that time style (12- or 24-hour time respectively). For a skeleton tha
    [all...]
  /external/icu/android_icu4j/src/samples/java/android/icu/samples/text/dateintervalformat/
DateIntervalFormatSample.java 58 System.out.printf("%-15s%-35s%-35s%-35s%-35s\n", "Skeleton", "from","to","Date Interval in en_US", "Date Interval in Ja");
60 for (String skeleton:skeletons) {
61 System.out.printf("%-15s%-35s%-35s", skeleton,date[i].toString(), date[i+1].toString());
62 DateIntervalFormat dtitvfmtEn = DateIntervalFormat.getInstance(skeleton, ULocale.ENGLISH);
63 DateIntervalFormat dtitvfmtJa = DateIntervalFormat.getInstance(skeleton, ULocale.JAPANESE);
69 Skeleton from to Date Interval in en_US Date Interval in Ja
98 System.out.printf("%-15s%-35s%-35s%-45s%-35s\n", "Skeleton", "from","to", "Date Interval in en_US", "Date Interval in Ja");
107 for (String skeleton:skeletons){
109 System.out.printf("%-15s%-35s%-35s", skeleton,date[i].toString(), date[i+1].toString());
110 DateIntervalFormat dtitvfmtEn = DateIntervalFormat.getInstance(skeleton,ULocale.ENGLISH,dtitvinf)
    [all...]
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/dateintervalformat/
DateIntervalFormatSample.java 57 System.out.printf("%-15s%-35s%-35s%-35s%-35s\n", "Skeleton", "from","to","Date Interval in en_US", "Date Interval in Ja");
59 for (String skeleton:skeletons) {
60 System.out.printf("%-15s%-35s%-35s", skeleton,date[i].toString(), date[i+1].toString());
61 DateIntervalFormat dtitvfmtEn = DateIntervalFormat.getInstance(skeleton, ULocale.ENGLISH);
62 DateIntervalFormat dtitvfmtJa = DateIntervalFormat.getInstance(skeleton, ULocale.JAPANESE);
68 Skeleton from to Date Interval in en_US Date Interval in Ja
97 System.out.printf("%-15s%-35s%-35s%-45s%-35s\n", "Skeleton", "from","to", "Date Interval in en_US", "Date Interval in Ja");
106 for (String skeleton:skeletons){
108 System.out.printf("%-15s%-35s%-35s", skeleton,date[i].toString(), date[i+1].toString());
109 DateIntervalFormat dtitvfmtEn = DateIntervalFormat.getInstance(skeleton,ULocale.ENGLISH,dtitvinf)
    [all...]
  /external/libogg/doc/
Makefile.am 9 rfc3533.txt rfc5334.txt skeleton.html
  /external/icu/icu4c/source/i18n/
udatpg.cpp 60 const UChar *skeleton, int32_t length,
63 return udatpg_getBestPatternWithOptions(dtpg, skeleton, length,
70 const UChar *skeleton, int32_t length,
77 if(skeleton==NULL && length!=0) {
81 UnicodeString skeletonString((UBool)(length<0), skeleton, length);
89 UChar *skeleton, int32_t capacity,
101 return result.extract(skeleton, capacity, *pErrorCode);
107 UChar *skeleton, int32_t capacity,
119 return result.extract(skeleton, capacity, *pErrorCode);
221 const UChar *skeleton, int32_t skeletonLength
    [all...]
dtitvinf.cpp 84 DateIntervalInfo::setIntervalPattern(const UnicodeString& skeleton,
90 setIntervalPatternInternally(skeleton, UCAL_AM_PM, intervalPattern, status);
91 setIntervalPatternInternally(skeleton, UCAL_HOUR, intervalPattern, status);
94 setIntervalPatternInternally(skeleton, UCAL_DATE, intervalPattern, status);
96 setIntervalPatternInternally(skeleton, lrgDiffCalUnit, intervalPattern, status);
180 DateIntervalInfo::getIntervalPattern(const UnicodeString& skeleton,
188 const UnicodeString* patternsOfOneSkeleton = (UnicodeString*) fIntervalPatterns->get(skeleton);
271 // Process the skeleton
282 * Processes the patterns for a skeleton table
287 // Iterate over all the patterns in the current skeleton tabl
597 UnicodeString* skeleton = (UnicodeString*)keyTok.pointer; local
    [all...]
udateintervalformat.cpp 27 const UChar* skeleton,
36 if ((skeleton == NULL ? skeletonLength != 0 : skeletonLength < -1) ||
42 UnicodeString skel((UBool)(skeletonLength == -1), skeleton, skeletonLength);
dtitvfmt.cpp 76 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
78 return createInstance(skeleton, Locale::getDefault(), status);
83 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
90 skeleton.extract(0, skeleton.length(), result, "UTF-8");
94 sprintf(mesg, "skeleton: %s; pattern: %s\n", result, result_1);
99 return create(locale, dtitvinf, &skeleton, status);
105 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
108 return createInstance(skeleton, Locale::getDefault(), dtitvinf, status);
113 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
737 UnicodeString skeleton = fSkeleton; local
947 const UnicodeString* skeleton; local
    [all...]
dtptngen.cpp 322 dtMatcher->copyFrom(other.dtMatcher->skeleton);
839 // Add pattern with its associated skeleton. Override any duplicate
    [all...]
dtptngen_impl.h 117 // A compact storage mechanism for skeleton field strings. Several dozen of these will be created
174 PtnSkeleton *skeleton; member in class:PtnElem
225 PtnSkeleton skeleton; member in class:DateTimeMatcher
230 void set(const UnicodeString& pattern, FormatParser* fp, PtnSkeleton& skeleton);
231 void copyFrom(const PtnSkeleton& skeleton);
247 void add(const UnicodeString& basePattern, const PtnSkeleton& skeleton, const UnicodeString& value, UBool skeletonWasSpecified, UErrorCode& status);
249 const UnicodeString* getPatternFromSkeleton(PtnSkeleton& skeleton, const PtnSkeleton** specifiedSkeletonPtr = 0);
255 PtnElem* getDuplicateElem(const UnicodeString &basePattern, const PtnSkeleton& skeleton, PtnElem *baseElem);
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
generate_parser.sh 29 bison --no-lines --skeleton=yacc.c --output=$output_source $input_file
  /libcore/luni/src/main/java/libcore/icu/
DateTimeFormat.java 45 String skeleton = DateUtilsBridge.toSkeleton(time, flags); local
46 String key = skeleton + "\t" + icuLocale + "\t" + time.getTimeZone();
51 formatter = new SimpleDateFormat(generator.getBestPattern(skeleton), icuLocale);
DateIntervalFormat.java 53 // skeleton instead of int flags.)
76 String skeleton = DateUtilsBridge.toSkeleton(startCalendar, endCalendar, flags); local
79 getFormatter(skeleton, icuLocale, icuTimeZone);
85 private static android.icu.text.DateIntervalFormat getFormatter(String skeleton, ULocale locale,
87 String key = skeleton + "\t" + locale + "\t" + icuTimeZone;
92 formatter = android.icu.text.DateIntervalFormat.getInstance(skeleton, locale);
  /external/icu/icu4c/source/test/cintltst/
cdateintervalformattest.c 43 const char * skeleton; member in struct:__anon20275
83 u_unescape(testItemPtr->skeleton, skelBuf, kSkelBufLen);
102 log_err("ERROR: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: expect %s, get %s\n",
103 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to,
107 log_err("FAIL: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: %s\n",
108 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to, myErrorName(status) );
112 log_data_err("FAIL: udtitvfmt_open for locale %s, skeleton %s, tzid %s - %s\n",
113 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, myErrorName(status) );
257 const char * skeleton; member in struct:__anon20279
285 ulen = u_unescape(locSkelItemPtr->skeleton, ubuf, kSizeUBuf)
    [all...]
  /external/icu/android_icu4j/src/samples/java/android/icu/samples/text/datetimepatterngenerator/
DateTimePatternGeneratorSample.java 54 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN");
55 for (String skeleton:skeletons) {
56 System.out.printf("%-20s", skeleton);
60 // use getBestPattern method to get the best pattern for the given skeleton
61 String pattern = dtfg.getBestPattern(skeleton);
71 Skeleton en_US fr_FR zh_CN
90 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN");
91 for (String skeleton:dtfskeleton) {
92 System.out.printf("%-20s", skeleton);
96 String df=DateFormat.getPatternInstance(skeleton,locale).format(date)
    [all...]
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/datetimepatterngenerator/
DateTimePatternGeneratorSample.java 53 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN");
54 for (String skeleton:skeletons) {
55 System.out.printf("%-20s", skeleton);
59 // use getBestPattern method to get the best pattern for the given skeleton
60 String pattern = dtfg.getBestPattern(skeleton);
70 Skeleton en_US fr_FR zh_CN
89 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN");
90 for (String skeleton:dtfskeleton) {
91 System.out.printf("%-20s", skeleton);
95 String df=DateFormat.getPatternInstance(skeleton,locale).format(date)
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
generate_parser.sh 30 bison --no-lines --skeleton=yacc.c --defines=$output_header --output=$output_source $input_file
  /external/bison/src/
getargs.h 31 extern char const *skeleton;
66 char skeleton[sizeof "java-skel.m4"]; member in struct:bison_language
106 trace_skeleton = 1 << 9, /**< Skeleton postprocessing. */

Completed in 786 milliseconds

1 2 3 4 5