Lines Matching defs:paragraph

88      * Create Bidi from the given paragraph of text and base direction.
89 * @param paragraph a paragraph of text
95 public Bidi(String paragraph, int flags) {
96 if (paragraph == null) {
97 throw new IllegalArgumentException("paragraph is null");
100 bidiBase = new BidiBase(paragraph.toCharArray(), 0, null, 0, paragraph.length(), flags);
104 * Create Bidi from the given paragraph of text.
110 * present, must be applied to all the text in the paragraph.
120 * must be applied to all the text in the paragraph.
122 * @param paragraph a paragraph of text with optional character and paragraph attribute information
128 public Bidi(AttributedCharacterIterator paragraph) {
129 if (paragraph == null) {
130 throw new IllegalArgumentException("paragraph is null");
134 bidiBase.setPara(paragraph);
143 * @param text an array containing the paragraph of text to process.
144 * @param textStart the index into the text array of the start of the paragraph.
145 * @param embeddings an array containing embedding values for each character in the paragraph.
147 * @param embStart the index into the embedding array of the start of the paragraph.
148 * @param paragraphLength the length of the paragraph in the text and embeddings arrays.
177 * the paragraph represented by the current Bidi. This call is not required if the
178 * entire paragraph fits on one line.
180 * @param lineStart the offset from the start of the paragraph to the start of the line.
181 * @param lineLimit the offset from the start of the paragraph to the limit of the line.