Lines Matching refs:sb

558         StringBuffer sb = new StringBuffer();
560 sb.append("\"\"");
562 sb.append(input);
564 sb.append(" ");
565 sb.append(base);
573 out.println(uquote(sb.toString()));
579 sb.append(" ");
580 sb.append(op);
581 sb.append(" --> ");
582 sb.append(uri);
584 out.println(uquote(sb.toString()));
591 StringBuffer sb = new StringBuffer();
596 sb.append(c);
599 sb.append("\\u");
603 sb.append(s);
605 return sb.toString();
643 StringBuffer sb = new StringBuffer();
644 sb.append("FAIL:");
645 if ((failed & PARSEFAIL) != 0) sb.append(" parsefail");
646 if ((failed & SCHEME) != 0) sb.append(" scheme");
647 if ((failed & SSP) != 0) sb.append(" ssp");
648 if ((failed & OPAQUEPART) != 0) sb.append(" opaquepart");
649 if ((failed & USERINFO) != 0) sb.append(" userinfo");
650 if ((failed & USERINFO_D) != 0) sb.append(" userinfod");
651 if ((failed & HOST) != 0) sb.append(" host");
652 if ((failed & PORT) != 0) sb.append(" port");
653 if ((failed & REGISTRY) != 0) sb.append(" registry");
654 if ((failed & PATH) != 0) sb.append(" path");
655 if ((failed & PATH_D) != 0) sb.append(" pathd");
656 if ((failed & QUERY) != 0) sb.append(" query");
657 if ((failed & QUERY_D) != 0) sb.append(" queryd");
658 if ((failed & FRAGMENT) != 0) sb.append(" fragment");
659 if ((failed & FRAGMENT_D) != 0) sb.append(" fragmentd");
660 if ((failed & TOASCII) != 0) sb.append(" toascii");
661 if ((failed & IDENT_STR) != 0) sb.append(" ident-str");
662 if ((failed & IDENT_URI1) != 0) sb.append(" ident-uri1");
663 if ((failed & IDENT_URI3) != 0) sb.append(" ident-uri3");
664 if ((failed & IDENT_URI5) != 0) sb.append(" ident-uri5");
665 if ((failed & IDENT_URI7) != 0) sb.append(" ident-uri7");
666 if ((failed & TOSTRING) != 0) sb.append(" tostring");
667 out.println(sb.toString());