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

1 2

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
generate_glslang_parser.sh 12 bison --no-lines --skeleton=yacc.c --defines=$output_header --output=$output_source $input_file
  /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 "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,
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 "yMMMd",
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 "yMMMd", the interval pattern when day is different is
126 * pattern is the earlier date. But for skeleton "yMMMd", 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...]
dtptngen.h 38 * is done, a query can be made using a "skeleton", which is a pattern which just
40 * pattern corresponding to that skeleton.
41 * <p>The main method people will use is getBestPattern(String skeleton),
108 * Utility to return a unique skeleton from a given pattern. For example,
109 * both "MMM-dd" and "dd/MMM" produce the skeleton "MMMdd".
114 * @return skeleton such as "MMMdd"
120 * Utility to return a unique base skeleton from a given pattern. This is
121 * the same as the skeleton, except that differences in length are minimized
123 * for example, both "MMM-dd" and "d/MMM" produce the skeleton "MMMd"
129 * @return base skeleton, such as "Md
    [all...]
  /external/bison/src/
getargs.h 28 extern char const *skeleton;
getargs.c 65 const char *skeleton = NULL; variable
89 "skeleton - skeleton postprocessing",
224 -S, --skeleton=FILE specify the skeleton to use\n\
338 { "skeleton", required_argument, 0, 'S' },
392 skeleton = AS_FILE_NAME (optarg);
output.c 496 | Call the skeleton parser. |
508 /* Compute the names of the package data dir and skeleton file.
518 size_t skeleton_size = strlen (skeleton) + 1;
529 strcpy (full_skeleton + pkgdatadirlen + 1, skeleton);
613 /* Find the right skeleton file. */
614 if (!skeleton)
617 skeleton = "glr.c";
619 skeleton = "yacc.c";
626 MUSCLE_INSERT_C_STRING ("skeleton", skeleton);
    [all...]
parse-gram.y 152 PERCENT_SKELETON "%skeleton"
248 | "%skeleton" string_content { skeleton = $2; }
  /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...]
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...]
dtptngen.cpp 307 dtMatcher->copyFrom(other.dtMatcher->skeleton);
630 // Add pattern with its associated skeleton. Override any duplicate derived from std patterns,
673 // Add pattern with its associated skeleton. Override any duplicate derived from std patterns,
790 const UnicodeString& skeleton,
792 return replaceFieldTypes(pattern, skeleton, UDATPG_MATCH_NO_OPTIONS, status);
797 const UnicodeString& skeleton,
800 dtMatcher->set(skeleton, fp);
883 // 1. We pass that skeleton to matcher.set instead of having it derive a skeleton from the pattern.
884 // 2. If the new entry's skeleton or basePattern does match an existing entry but that entry also had a skeleton specifie
901 PtnSkeleton skeleton; local
    [all...]
dtptngen_impl.h 126 PtnSkeleton *skeleton; member in class:PtnElem
178 PtnSkeleton skeleton; member in class:DateTimeMatcher
183 void set(const UnicodeString& pattern, FormatParser* fp, PtnSkeleton& skeleton);
184 void copyFrom(const PtnSkeleton& skeleton);
200 void add(const UnicodeString& basePattern, const PtnSkeleton& skeleton, const UnicodeString& value, UBool skeletonWasSpecified, UErrorCode& status);
202 const UnicodeString* getPatternFromSkeleton(PtnSkeleton& skeleton, const PtnSkeleton** specifiedSkeletonPtr = 0);
208 PtnElem* getDuplicateElem(const UnicodeString &basePattern, const PtnSkeleton& skeleton, PtnElem *baseElem);
  /external/bison/data/
glr.cc 3 # C++ GLR skeleton for Bison
22 # This skeleton produces a C++ class that encapsulates a C glr parser.
24 # skeleton is clean and pure enough so that there are no real
34 # additional parse-param. But because the C++ skeleton needs to
219 b4_copyright([Skeleton interface for Bison GLR parsers in C++],
222 /* C++ GLR parser skeleton written by Akim Demaille. */
location.cc 3 # C++ skeleton for Bison
lalr1.cc 3 # C++ skeleton for Bison
37 b4_copyright([Skeleton interface for Bison LALR(1) parsers in C++],
41 /* C++ LALR(1) parser skeleton written by Akim Demaille. */
305 b4_copyright([Skeleton implementation for Bison LALR(1) parsers in C++],
glr.c 3 # GLR skeleton for Bison
146 b4_copyright([Skeleton implementation for Bison GLR parsers in C],
149 /* C GLR parser skeleton written by Paul Hilfinger. */
    [all...]
  /external/javassist/src/main/javassist/
CtNewConstructor.java 176 public static CtConstructor skeleton(CtClass[] parameters, method in class:CtNewConstructor
  /hardware/libhardware/modules/audio/
Android.mk 33 # The stub audio policy HAL module that can be used as a skeleton for
  /external/icu4c/test/intltest/
dtifmtts.cpp 57 /* ====== Test create interval instance with default locale and skeleton
60 logln("Testing DateIntervalFormat create instance with default locale and skeleton");
64 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + default locale) - exitting");
71 /* ====== Test create interval instance with given locale and skeleton
74 logln("Testing DateIntervalFormat create instance with given locale and skeleton");
78 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + locale) - exitting");
85 /* ====== Test create interval instance with dateIntervalInfo and skeleton
88 logln("Testing DateIntervalFormat create instance with dateIntervalInfo and skeleton");
96 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + DateIntervalInfo + default locale) - exitting");
103 /* ====== Test create interval instance with dateIntervalInfo and skeleton
1175 UnicodeString skeleton[] = { local
    [all...]
  /external/icu4c/test/cintltst/
udatpg_test.c 69 static const UChar skeleton[]= {0x4d, 0x4d, 0x4d, 0x64, 0}; /* MMMd */ variable
140 /* Test skeleton == NULL */
144 log_err("udatpg_getBestPattern failed in illegal argument - skeleton is NULL.\n");
279 /* Get all skeletons and the crroespong pattern for each skeleton. */
326 length = udatpg_getBestPattern(generator, skeleton, 4,
404 log_err("ERROR udatpg_getBestPatternWithOptions, locale %s, skeleton %s, options 0x%04X, expected pattern %s, got %s, status %d\n",
  /external/javassist/src/main/javassist/tools/rmi/
StubGenerator.java 155 = CtNewConstructor.skeleton(proxyConstructorParamTypes,
  /dalvik/vm/compiler/codegen/arm/
ArmLIR.h 729 u4 skeleton; member in struct:ArmEncodingMap
    [all...]
Assemble.cpp 29 * skeleton: pre-designated bit-pattern for this opcode
43 #define ENCODING_MAP(opcode, skeleton, k0, ds, de, k1, s1s, s1e, k2, s2s, s2e, \
45 {skeleton, {{k0, ds, de}, {k1, s1s, s1e}, {k2, s2s, s2e}, \
    [all...]

Completed in 165 milliseconds

1 2