Lines Matching defs:text

26     public abstract int search(Regex regex, char[] text, int textP, int textEnd, int textRange);
27 public abstract int searchBackward(Regex regex, char[] text, int textP, int adjustText, int textEnd, int textStart, int s_, int range_);
38 public final int search(final Regex regex, final char[] text, final int textP, final int textEnd, final int textRange) {
43 public final int searchBackward(final Regex regex, final char[] text, final int textP, final int adjustText, final int textEnd, final int textStart, final int s_, final int range_) {
57 public final int search(final Regex regex, final char[] text, final int textP, final int textEnd, final int textRange) {
73 if (text[s] == target[targetP]) {
77 if (target[t] != text[p++]) {
94 public final int searchBackward(final Regex regex, final char[] text, final int textP, final int adjustText, final int textEnd, final int textStart, final int s_, final int range_) {
107 if (text[s] == target[targetP]) {
111 if (target[t] != text[p++]) {
138 public final int search(final Regex regex, final char[] text, final int textP, final int textEnd, final int textRange) {
152 if (lowerCaseMatch(target, targetP, targetEnd, text, s, textEnd)) {
161 public final int searchBackward(final Regex regex, final char[] text, final int textP, final int adjustText, final int textEnd, final int textStart, final int s_, final int range_) {
174 if (lowerCaseMatch(target, targetP, targetEnd, text, s, textEnd)) {
202 public final int search(final Regex regex, final char[] text, final int textP, final int textEnd, final int textRange) {
220 while (text[p] == target[t]) {
227 s += regex.map[text[s] & 0xff];
234 while (text[p] == target[t]) {
241 s += regex.intMap[text[s] & 0xff];
250 public final int searchBackward(final Regex regex, final char[] text, final int textP, final int adjustText, final int textEnd, final int textStart, final int s_, final int range_) {
258 return SLOW.searchBackward(regex, text, textP, adjustText, textEnd, textStart, s_, range_);
272 while (t < targetEnd && text[p] == target[t]) {
279 s -= regex.intMapBackward[text[s] & 0xff];
313 public final int search(final Regex regex, final char[] text, final int textP, final int textEnd, final int textRange) {
318 if (text[s] > 0xff || map[text[s]] != 0) {
327 public final int searchBackward(final Regex regex, final char[] text, final int textP, final int adjustText, final int textEnd, final int textStart, final int s_, final int range_) {
335 if (text[s] > 0xff || map[text[s]] != 0) {