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

1 2

  /external/icu/icu4c/source/common/unicode/
parseerr.h 39 * <p>The preContext and postContext strings include some part of the
45 * preContext postContext
90 UChar postContext[U_PARSE_CONTEXT_LEN];
  /external/icu/icu4c/source/i18n/
rbt_rule.cpp 142 postContext = NULL;
144 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(),
147 if (postContext == 0) {
168 postContext(NULL),
188 if (other.postContext != NULL) {
189 postContext = (StringMatcher*) other.postContext->clone();
198 delete postContext;
242 // Delegate to the key, or if there is none, to the postContext.
244 UnicodeMatcher *m = (key != NULL) ? key : postContext;
    [all...]
uspoof_build.cpp 69 pe->postContext[0] = 0;
format.cpp 192 pattern.extract(start,stop-start,parseError.postContext,0);
194 parseError.postContext[stop-start]= 0;
rbt_rule.h 82 StringMatcher *postContext;
86 * anteContext, and postContext are matched. Never null.
92 * and postContext, concatenated together, in that order. Some components
decimalformatpattern.cpp 56 pattern.extract(start,stop-start,parseError.postContext,0);
58 parseError.postContext[stop-start]= 0;
149 parseError.preContext[0] = parseError.postContext[0] = (UChar)0;
rbt_set.cpp 137 // Fill the precontext and postcontext with the patterns of the rules
157 r.extract(0, len, parseError.postContext);
158 parseError.postContext[len] = 0;
ucol_sit.cpp 445 parseError->postContext[0] = 0;
515 parseError->postContext[0] = 0;
collationruleparser.cpp 82 parseError->postContext[0] = 0;
857 rules->extract(ruleIndex, length, parseError->postContext);
858 parseError->postContext[length] = 0;
rbnf.cpp 390 pe.postContext[0] = 0;
580 u_strncpy(pe.postContext, p, (int32_t)(limit-p));
581 pe.postContext[limit-p] = 0;
    [all...]
rbt_pars.cpp 279 // the ante- or postcontext text. Placeholders are only valid in
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringPrepParseException.java 154 buf.append(". postContext: ");
155 buf.append(postContext);
182 private StringBuffer postContext = new StringBuffer();
204 postContext.append(str,start,len);
TransliterationRule.java 70 private StringMatcher postContext;
74 * anteContext, and postContext are matched. Never null.
80 * and postContext, concatenated together, in that order. Some components
216 postContext = null;
218 postContext = new StringMatcher(pattern.substring(anteContextLength + keyLength),
261 // Delegate to the key, or if there is none, to the postContext.
263 UnicodeMatcher m = (key != null) ? key : postContext;
275 * antecontext, key, and postcontext overlaps in the following
441 if (postContext != null) {
444 // a postContext. Since we are in incremental mode
    [all...]
TransliteratorParser.java 386 // the ante- or postcontext text. Placeholders are only valid in
723 final String postContext = limit-pos <= 50 ? rule.substring(pos, limit) : rule.substring(pos, pos+50) + "...";
725 + postContext).initCause(e);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrepParseException.java 170 buf.append(". postContext: ");
171 buf.append(postContext);
198 private StringBuffer postContext = new StringBuffer();
220 postContext.append(str,start,len);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRule.java 69 private StringMatcher postContext;
73 * anteContext, and postContext are matched. Never null.
79 * and postContext, concatenated together, in that order. Some components
215 postContext = null;
217 postContext = new StringMatcher(pattern.substring(anteContextLength + keyLength),
260 // Delegate to the key, or if there is none, to the postContext.
262 UnicodeMatcher m = (key != null) ? key : postContext;
274 * antecontext, key, and postcontext overlaps in the following
440 if (postContext != null) {
443 // a postContext. Since we are in incremental mode
    [all...]
TransliteratorParser.java 385 // the ante- or postcontext text. Placeholders are only valid in
722 final String postContext = limit-pos <= 50 ? rule.substring(pos, limit) : rule.substring(pos, pos+50) + "...";
724 + postContext).initCause(e);
    [all...]
  /external/icu/icu4c/source/test/intltest/
itrbnfp.cpp 139 logln("perror line: %x offset: %x context: %s|%s", perr.line, perr.offset, perr.preContext, perr.postContext);
trnserr.cpp 160 } else if (parseError.postContext[0] == 0 || parseError.preContext[0] == 0) {
transapi.cpp 299 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
426 if (parseError.postContext[0]) {
427 context += (UnicodeString)" | " + parseError.postContext;
    [all...]
transtst.cpp 254 ", post-context " +prettify(parseError.postContext,TRUE) +
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.cpp 229 char postContext[CONTEXT_LEN+1];
262 memcpy(postContext,source,stop-start);
264 postContext[stop-start] = 0;
270 fprintf(stderr,"\tPost-context: %s\n", postContext);
  /external/icu/icu4c/source/test/cintltst/
callcoll.c     [all...]
  /external/icu/icu4c/source/common/
usprep.cpp 462 u_memcpy(parseError->postContext,rules+start,limit-start);
465 parseError->postContext[limit-start]= 0;
messagepattern.cpp 414 parseError->postContext[0]=0;
    [all...]

Completed in 1192 milliseconds

1 2