/frameworks/minikin/libs/minikin/ |
D | LineBreaker.cpp | 27 const TabStops& tabStops) { in breakIntoLines() argument 29 return breakLineGreedy(textBuffer, measuredText, lineWidth, tabStops, in breakIntoLines()
|
D | GreedyLineBreaker.cpp | 42 const LineWidth& lineWidthLimits, const TabStops& tabStops, in GreedyLineBreaker() argument 48 mTabStops(tabStops), in GreedyLineBreaker() 389 const LineWidth& lineWidthLimits, const TabStops& tabStops, in breakLineGreedy() argument 394 GreedyLineBreaker lineBreaker(textBuf, measured, lineWidthLimits, tabStops, enableHyphenation); in breakLineGreedy()
|
D | GreedyLineBreaker.h | 29 const LineWidth& lineWidthLimits, const TabStops& tabStops,
|
/frameworks/layoutlib/bridge/src/android/graphics/text/ |
D | BaseLineBreaker.java | 38 @NonNull TabStops tabStops) { in BaseLineBreaker() argument 41 mTabStops = tabStops; in BaseLineBreaker()
|
D | GreedyLineBreaker.java | 31 @NonNull TabStops tabStops) { in GreedyLineBreaker() argument 32 super(primitives, lineWidth, tabStops); in GreedyLineBreaker()
|
D | OptimizingLineBreaker.java | 39 @NonNull TabStops tabStops) { in OptimizingLineBreaker() argument 40 super(primitives, lineWidth, tabStops); in OptimizingLineBreaker()
|
/frameworks/base/core/jni/android/graphics/text/ |
D | LineBreaker.cpp | 89 ScopedNullableFloatArrayRO tabStops(env, variableTabStops); in nComputeLineBreaks() local 97 tabStops.get(), tabStops.size(), defaultTabStop)); in nComputeLineBreaks()
|
/frameworks/base/core/java/android/text/ |
D | Layout.java | 428 TabStops tabStops = null; in drawText() local 520 if (tabStops == null) { in drawText() 521 tabStops = new TabStops(TAB_INCREMENT, spans); in drawText() 523 tabStops.reset(TAB_INCREMENT, spans); in drawText() 549 int max = (int)getLineExtent(lineNum, tabStops, false); in drawText() 570 tl.set(paint, buf, start, end, dir, directions, hasTab, tabStops, in drawText() 717 TabStops tabStops = null; in getLineStartPos() local 726 tabStops = new TabStops(TAB_INCREMENT, tabSpans); in getLineStartPos() 729 int max = (int)getLineExtent(line, tabStops, false); in getLineStartPos() 1200 TabStops tabStops = null; in getHorizontal() local [all …]
|
D | TextLine.java | 175 Directions directions, boolean hasTabs, TabStops tabStops, in set() argument 233 mTabs = tabStops; in set()
|
/frameworks/minikin/tests/unittest/ |
D | GreedyLineBreakerTest.cpp | 87 TabStops tabStops(nullptr, 0, 10); in doLineBreak() local 88 return breakLineGreedy(textBuffer, *measuredText, rectangleLineWidth, tabStops, in doLineBreak() 683 TabStops tabStops(nullptr, 0, 10); in TEST_F() local 685 breakLineGreedy(textBuf, *measuredText, rectangleLineWidth, tabStops, DO_HYPHEN); in TEST_F() 703 TabStops tabStops(nullptr, 0, 10); in TEST_F() local 705 breakLineGreedy(textBuf, *measuredText, rectangleLineWidth, tabStops, DO_HYPHEN); in TEST_F() 734 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 737 breakLineGreedy(textBuf, *measuredText, rectangleLineWidth, tabStops, DO_HYPHEN); in TEST_F() 755 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 758 breakLineGreedy(textBuf, *measuredText, rectangleLineWidth, tabStops, DO_HYPHEN); in TEST_F() [all …]
|
D | OptimalLineBreakerTest.cpp | 1338 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 1431 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 1519 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 1595 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 1752 TabStops tabStops(nullptr, 0, 0); in TEST_F() local 1887 TabStops tabStops(nullptr, 0, 0); in TEST_F() local
|
/frameworks/minikin/include/minikin/ |
D | AndroidLineBreakerHelper.h | 88 const float* tabStops, int32_t tabStopSize, in computeBreaks() argument 93 TabStops(tabStops, tabStopSize, defaultTabStopWidth)); in computeBreaks()
|
D | LineBreaker.h | 118 const TabStops& tabStops);
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | TextLineTest.java | 100 private TextLine getTextLine(String str, TextPaint paint, TabStops tabStops) { in getTextLine() argument 107 layout.getLineDirections(0), tabStops != null, tabStops, in getTextLine()
|
/frameworks/base/graphics/java/android/graphics/text/ |
D | LineBreaker.java | 287 public void setTabStops(@Nullable float[] tabStops, in setTabStops() argument 289 mVariableTabStops = tabStops; in setTabStops()
|