Symbol: Paragraph
src/apps/haikudepot/textview/MarkupParser.cpp
87
fCurrentParagraph = Paragraph(*fCurrentParagraphStyle);
src/apps/haikudepot/textview/MarkupParser.h
61
Paragraph fCurrentParagraph;
src/apps/haikudepot/textview/Paragraph.cpp
109
Paragraph::Append(const TextSpan& span)
src/apps/haikudepot/textview/Paragraph.cpp
13
Paragraph::Paragraph()
src/apps/haikudepot/textview/Paragraph.cpp
130
Paragraph::Insert(int32 offset, const TextSpan& newSpan)
src/apps/haikudepot/textview/Paragraph.cpp
185
Paragraph::Remove(int32 offset, int32 length)
src/apps/haikudepot/textview/Paragraph.cpp
20
Paragraph::Paragraph(const ParagraphStyle& style)
src/apps/haikudepot/textview/Paragraph.cpp
264
Paragraph::Clear()
src/apps/haikudepot/textview/Paragraph.cpp
271
Paragraph::Length() const
src/apps/haikudepot/textview/Paragraph.cpp
289
Paragraph::IsEmpty() const
src/apps/haikudepot/textview/Paragraph.cpp
29
Paragraph::Paragraph(const Paragraph& other)
src/apps/haikudepot/textview/Paragraph.cpp
296
Paragraph::EndsWith(BString string) const
src/apps/haikudepot/textview/Paragraph.cpp
307
Paragraph::Text() const
src/apps/haikudepot/textview/Paragraph.cpp
320
Paragraph::Text(int32 start, int32 length) const
src/apps/haikudepot/textview/Paragraph.cpp
322
Paragraph subParagraph = SubParagraph(start, length);
src/apps/haikudepot/textview/Paragraph.cpp
327
Paragraph
src/apps/haikudepot/textview/Paragraph.cpp
328
Paragraph::SubParagraph(int32 start, int32 length) const
src/apps/haikudepot/textview/Paragraph.cpp
336
Paragraph result(fStyle);
src/apps/haikudepot/textview/Paragraph.cpp
372
Paragraph::PrintToStream() const
src/apps/haikudepot/textview/Paragraph.cpp
38
Paragraph&
src/apps/haikudepot/textview/Paragraph.cpp
39
Paragraph::operator=(const Paragraph& other)
src/apps/haikudepot/textview/Paragraph.cpp
398
Paragraph::_InvalidateCachedLength()
src/apps/haikudepot/textview/Paragraph.cpp
50
Paragraph::operator==(const Paragraph& other) const
src/apps/haikudepot/textview/Paragraph.cpp
61
Paragraph::operator!=(const Paragraph& other) const
src/apps/haikudepot/textview/Paragraph.cpp
68
Paragraph::CountTextSpans() const
src/apps/haikudepot/textview/Paragraph.cpp
75
Paragraph::TextSpanAtIndex(int32 index) const
src/apps/haikudepot/textview/Paragraph.cpp
82
Paragraph::SetStyle(const ParagraphStyle& style)
src/apps/haikudepot/textview/Paragraph.cpp
89
Paragraph::Prepend(const TextSpan& span)
src/apps/haikudepot/textview/Paragraph.h
15
class Paragraph {
src/apps/haikudepot/textview/Paragraph.h
17
Paragraph();
src/apps/haikudepot/textview/Paragraph.h
18
Paragraph(const ParagraphStyle& style);
src/apps/haikudepot/textview/Paragraph.h
19
Paragraph(const Paragraph& other);
src/apps/haikudepot/textview/Paragraph.h
21
Paragraph& operator=(const Paragraph& other);
src/apps/haikudepot/textview/Paragraph.h
22
bool operator==(const Paragraph& other) const;
src/apps/haikudepot/textview/Paragraph.h
23
bool operator!=(const Paragraph& other) const;
src/apps/haikudepot/textview/Paragraph.h
44
Paragraph SubParagraph(int32 start, int32 length) const;
src/apps/haikudepot/textview/ParagraphLayout.cpp
1000
ParagraphLayout::_AppendTextSpans(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
179
ParagraphLayout::ParagraphLayout(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
215
ParagraphLayout::SetParagraph(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.h
176
ParagraphLayout(const Paragraph& paragraph);
src/apps/haikudepot/textview/ParagraphLayout.h
180
void SetParagraph(const Paragraph& paragraph);
src/apps/haikudepot/textview/ParagraphLayout.h
236
void _AppendTextSpans(const Paragraph& paragraph);
src/apps/haikudepot/textview/TextDocument.cpp
171
const Paragraph& paragraph = ParagraphAt(textOffset, paragraphOffset);
src/apps/haikudepot/textview/TextDocument.cpp
192
const Paragraph& paragraph = ParagraphAt(textOffset, paragraphOffset);
src/apps/haikudepot/textview/TextDocument.cpp
213
const Paragraph& paragraph = ParagraphAt(textOffset, paragraphOffset);
src/apps/haikudepot/textview/TextDocument.cpp
248
const Paragraph&
src/apps/haikudepot/textview/TextDocument.cpp
264
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
277
const Paragraph&
src/apps/haikudepot/textview/TextDocument.cpp
288
const Paragraph&
src/apps/haikudepot/textview/TextDocument.cpp
298
TextDocument::Append(const Paragraph& paragraph)
src/apps/haikudepot/textview/TextDocument.cpp
320
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
344
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
386
const Paragraph& paragraph = fParagraphs[i];
src/apps/haikudepot/textview/TextDocument.cpp
442
Paragraph paragraph(paragraphStyle);
src/apps/haikudepot/textview/TextDocument.cpp
464
paragraph = Paragraph(paragraphStyle);
src/apps/haikudepot/textview/TextDocument.cpp
544
const Paragraph& paragraph = document->ParagraphAt(0);
src/apps/haikudepot/textview/TextDocument.cpp
550
Paragraph paragraph1(ParagraphAt(index).Style());
src/apps/haikudepot/textview/TextDocument.cpp
551
Paragraph paragraph2(document->ParagraphAt(
src/apps/haikudepot/textview/TextDocument.cpp
554
const Paragraph& paragraphAtIndex = ParagraphAt(index);
src/apps/haikudepot/textview/TextDocument.cpp
584
const Paragraph& otherParagraph = document->ParagraphAt(0);
src/apps/haikudepot/textview/TextDocument.cpp
605
const Paragraph& otherParagraph = document->ParagraphAt(i);
src/apps/haikudepot/textview/TextDocument.cpp
619
const Paragraph& otherParagraph = document->ParagraphAt(lastIndex);
src/apps/haikudepot/textview/TextDocument.cpp
662
Paragraph paragraph(ParagraphAt(index));
src/apps/haikudepot/textview/TextDocument.cpp
663
const Paragraph& otherParagraph = document->ParagraphAt(0);
src/apps/haikudepot/textview/TextDocument.cpp
700
Paragraph resultParagraph(ParagraphAt(index));
src/apps/haikudepot/textview/TextDocument.cpp
718
const Paragraph& paragraph = ParagraphAt(index + 1);
src/apps/haikudepot/textview/TextDocument.cpp
732
const Paragraph& paragraph = ParagraphAt(index + 1);
src/apps/haikudepot/textview/TextDocument.cpp
743
Paragraph newParagraph(paragraph);
src/apps/haikudepot/textview/TextDocument.h
115
std::vector<Paragraph>
src/apps/haikudepot/textview/TextDocument.h
117
Paragraph fEmptyLastParagraph;
src/apps/haikudepot/textview/TextDocument.h
62
const Paragraph& ParagraphAtIndex(int32 index) const;
src/apps/haikudepot/textview/TextDocument.h
67
const Paragraph& ParagraphAt(int32 textOffset,
src/apps/haikudepot/textview/TextDocument.h
70
const Paragraph& ParagraphAt(int32 index) const;
src/apps/haikudepot/textview/TextDocument.h
72
bool Append(const Paragraph& paragraph);
src/apps/haikudepot/textview/TextDocumentLayout.cpp
132
const Paragraph& paragraph = fDocument->ParagraphAtIndex(start);
src/apps/haikudepot/textview/TextDocumentLayout.cpp
359
const Paragraph& paragraph = fDocument->ParagraphAtIndex(i);
src/apps/haikudepot/textview/TextView.h
39
Paragraph fText;
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
1116
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);