Lines Matching refs:buf

125 	StringBuffer buf = new StringBuffer();
133 hdr.getString(buf, dis);
135 String rq = buf.toString();
431 StringBuffer buf = new StringBuffer();
437 parseInternal(tk, buf, true);
448 return buf.toString();
454 parseInternal(StreamTokenizer tk, StringBuffer buf, boolean start)
490 parseLogicalExpression(logOp, tk, buf);
493 parse(tk, buf, true);
499 parseLogicalExpression(logOp, tk, buf);
507 parseLogicalExpression(logOp, tk, buf);
518 parse(tk, buf, false);
559 parseLogicalExpression(int logOp, StreamTokenizer tk, StringBuffer buf)
564 buf.append((char)OPEN_PAREN);
565 buf.append((char)logOp);
581 parseInternal(tk, buf, false);
587 buf.append((char)tok);
613 StringBuffer buf,
661 buf.append(OPEN_PAREN);
662 buf.append(tag);
663 buf.append(EQUAL_OP);
664 buf.append(PRESENT);
665 buf.append(CLOSE_PAREN);
691 buf.append(OPEN_PAREN);
692 buf.append(tag);
693 buf.append(GREATER_OP);
694 buf.append(EQUAL_OP);
695 buf.append(n + 1);
696 buf.append(CLOSE_PAREN);
701 buf.append(OPEN_PAREN);
702 buf.append(tag);
703 buf.append(LESS_OP);
704 buf.append(EQUAL_OP);
705 buf.append(n - 1);
706 buf.append(CLOSE_PAREN);
711 buf.insert(0, OR_OP);
712 buf.insert(0, OPEN_PAREN);
713 buf.append(CLOSE_PAREN);
728 buf.append(OPEN_PAREN);
729 buf.append(AND_OP);
730 buf.append(OPEN_PAREN);
731 buf.append(tag);
732 buf.append(EQUAL_OP);
733 buf.append(PRESENT);
734 buf.append(CLOSE_PAREN);
735 buf.append(OPEN_PAREN);
736 buf.append(NOT_OP);
737 buf.append(OPEN_PAREN);
738 buf.append(tag);
739 buf.append(EQUAL_OP);
740 buf.append(valTok);
741 buf.append(CLOSE_PAREN);
742 buf.append(CLOSE_PAREN);
743 buf.append(CLOSE_PAREN);
782 buf.append(OPEN_PAREN);
783 buf.append(tag);
786 buf.append(LESS_OP);
787 buf.append(EQUAL_OP);
788 buf.append(n - 1);
791 buf.append(GREATER_OP);
792 buf.append(EQUAL_OP);
793 buf.append(n + 1);
797 buf.append(CLOSE_PAREN);
804 buf.append(OPEN_PAREN);
805 buf.append(tag);
810 buf.append(LESS_OP);
811 buf.append(EQUAL_OP);
814 buf.append(GREATER_OP);
815 buf.append(EQUAL_OP);
818 buf.append(compOp);
822 buf.append(valTok);
823 buf.append(CLOSE_PAREN);