Lines Matching refs:options

251     public String toString(int options) {
385 private static final boolean isSet(int options, int flag) {
386 return (options & flag) == flag;
388 final int analyzeFirstCharacter(RangeToken result, int options) {
393 if ((ret = this.getChild(i).analyzeFirstCharacter(result, options)) != FC_CONTINUE)
408 ret2 = this.getChild(i).analyzeFirstCharacter(result, options);
417 int ret3 = this.getChild(0).analyzeFirstCharacter(result, options);
420 int ret4 = this.getChild(1).analyzeFirstCharacter(result, options);
426 this.getChild(0).analyzeFirstCharacter(result, options);
436 if (ch < 0x10000 && isSet(options, RegularExpression.IGNORE_CASE)) {
457 return this.getChild(0).analyzeFirstCharacter(result, options);
460 options |= ((ModifierToken)this).getOptions();
461 options &= ~((ModifierToken)this).getOptionsMask();
462 return this.getChild(0).analyzeFirstCharacter(result, options);
476 if (cha < 0x10000 && isSet(options, RegularExpression.IGNORE_CASE)) {
518 int options = 0;
523 final void findFixedString(FixedStringContainer container, int options) {
529 this.getChild(i).findFixedString(container, options);
532 prevOptions = container.options;
536 container.options = prevOptions;
562 container.options = options;
567 this.getChild(0).findFixedString(container, options);
571 options |= ((ModifierToken)this).getOptions();
572 options &= ~((ModifierToken)this).getOptionsMask();
573 this.getChild(0).findFixedString(container, options);
1096 public String toString(int options) {
1127 public String toString(int options) {
1130 ret = this.child.toString(options)+"+";
1132 ret = this.child.toString(options)+"+?";
1134 ret = this.child.toString(options)+this.child2.toString(options);
1157 public String toString(int options) {
1241 public String toString(int options) {
1245 ret = this.child.toString(options)+"*";
1247 ret = this.child.toString(options)+"{"+this.getMin()+"}";
1249 ret = this.child.toString(options)+"{"+this.getMin()+","+this.getMax()+"}";
1251 ret = this.child.toString(options)+"{"+this.getMin()+",}";
1257 ret = this.child.toString(options)+"*?";
1259 ret = this.child.toString(options)+"{"+this.getMin()+"}?";
1261 ret = this.child.toString(options)+"{"+this.getMin()+","+this.getMax()+"}?";
1263 ret = this.child.toString(options)+"{"+this.getMin()+",}?";
1299 public String toString(int options) {
1304 ret = "(?:"+this.child.toString(options)+")";
1306 ret = "("+this.child.toString(options)+")";
1311 ret = "(?="+this.child.toString(options)+")";
1314 ret = "(?!"+this.child.toString(options)+")";
1317 ret = "(?<="+this.child.toString(options)+")";
1320 ret = "(?<!"+this.child.toString(options)+")";
1323 ret = "(?>"+this.child.toString(options)+")";
1357 public String toString(int options) {
1408 public String toString(int options) {
1413 +this.child.toString(options)
1495 public String toString(int options) {
1502 ret = ch.toString(options)+"+";
1504 ret = ch.toString(options)+"+?";
1506 ret = ch.toString(options)+ch2.toString(options);
1510 sb.append(((Token)this.children.elementAt(i)).toString(options));
1517 ret = this.getChild(0).toString(options)+"?";
1520 ret = this.getChild(1).toString(options)+"??";
1523 sb.append(((Token)this.children.elementAt(0)).toString(options));
1526 sb.append(((Token)this.children.elementAt(i)).toString(options));