Home | History | Annotate | Download | only in text

Lines Matching defs:postContext

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,
448 match = postContext.matches(text, intRef, pos.contextLimit, incremental);
499 // is neither anteContext nor postContext.
501 (anteContext != null) || (postContext != null);
521 Utility.appendToRule(rule, postContext, escapeUnprintable, quoteBuf);