Symbol: Paragraph
src/apps/haikudepot/textview/MarkupParser.cpp
88
fCurrentParagraph = Paragraph(*fCurrentParagraphStyle);
src/apps/haikudepot/textview/MarkupParser.h
62
Paragraph fCurrentParagraph;
src/apps/haikudepot/textview/Paragraph.cpp
110
Paragraph::Append(const TextSpan& span)
src/apps/haikudepot/textview/Paragraph.cpp
131
Paragraph::Insert(int32 offset, const TextSpan& newSpan)
src/apps/haikudepot/textview/Paragraph.cpp
14
Paragraph::Paragraph()
src/apps/haikudepot/textview/Paragraph.cpp
186
Paragraph::Remove(int32 offset, int32 length)
src/apps/haikudepot/textview/Paragraph.cpp
21
Paragraph::Paragraph(const ParagraphStyle& style)
src/apps/haikudepot/textview/Paragraph.cpp
265
Paragraph::Clear()
src/apps/haikudepot/textview/Paragraph.cpp
272
Paragraph::Length() const
src/apps/haikudepot/textview/Paragraph.cpp
290
Paragraph::IsEmpty() const
src/apps/haikudepot/textview/Paragraph.cpp
297
Paragraph::EndsWith(BString string) const
src/apps/haikudepot/textview/Paragraph.cpp
30
Paragraph::Paragraph(const Paragraph& other)
src/apps/haikudepot/textview/Paragraph.cpp
308
Paragraph::Text() const
src/apps/haikudepot/textview/Paragraph.cpp
321
Paragraph::Text(int32 start, int32 length) const
src/apps/haikudepot/textview/Paragraph.cpp
323
Paragraph subParagraph = SubParagraph(start, length);
src/apps/haikudepot/textview/Paragraph.cpp
328
Paragraph
src/apps/haikudepot/textview/Paragraph.cpp
329
Paragraph::SubParagraph(int32 start, int32 length) const
src/apps/haikudepot/textview/Paragraph.cpp
337
Paragraph result(fStyle);
src/apps/haikudepot/textview/Paragraph.cpp
373
Paragraph::PrintToStream() const
src/apps/haikudepot/textview/Paragraph.cpp
39
Paragraph&
src/apps/haikudepot/textview/Paragraph.cpp
399
Paragraph::_InvalidateCachedLength()
src/apps/haikudepot/textview/Paragraph.cpp
40
Paragraph::operator=(const Paragraph& other)
src/apps/haikudepot/textview/Paragraph.cpp
51
Paragraph::operator==(const Paragraph& other) const
src/apps/haikudepot/textview/Paragraph.cpp
62
Paragraph::operator!=(const Paragraph& other) const
src/apps/haikudepot/textview/Paragraph.cpp
69
Paragraph::CountTextSpans() const
src/apps/haikudepot/textview/Paragraph.cpp
76
Paragraph::TextSpanAtIndex(int32 index) const
src/apps/haikudepot/textview/Paragraph.cpp
83
Paragraph::SetStyle(const ParagraphStyle& style)
src/apps/haikudepot/textview/Paragraph.cpp
90
Paragraph::Prepend(const TextSpan& span)
src/apps/haikudepot/textview/Paragraph.h
16
class Paragraph {
src/apps/haikudepot/textview/Paragraph.h
18
Paragraph();
src/apps/haikudepot/textview/Paragraph.h
19
Paragraph(const ParagraphStyle& style);
src/apps/haikudepot/textview/Paragraph.h
20
Paragraph(const Paragraph& other);
src/apps/haikudepot/textview/Paragraph.h
22
Paragraph& operator=(const Paragraph& other);
src/apps/haikudepot/textview/Paragraph.h
23
bool operator==(const Paragraph& other) const;
src/apps/haikudepot/textview/Paragraph.h
24
bool operator!=(const Paragraph& other) const;
src/apps/haikudepot/textview/Paragraph.h
45
Paragraph SubParagraph(int32 start, int32 length) const;
src/apps/haikudepot/textview/ParagraphLayout.cpp
1001
ParagraphLayout::_AppendTextSpans(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
180
ParagraphLayout::ParagraphLayout(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
216
ParagraphLayout::SetParagraph(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.h
177
ParagraphLayout(const Paragraph& paragraph);
src/apps/haikudepot/textview/ParagraphLayout.h
181
void SetParagraph(const Paragraph& paragraph);
src/apps/haikudepot/textview/ParagraphLayout.h
237
void _AppendTextSpans(const Paragraph& paragraph);
src/apps/haikudepot/textview/TextDocument.cpp
172
const Paragraph& paragraph = ParagraphAt(textOffset, paragraphOffset);
src/apps/haikudepot/textview/TextDocument.cpp
193
const Paragraph& paragraph = ParagraphAt(textOffset, paragraphOffset);
src/apps/haikudepot/textview/TextDocument.cpp
214
const Paragraph& paragraph = ParagraphAt(textOffset, paragraphOffset);
src/apps/haikudepot/textview/TextDocument.cpp
249
const Paragraph&
src/apps/haikudepot/textview/TextDocument.cpp
265
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
278
const Paragraph&
src/apps/haikudepot/textview/TextDocument.cpp
289
const Paragraph&
src/apps/haikudepot/textview/TextDocument.cpp
299
TextDocument::Append(const Paragraph& paragraph)
src/apps/haikudepot/textview/TextDocument.cpp
321
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
345
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
387
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
443
Paragraph paragraph(paragraphStyle);
src/apps/haikudepot/textview/TextDocument.cpp
465
paragraph = Paragraph(paragraphStyle);
src/apps/haikudepot/textview/TextDocument.cpp
545
const Paragraph& paragraph = document->ParagraphAt(0);
src/apps/haikudepot/textview/TextDocument.cpp
551
Paragraph paragraph1(ParagraphAt(index).Style());
src/apps/haikudepot/textview/TextDocument.cpp
552
Paragraph paragraph2(document->ParagraphAt(
src/apps/haikudepot/textview/TextDocument.cpp
555
const Paragraph& paragraphAtIndex = ParagraphAt(index);
src/apps/haikudepot/textview/TextDocument.cpp
585
const Paragraph& otherParagraph = document->ParagraphAt(0);
src/apps/haikudepot/textview/TextDocument.cpp
606
const Paragraph& otherParagraph = document->ParagraphAt(i);
src/apps/haikudepot/textview/TextDocument.cpp
620
const Paragraph& otherParagraph = document->ParagraphAt(lastIndex);
src/apps/haikudepot/textview/TextDocument.cpp
663
Paragraph paragraph(ParagraphAt(index));
src/apps/haikudepot/textview/TextDocument.cpp
664
const Paragraph& otherParagraph = document->ParagraphAt(0);
src/apps/haikudepot/textview/TextDocument.cpp
701
Paragraph resultParagraph(ParagraphAt(index));
src/apps/haikudepot/textview/TextDocument.cpp
719
const Paragraph& paragraph = ParagraphAt(index + 1);
src/apps/haikudepot/textview/TextDocument.cpp
733
const Paragraph& paragraph = ParagraphAt(index + 1);
src/apps/haikudepot/textview/TextDocument.cpp
744
Paragraph newParagraph(paragraph);
src/apps/haikudepot/textview/TextDocument.h
116
std::vector<Paragraph>
src/apps/haikudepot/textview/TextDocument.h
118
Paragraph fEmptyLastParagraph;
src/apps/haikudepot/textview/TextDocument.h
63
const Paragraph& ParagraphAtIndex(int32 index) const;
src/apps/haikudepot/textview/TextDocument.h
68
const Paragraph& ParagraphAt(int32 textOffset,
src/apps/haikudepot/textview/TextDocument.h
71
const Paragraph& ParagraphAt(int32 index) const;
src/apps/haikudepot/textview/TextDocument.h
73
bool Append(const Paragraph& paragraph);
src/apps/haikudepot/textview/TextDocumentLayout.cpp
133
const Paragraph& paragraph = fDocument->ParagraphAtIndex(start);
src/apps/haikudepot/textview/TextDocumentLayout.cpp
360
const Paragraph& paragraph = fDocument->ParagraphAtIndex(i);
src/apps/haikudepot/textview/TextView.h
40
Paragraph fText;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
1089
Paragraph paragraph(paragraphStyle);
src/apps/haikudepot/ui_generic/MarkupTextView.cpp
49
Paragraph paragraph(fMarkupParser.HeadingParagraphStyle());
src/apps/haikudepot/ui_generic/MarkupTextView.cpp
72
Paragraph paragraph(paragraphStyle);