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

1 2

  /external/icu/icu4c/source/common/unicode/
parseerr.h 37 * <p>The preContext and postContext strings include some part of the
43 * preContext postContext
88 UChar postContext[U_PARSE_CONTEXT_LEN];
  /external/icu/icu4c/source/i18n/
rbt_rule.cpp 140 postContext = NULL;
142 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(),
145 if (postContext == 0) {
166 postContext(NULL),
186 if (other.postContext != NULL) {
187 postContext = (StringMatcher*) other.postContext->clone();
196 delete postContext;
240 // Delegate to the key, or if there is none, to the postContext.
242 UnicodeMatcher *m = (key != NULL) ? key : postContext;
    [all...]
uspoof_build.cpp 68 pe->postContext[0] = 0;
format.cpp 190 pattern.extract(start,stop-start,parseError.postContext,0);
192 parseError.postContext[stop-start]= 0;
rbt_rule.h 80 StringMatcher *postContext;
84 * anteContext, and postContext are matched. Never null.
90 * and postContext, concatenated together, in that order. Some components
decimalformatpattern.cpp 54 pattern.extract(start,stop-start,parseError.postContext,0);
56 parseError.postContext[stop-start]= 0;
147 parseError.preContext[0] = parseError.postContext[0] = (UChar)0;
rbt_set.cpp 135 // Fill the precontext and postcontext with the patterns of the rules
155 r.extract(0, len, parseError.postContext);
156 parseError.postContext[len] = 0;
ucol_sit.cpp 443 parseError->postContext[0] = 0;
506 parseError->postContext[0] = 0;
collationruleparser.cpp 80 parseError->postContext[0] = 0;
855 rules->extract(ruleIndex, length, parseError->postContext);
856 parseError->postContext[length] = 0;
rbnf.cpp 366 pe.postContext[0] = 0;
556 u_strncpy(pe.postContext, p, (int32_t)(limit-p));
557 pe.postContext[limit-p] = 0;
    [all...]
rbt_pars.cpp 277 // the ante- or postcontext text. Placeholders are only valid in
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringPrepParseException.java 149 buf.append(". postContext: ");
150 buf.append(postContext);
177 private StringBuffer postContext = new StringBuffer();
199 postContext.append(str,start,len);
TransliterationRule.java 68 private StringMatcher postContext;
72 * anteContext, and postContext are matched. Never null.
78 * and postContext, concatenated together, in that order. Some components
214 postContext = null;
216 postContext = new StringMatcher(pattern.substring(anteContextLength + keyLength),
259 // Delegate to the key, or if there is none, to the postContext.
261 UnicodeMatcher m = (key != null) ? key : postContext;
273 * antecontext, key, and postcontext overlaps in the following
439 if (postContext != null) {
442 // a postContext. Since we are in incremental mode
    [all...]
TransliteratorParser.java 379 // the ante- or postcontext text. Placeholders are only valid in
716 final String postContext = limit-pos <= 50 ? rule.substring(pos, limit) : rule.substring(pos, pos+50) + "...";
719 + postContext).initCause(e);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrepParseException.java 165 buf.append(". postContext: ");
166 buf.append(postContext);
193 private StringBuffer postContext = new StringBuffer();
215 postContext.append(str,start,len);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRule.java 67 private StringMatcher postContext;
71 * anteContext, and postContext are matched. Never null.
77 * and postContext, concatenated together, in that order. Some components
213 postContext = null;
215 postContext = new StringMatcher(pattern.substring(anteContextLength + keyLength),
258 // Delegate to the key, or if there is none, to the postContext.
260 UnicodeMatcher m = (key != null) ? key : postContext;
272 * antecontext, key, and postcontext overlaps in the following
438 if (postContext != null) {
441 // a postContext. Since we are in incremental mode
    [all...]
TransliteratorParser.java 378 // the ante- or postcontext text. Placeholders are only valid in
715 final String postContext = limit-pos <= 50 ? rule.substring(pos, limit) : rule.substring(pos, pos+50) + "...";
718 + postContext).initCause(e);
    [all...]
  /external/icu/icu4c/source/test/intltest/
itrbnfp.cpp 137 logln("perror line: %x offset: %x context: %s|%s", perr.line, perr.offset, perr.preContext, perr.postContext);
trnserr.cpp 158 } else if (parseError.postContext[0] == 0 || parseError.preContext[0] == 0) {
transapi.cpp 296 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
423 if (parseError.postContext[0]) {
424 context += (UnicodeString)" | " + parseError.postContext;
    [all...]
transtst.cpp 251 ", post-context " +prettify(parseError.postContext,TRUE) +
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.c 227 char postContext[CONTEXT_LEN+1];
260 memcpy(postContext,source,stop-start);
262 postContext[stop-start] = 0;
268 fprintf(stderr,"\tPost-context: %s\n", postContext);
  /external/icu/icu4c/source/test/cintltst/
callcoll.c     [all...]
  /external/icu/icu4c/source/common/
usprep.cpp 460 u_memcpy(parseError->postContext,rules+start,limit-start);
463 parseError->postContext[limit-start]= 0;
messagepattern.cpp 412 parseError->postContext[0]=0;
    [all...]

Completed in 889 milliseconds

1 2