Searched refs:postContext (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparseerr.h37 * <p>The preContext and postContext strings include some part of the
43 * preContext postContext
88 UChar postContext[U_PARSE_CONTEXT_LEN]; member in struct:UParseError
/external/icu4c/common/unicode/
H A Dparseerr.h37 * <p>The preContext and postContext strings include some part of the
43 * preContext postContext
88 UChar postContext[U_PARSE_CONTEXT_LEN]; member in struct:UParseError
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_rule.cpp139 postContext = NULL;
141 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(),
144 if (postContext == 0) {
165 postContext(NULL),
185 if (other.postContext != NULL) {
186 postContext = (StringMatcher*) other.postContext->clone();
195 delete postContext;
239 // Delegate to the key, or if there is none, to the postContext.
241 UnicodeMatcher *m = (key != NULL) ? key : postContext;
[all...]
H A Duspoof_build.cpp66 pe->postContext[0] = 0;
H A Dformat.cpp186 pattern.extract(start,stop-start,parseError.postContext,0);
188 parseError.postContext[stop-start]= 0;
H A Drbt_rule.h80 StringMatcher *postContext; member in class:TransliterationRule
84 * anteContext, and postContext are matched. Never null.
90 * and postContext, concatenated together, in that order. Some components
H A Drbt_set.cpp154 r.extract(0, len, parseError.postContext);
155 parseError.postContext[len] = 0;
H A Drbnf.cpp362 pe.postContext[0] = 0;
552 u_strncpy(pe.postContext, p, (int32_t)(limit-p));
553 pe.postContext[limit-p] = 0;
/external/icu4c/i18n/
H A Drbt_rule.cpp140 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...]
H A Duspoof_build.cpp66 pe->postContext[0] = 0;
H A Dformat.cpp190 pattern.extract(start,stop-start,parseError.postContext,0);
192 parseError.postContext[stop-start]= 0;
H A Drbt_rule.h80 StringMatcher *postContext; member in class:TransliterationRule
84 * anteContext, and postContext are matched. Never null.
90 * and postContext, concatenated together, in that order. Some components
H A Drbt_set.cpp155 r.extract(0, len, parseError.postContext);
156 parseError.postContext[len] = 0;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditrbnfp.cpp137 logln("perror line: %x offset: %x context: %s|%s", perr.line, perr.offset, perr.preContext, perr.postContext);
H A Dtrnserr.cpp158 } else if (parseError.postContext[0] == 0 || parseError.preContext[0] == 0) {
H A Dtransapi.cpp296 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
423 if (parseError.postContext[0]) {
424 context += (UnicodeString)" | " + parseError.postContext;
H A Dtranstst.cpp251 ", post-context " +prettify(parseError.postContext,TRUE) +
1869 // Make sure @ in a quantified postContext works
1874 // Make sure @ in a quantified postContext with seg ref works
2186 // errln("PreContext: " + prettify(parseError.preContext) + "PostContext: " + prettify( parseError.postContext) );
2647 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2695 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2755 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2824 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2965 err.append((UChar)124/*|*/).append(pe.postContext);
2987 else if (UnicodeString("ab > y;") != UnicodeString(pe.postContext)) {
[all...]
/external/icu4c/test/intltest/
H A Ditrbnfp.cpp137 logln("perror line: %x offset: %x context: %s|%s", perr.line, perr.offset, perr.preContext, perr.postContext);
H A Dtrnserr.cpp158 } else if (parseError.postContext[0] == 0 || parseError.preContext[0] == 0) {
H A Dtransapi.cpp296 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
423 if (parseError.postContext[0]) {
424 context += (UnicodeString)" | " + parseError.postContext;
H A Dtranstst.cpp252 ", post-context " +prettify(parseError.postContext,TRUE) +
1870 // Make sure @ in a quantified postContext works
1875 // Make sure @ in a quantified postContext with seg ref works
2187 // errln("PreContext: " + prettify(parseError.preContext) + "PostContext: " + prettify( parseError.postContext) );
2648 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2696 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2756 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2825 dataerrln("PreContext: " + prettify(parseError.preContext) + " PostContext: " + prettify( parseError.postContext) );
2966 err.append((UChar)124/*|*/).append(pe.postContext);
2988 else if (UnicodeString("ab > y;") != UnicodeString(pe.postContext)) {
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducbuf.c226 char postContext[CONTEXT_LEN+1]; local
259 memcpy(postContext,source,stop-start);
261 postContext[stop-start] = 0;
267 fprintf(stderr,"\tPost-context: %s\n", postContext);
/external/icu4c/tools/toolutil/
H A Ducbuf.c227 char postContext[CONTEXT_LEN+1]; local
260 memcpy(postContext,source,stop-start);
262 postContext[stop-start] = 0;
268 fprintf(stderr,"\tPost-context: %s\n", postContext);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcallcoll.c1162 u_memset(parseError.postContext,0x0000,U_PARSE_CONTEXT_LEN);
1168 if(u_strcmp(parseError.postContext,postContextExp)!=0){
1169 log_err_status(status, "postContext in UParseError for ucol_openRules does not match\n");
1181 char postContext[200]={0}; local
1206 u_memset(parseError.postContext,0x0000,U_PARSE_CONTEXT_LEN);
1215 u_UCharsToChars(parseError.postContext,postContext,20);
1216 log_verbose("\n\tPre-Context: %s \n\tPost-Context:%s \n",preContext,postContext);
/external/icu4c/test/cintltst/
H A Dcallcoll.c1190 u_memset(parseError.postContext,0x0000,U_PARSE_CONTEXT_LEN);
1196 if(u_strcmp(parseError.postContext,postContextExp)!=0){
1197 log_err_status(status, "postContext in UParseError for ucol_openRules does not match\n");
1209 char postContext[200]={0}; local
1234 u_memset(parseError.postContext,0x0000,U_PARSE_CONTEXT_LEN);
1243 u_UCharsToChars(parseError.postContext,postContext,20);
1244 log_verbose("\n\tPre-Context: %s \n\tPost-Context:%s \n",preContext,postContext);

Completed in 1878 milliseconds

12