Searched defs:compiledPattern (Results 1 - 11 of 11) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Dsimpleformatter.h65 SimpleFormatter() : compiledPattern((char16_t)0) {}
104 : compiledPattern(other.compiledPattern) {}
155 return getArgumentLimit(compiledPattern.getBuffer(), compiledPattern.length());
268 return getTextWithNoArguments(compiledPattern.getBuffer(), compiledPattern.length());
281 UnicodeString compiledPattern; member in class:U_FINAL
283 static inline int32_t getArgumentLimit(const char16_t *compiledPattern, argument
285 return compiledPatternLength == 0 ? 0 : compiledPattern[
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSimpleFormatter.java48 private final String compiledPattern; field in class:SimpleFormatter
50 private SimpleFormatter(String compiledPattern) { argument
51 this.compiledPattern = compiledPattern;
78 String compiledPattern = SimpleFormatterImpl.compileToStringMinMaxArguments(pattern, sb, min, max);
79 return new SimpleFormatter(compiledPattern);
86 return SimpleFormatterImpl.getArgumentLimit(compiledPattern);
93 return SimpleFormatterImpl.formatCompiledPattern(compiledPattern, values);
112 return SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, values);
132 return SimpleFormatterImpl.formatAndReplace(compiledPattern, resul
[all...]
H A DQuantityFormatter.java126 public static StringBuilder format(String compiledPattern, CharSequence value, argument
129 SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, value);
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
H A DSimpleModifier.java15 private final String compiledPattern; field in class:SimpleModifier
26 public SimpleModifier(String compiledPattern, Field field, boolean strong) { argument
27 assert compiledPattern != null;
28 this.compiledPattern = compiledPattern;
32 assert SimpleFormatterImpl.getArgumentLimit(compiledPattern) == 1;
33 if (compiledPattern.charAt(1) != '\u0000') {
34 prefixLength = compiledPattern.charAt(1) - ARG_NUM_LIMIT;
40 if (3 + prefixLength < compiledPattern.length()) {
41 suffixLength = compiledPattern
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DSimpleModifier.java13 private final String compiledPattern; field in class:SimpleModifier
24 public SimpleModifier(String compiledPattern, Field field, boolean strong) { argument
25 assert compiledPattern != null;
26 this.compiledPattern = compiledPattern;
30 assert SimpleFormatterImpl.getArgumentLimit(compiledPattern) == 1;
31 if (compiledPattern.charAt(1) != '\u0000') {
32 prefixLength = compiledPattern.charAt(1) - ARG_NUM_LIMIT;
38 if (3 + prefixLength < compiledPattern.length()) {
39 suffixLength = compiledPattern
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DQuantityFormatter.java125 public static StringBuilder format(String compiledPattern, CharSequence value, argument
128 SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, value);
H A DSimpleFormatter.java47 private final String compiledPattern; field in class:SimpleFormatter
49 private SimpleFormatter(String compiledPattern) { argument
50 this.compiledPattern = compiledPattern;
79 String compiledPattern = SimpleFormatterImpl.compileToStringMinMaxArguments(pattern, sb, min, max);
80 return new SimpleFormatter(compiledPattern);
88 return SimpleFormatterImpl.getArgumentLimit(compiledPattern);
96 return SimpleFormatterImpl.formatCompiledPattern(compiledPattern, values);
116 return SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, values);
137 return SimpleFormatterImpl.formatAndReplace(compiledPattern, resul
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DSimpleFormatterImpl.java177 * @param compiledPattern Compiled form of a pattern string.
180 public static int getArgumentLimit(String compiledPattern) { argument
181 return compiledPattern.charAt(0);
187 * @param compiledPattern Compiled form of a pattern string.
189 public static String formatCompiledPattern(String compiledPattern, CharSequence... values) { argument
190 return formatAndAppend(compiledPattern, new StringBuilder(), null, values).toString();
207 String compiledPattern = compileToStringMinMaxArguments(pattern, sb, min, max);
209 return formatAndAppend(compiledPattern, sb, null, values).toString();
215 * @param compiledPattern Compiled form of a pattern string.
228 String compiledPattern, StringBuilde
227 formatAndAppend( String compiledPattern, StringBuilder appendTo, int[] offsets, CharSequence... values) argument
252 formatAndReplace( String compiledPattern, StringBuilder result, int[] offsets, CharSequence... values) argument
294 getTextWithNoArguments(String compiledPattern) argument
308 format( String compiledPattern, CharSequence[] values, StringBuilder result, String resultCopy, boolean forbidResultAsValue, int[] offsets) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSimpleFormatterImpl.java175 * @param compiledPattern Compiled form of a pattern string.
178 public static int getArgumentLimit(String compiledPattern) { argument
179 return compiledPattern.charAt(0);
185 * @param compiledPattern Compiled form of a pattern string.
187 public static String formatCompiledPattern(String compiledPattern, CharSequence... values) { argument
188 return formatAndAppend(compiledPattern, new StringBuilder(), null, values).toString();
205 String compiledPattern = compileToStringMinMaxArguments(pattern, sb, min, max);
207 return formatAndAppend(compiledPattern, sb, null, values).toString();
213 * @param compiledPattern Compiled form of a pattern string.
226 String compiledPattern, StringBuilde
225 formatAndAppend( String compiledPattern, StringBuilder appendTo, int[] offsets, CharSequence... values) argument
250 formatAndReplace( String compiledPattern, StringBuilder result, int[] offsets, CharSequence... values) argument
292 getTextWithNoArguments(String compiledPattern) argument
306 format( String compiledPattern, CharSequence[] values, StringBuilder result, String resultCopy, boolean forbidResultAsValue, int[] offsets) argument
[all...]
/external/icu/icu4c/source/common/
H A Dsimpleformatter.cpp57 compiledPattern = other.compiledPattern;
76 compiledPattern.setTo((UChar)0);
100 compiledPattern.setCharAt(compiledPattern.length() - textLength - 1,
132 compiledPattern.append((UChar)argNumber);
138 compiledPattern.append(SEGMENT_LENGTH_PLACEHOLDER_CHAR);
140 compiledPattern.append(c);
146 compiledPattern.setCharAt(compiledPattern
248 getTextWithNoArguments( const UChar *compiledPattern, int32_t compiledPatternLength) argument
263 format( const UChar *compiledPattern, int32_t compiledPatternLength, const UnicodeString *const *values, UnicodeString &result, const UnicodeString *resultCopy, UBool forbidResultAsValue, int32_t *offsets, int32_t offsetsLength, UErrorCode &errorCode) argument
[all...]
/external/guice/extensions/struts2/lib/
H A Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ...

Completed in 917 milliseconds