HomeSort by relevance Sort by last modified time
    Searched defs:Paragraph (Results 1 - 6 of 6) sorted by null

  /external/icu/icu4c/source/samples/layout/
paragraph.h 14 * file name: Paragraph.h
39 class Paragraph
42 Paragraph(const LEUnicode chars[], le_int32 charCount, const FontRuns *fontRuns, LEErrorCode &status);
44 ~Paragraph();
52 static Paragraph *paragraphFactory(const char *fileName, const LEFontInstance *font, GUISupport *guiSupport);
77 inline le_int32 Paragraph::getLineHeight()
82 inline le_int32 Paragraph::getLineCount()
87 inline le_int32 Paragraph::getAscent()
paragraph.cpp 14 * file name: Paragraph.cpp
29 #include "paragraph.h"
82 Paragraph::Paragraph(const LEUnicode chars[], int32_t charCount, const FontRuns *fontRuns, LEErrorCode &status)
167 Paragraph::~Paragraph()
173 for (le_int32 paragraph = 0; paragraph < fParagraphCount; paragraph += 1) {
174 delete fParagraphLayout[paragraph];
    [all...]
  /external/pdfium/core/fxcrt/
cfx_char.h 14 enum class CFX_BreakType { None = 0, Piece, Line, Paragraph, Page };
  /external/syzkaller/vendor/golang.org/x/text/unicode/bidi/
bidi.go 66 // DefaultDirection sets the default direction for a Paragraph. The direction is
72 // A Paragraph holds a single Paragraph for Bidi processing.
73 type Paragraph struct {
77 // SetBytes configures p for the given paragraph text. It replaces text
78 // previously set by SetBytes or SetString. If b contains a paragraph separator
79 // it will only process the first paragraph and report the number of bytes
82 func (p *Paragraph) SetBytes(b []byte, opts ...Option) (n int, err error) {
86 // SetString configures p for the given paragraph text. It replaces text
87 // previously set by SetBytes or SetString. If b contains a paragraph separato
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 341 ParagraphComment *Paragraph = S.actOnParagraphComment(None);
343 S.actOnParamCommandFinish(PC, Paragraph);
346 S.actOnTParamCommandFinish(TPC, Paragraph);
349 S.actOnBlockCommandFinish(BC, Paragraph);
369 // If there's a block command ahead, we will attach an empty paragraph to
381 ParagraphComment *Paragraph;
383 Paragraph = S.actOnParagraphComment(None);
387 // paragraph.
388 Paragraph = cast<ParagraphComment>(Block);
392 S.actOnParamCommandFinish(PC, Paragraph);
    [all...]
  /external/clang/include/clang/AST/
Comment.h 551 /// A single paragraph that contains inline content.
600 /// arguments depends on command name) and a paragraph as an argument
616 /// Paragraph argument.
617 ParagraphComment *Paragraph;
625 Paragraph(nullptr) {
637 Paragraph(nullptr) {
649 return reinterpret_cast<child_iterator>(&Paragraph);
653 return reinterpret_cast<child_iterator>(&Paragraph + 1);
696 return Paragraph;
700 return Paragraph && !Paragraph->isWhitespace()
    [all...]

Completed in 310 milliseconds