Home
last modified time | relevance | path

Searched refs:TextLine (Results 1 – 25 of 531) sorted by relevance

12345678910>>...22

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/
H A DTextLineLCS.java22 private final TextLine[] lines1;
23 private final TextLine[] lines2;
24 private TextLine[][] lcs;
26 public TextLineLCS(TextLine[] lines1, TextLine[] lines2) { in TextLineLCS()
31 public TextLine[][] getResult() { in getResult()
34 return new TextLine[2][0]; in getResult()
35 TextLine[][] result = new TextLine[2][]; in getResult()
87 private TextLine[] compactAndShiftLCS(TextLine[] lcsSide, int len, in compactAndShiftLCS()
88 TextLine[] original) { in compactAndShiftLCS()
89 TextLine[] result = new TextLine[len]; in compactAndShiftLCS()
[all …]
/dports/graphics/dia/dia-0.97.3/lib/
H A Dtextline.h63 void text_line_destroy(TextLine *text);
64 TextLine *text_line_copy(const TextLine *text);
66 void text_line_set_height(TextLine *text, real height);
67 void text_line_set_font(TextLine *text, DiaFont *font);
68 gchar *text_line_get_string(const TextLine *text);
69 DiaFont *text_line_get_font(const TextLine *text);
70 real text_line_get_height(const TextLine *text);
72 real text_line_get_width(const TextLine *text);
73 real text_line_get_ascent(const TextLine *text);
74 real text_line_get_descent(const TextLine *text);
[all …]
H A Dtextline.c93 TextLine *
96 TextLine *text_line = g_new0(TextLine, 1); in text_line_new()
105 TextLine *
106 text_line_copy(const TextLine *text_line) in text_line_copy()
116 text_line_destroy(TextLine *text_line) in text_line_destroy()
144 text_line_get_string(const TextLine *text_line) in text_line_get_string()
150 text_line_get_font(const TextLine *text_line) in text_line_get_font()
162 text_line_get_width(const TextLine *text_line) in text_line_get_width()
209 text_line_dirty_cache(TextLine *text_line) in text_line_dirty_cache()
215 clear_layout_offset (TextLine *text_line) in clear_layout_offset()
[all …]
/dports/devel/py-zope.i18n/zope.i18n-3.8.0/src/zope/i18n/interfaces/
H A Dlocales.py66 language = TextLine(
73 script = TextLine(
86 variant = TextLine(
109 number = TextLine(
176 type = TextLine(
205 type = TextLine(
217 pattern = TextLine(
233 default = TextLine(
251 type = TextLine(
276 type = TextLine(
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Razor/Text/
H A DLineTrackingStringBuffer.cs12 private TextLine _currentLine;
13 private TextLine _endLine;
14 private IList<TextLine> _lines;
18 _endLine = new TextLine(0, 0); in LineTrackingStringBuffer()
19 _lines = new List<TextLine>() { _endLine }; in LineTrackingStringBuffer()
49 TextLine line = FindLine(absoluteIndex); in CharAt()
70 private TextLine FindLine(int absoluteIndex) in FindLine()
72 TextLine selected = null; in FindLine()
100 private TextLine ScanLines(int absoluteIndex, int startPos) in ScanLines()
127 private class TextLine class in System.Web.Razor.Text.LineTrackingStringBuffer
[all …]
/dports/cad/tkgate/tkgate-2.1/src/tkgate/
H A Dtext.c42 void TextBlock_copyRange(TextBlock *dst,TextLine *start,TextLine *stop) in TextBlock_copyRange()
44 TextLine *line; in TextBlock_copyRange()
55 TextLine *line; in TextBlock_copy()
85 TextLine *tl = (TextLine*) ob_malloc(sizeof(TextLine),"TextLine"); in TextBlock_addLine()
113 TextLine *tl = (TextLine*) ob_malloc(sizeof(TextLine),"TextLine"); in TextBlock_prependLine()
139 TextLine *tl,*next_tl; in TextBlock_flush()
H A Dtext.h29 } TextLine; typedef
37 TextLine *tb_first; /* First line of text */
38 TextLine *tb_last; /* Last line of text */
49 TextLine *tp_line;
56 void TextBlock_copyRange(TextBlock *dst,TextLine *start,TextLine *stop);
/dports/java/jcommon/jcommon-1.0.23/src/test/java/org/jfree/text/
H A DTextLineTest.java84 final TextLine line1 = new TextLine("Test"); in testEquals()
85 final TextLine line2 = new TextLine("Test"); in testEquals()
96 final TextLine line1 = new TextLine("Test"); in testSerialization()
97 TextLine line2 = null; in testSerialization()
106 line2 = (TextLine) in.readObject(); in testSerialization()
/dports/audio/musescore/MuseScore-3.6.1/libmscore/
H A Dtextline.h39 TextLine* textLine() const { return toTextLine(spanner()); } in textLine()
47 class TextLine final : public TextLineBase {
53 TextLine(Score* s, bool system=false);
54 TextLine(const TextLine&);
55 ~TextLine() {} in ~TextLine()
60 TextLine* clone() const override { return new TextLine(*this); } in clone()
H A Dtextline.cpp106 return static_cast<TextLine*>(spanner()); in propertyDelegate()
126 TextLine::TextLine(Score* s, bool system) in TextLine() function in Ms::TextLine
153 TextLine::TextLine(const TextLine& tl) in TextLine() function in Ms::TextLine
162 void TextLine::initStyle() in initStyle()
174 void TextLine::write(XmlWriter& xml) const in write()
193 void TextLine::read(XmlReader& e) in read()
205 LineSegment* TextLine::createLineSegment() in createLineSegment()
233 Sid TextLine::getTextLinePos(bool above) const in getTextLinePos()
256 Sid TextLine::getPropertyStyle(Pid pid) const in getPropertyStyle()
308 bool TextLine::setProperty(Pid id, const QVariant& v) in setProperty()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skparagraph/src/
H A DTextLine.h27 class TextLine {
39 TextLine() = default;
40 TextLine(const TextLine&) = delete;
41 TextLine& operator=(const TextLine&) = delete;
42 TextLine(TextLine&&) = default;
43 TextLine& operator=(TextLine&&) = default;
44 ~TextLine() = default;
46 TextLine(ParagraphImpl* owner,
/dports/misc/valentina/valentina-5b7e98bf48a86e3c444423a9f03533440a39aad9/src/libs/vlayout/
H A Dvtextmanager.h52 struct TextLine struct
60 friend QDataStream& operator<<(QDataStream& dataStream, const TextLine& data);
61 friend QDataStream& operator>>(QDataStream& dataStream, TextLine& data);
88 QVector<TextLine> GetAllSourceLines() const;
90 const TextLine& GetSourceLine(int i) const;
100 QVector<TextLine> m_liLines;
102 static QVector<TextLine> m_patternLabelLines;
H A Dvtextmanager.cpp50 const quint16 TextLine::classVersion = 1;
56 dataStream << TextLine::streamHeader << TextLine::classVersion; in operator <<()
76 if (actualStreamHeader != TextLine::streamHeader) in operator >>()
88 if (actualClassVersion > TextLine::classVersion) in operator >>()
110 QVector<TextLine> VTextManager::m_patternLabelLines = QVector<TextLine>();
364 QVector<TextLine> textLines; in PrepareLines()
370 TextLine tl; in PrepareLines()
451 QVector<TextLine> VTextManager::GetAllSourceLines() const in GetAllSourceLines()
472 const TextLine& VTextManager::GetSourceLine(int i) const in GetSourceLine()
502 TextLine maxLine; in FitFontSize()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dtext.c83 TextLine *tmp; in text_init_data()
96 tmp = (TextLine *)MEM_mallocN(sizeof(TextLine), "textline"); in text_init_data()
402 tmp = (TextLine *)MEM_mallocN(sizeof(TextLine), "textline"); in text_from_buf()
618 TextLine *tmp; in txt_new_line()
624 tmp = (TextLine *)MEM_mallocN(sizeof(TextLine), "textline"); in txt_new_line()
638 TextLine *tmp; in txt_new_linen()
640 tmp = (TextLine *)MEM_mallocN(sizeof(TextLine), "textline"); in txt_new_linen()
695 int txt_get_span(TextLine *from, TextLine *to) in txt_get_span()
1434 TextLine *l = MEM_mallocN(sizeof(TextLine), "textline"); in txt_from_buf_for_undo()
1630 TextLine *add; in txt_insert_buf()
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/textLayout/src/flashx/textLayout/compose/
H A DISWFContext.as16 * The main usage is for calling the FTE TextLine creation methods.
19 * this interface to control TextLine creation: </p>
22 * the application can access the font if a TextLine
24 …* <li><strong>Reuse existing TextLine instances</strong>: reusing existing TextLine instances ca…
25 * TLF reuses existing TextLine instances internally. TLF reuses
26 * a TextLine by calling <code>TextBlock.recreateTextLine()</code>
27 …* instead of <code>TextBlock.createTextLine()</code> when TLF recognizes that a TextLine is extant…
31 * <p>Your application may have additional TextLine instances that can be reused.
32 * To manually reuse existing TextLine instances:</p>
35 * <li>call <code>TextBlock.recreateTextLine()</code> with the extant TextLine instance instead
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/
H A DDiffTest.java43 TextLineLCS.TextLine[] l1 = TextLineLCS.getTextLines(s1); in testLineAddition()
44 TextLineLCS.TextLine[] l2 = TextLineLCS.getTextLines(s2); in testLineAddition()
47 TextLineLCS.TextLine[][] result = lcs.getResult(); in testLineAddition()
65 TextLineLCS.TextLine[] l1 = TextLineLCS.getTextLines(s1); in testLineDeletion()
66 TextLineLCS.TextLine[] l2 = TextLineLCS.getTextLines(s2); in testLineDeletion()
69 TextLineLCS.TextLine[][] result = lcs.getResult(); in testLineDeletion()
86 TextLineLCS.TextLine[] l1 = TextLineLCS.getTextLines(s1); in testLineAppendEnd()
90 TextLineLCS.TextLine[][] result = lcs.getResult(); in testLineAppendEnd()
110 TextLineLCS.TextLine[][] result = lcs.getResult(); in testLineDeleteEnd()
130 TextLineLCS.TextLine[][] result = lcs.getResult(); in testLineAppendStart()
[all …]
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/undo/
H A Dkatemodifiedundo.cpp19 Kate::TextLine tl = document->plainKateTextLine(line); in KateModifiedInsertText()
32 Kate::TextLine tl = document->plainKateTextLine(line); in KateModifiedRemoveText()
44 Kate::TextLine tl = document->plainKateTextLine(line); in KateModifiedWrapLine()
152 Kate::TextLine tl = doc->plainKateTextLine(line()); in undo()
164 Kate::TextLine tl = doc->plainKateTextLine(line()); in undo()
176 Kate::TextLine tl = doc->plainKateTextLine(line()); in undo()
188 Kate::TextLine tl = doc->plainKateTextLine(line()); in undo()
212 Kate::TextLine tl = doc->plainKateTextLine(line()); in undo()
224 Kate::TextLine tl = doc->plainKateTextLine(line()); in redo()
236 Kate::TextLine tl = doc->plainKateTextLine(line()); in redo()
[all …]
/dports/devel/py-zope.browserresource/zope.browserresource-3.10.3/src/zope/browserresource/
H A Dmetadirectives.py21 from zope.schema import TextLine, Int
51 name = TextLine(
113 name = TextLine(
125 defaultLanguage = TextLine(
136 language = TextLine(
165 name = TextLine(
189 name = TextLine(
209 resource = TextLine(
/dports/graphics/mupdf/mupdf-1.18.0-source/platform/java/src/com/artifex/mupdf/fitz/
H A DStructuredText.java42 ArrayList<TextLine> lines;
55 lines = new ArrayList<TextLine>(); in beginTextBlock()
62 block.lines = lines.toArray(new TextLine[0]); in endTextBlock()
72 TextLine line = new TextLine(); in endLine()
91 public TextLine[] lines;
95 public class TextLine { class in StructuredText
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skplaintexteditor/include/
H A Deditor.h25 struct TextLine;
38 const std::vector<TextLine>& fLines;
40 std::vector<TextLine>::const_iterator fPtr;
103 struct TextLine { struct
113 TextLine(StringSlice t) : fText(std::move(t)) {} in TextLine() function
114 TextLine() {} in TextLine() function
116 std::vector<TextLine> fLines;
123 void markDirty(TextLine*);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skplaintexteditor/include/
H A Deditor.h25 struct TextLine;
38 const std::vector<TextLine>& fLines;
40 std::vector<TextLine>::const_iterator fPtr;
103 struct TextLine { struct
113 TextLine(StringSlice t) : fText(std::move(t)) {} in TextLine() argument
114 TextLine() {} in TextLine() function
116 std::vector<TextLine> fLines;
123 void markDirty(TextLine*);
/dports/editors/ted/Ted-2.23/docBuf/
H A DdocParaTextLines.c23 TextLine * docInsertTextLine( BufferItem * bi, in docInsertTextLine()
26 TextLine * tl; in docInsertTextLine()
33 newSize *= sizeof(TextLine); in docInsertTextLine()
35 tl= (TextLine *)realloc( bi->biParaLines, newSize ); in docInsertTextLine()
37 { LXDEB(bi->biParaLineCount,tl); return (TextLine *)0; } in docInsertTextLine()
78 const TextLine * tl= paraNode->biParaLines+ m; in docFindLineOfPosition()
150 const TextLine * tl= paraNode->biParaLines+ m; in docFindLineOfPosition()
/dports/java/jcommon/jcommon-1.0.23/src/main/java/org/jfree/text/
H A DTextLine.java69 public class TextLine implements Serializable { class
80 public TextLine() { in TextLine() method in TextLine
89 public TextLine(final String text) { in TextLine() method in TextLine
99 public TextLine(final String text, final Font font) { in TextLine() method in TextLine
112 public TextLine(final String text, final Font font, final Paint paint) { in TextLine() method in TextLine
263 if (obj instanceof TextLine) { in equals()
264 final TextLine line = (TextLine) obj; in equals()
/dports/graphics/swftools/swftools-0.9.2/lib/pdf/xpdf/
H A DTextOutputDev.h32 class TextLine; variable
168 friend class TextLine; variable
210 class TextLine {
214 ~TextLine();
220 double primaryDelta(TextLine *line);
224 int primaryCmp(TextLine *line);
229 int secondaryCmp(TextLine *line);
231 int cmpYX(TextLine *line);
241 TextLine *getNext() { return next; } in getNext()
327 friend class TextLine; variable
[all …]
/dports/textproc/pdftohtml/pdftohtml-0.40a/xpdf/
H A DTextOutputDev.h31 class TextLine; variable
139 friend class TextLine; variable
180 class TextLine {
184 ~TextLine();
190 double primaryDelta(TextLine *line);
194 int primaryCmp(TextLine *line);
199 int secondaryCmp(TextLine *line);
201 int cmpYX(TextLine *line);
224 TextLine *next; // next line in block
282 friend class TextLine; variable
[all …]

12345678910>>...22