Searched refs:tabStops (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DLineBreaker.java36 @NonNull TabStops tabStops) {
39 mTabStops = tabStops;
35 LineBreaker(@onNull List<Primitive> primitives, @NonNull LineWidth lineWidth, @NonNull TabStops tabStops) argument
H A DGreedyLineBreaker.java33 @NonNull TabStops tabStops) {
34 super(primitives, lineWidth, tabStops);
32 GreedyLineBreaker(@onNull List<Primitive> primitives, @NonNull LineWidth lineWidth, @NonNull TabStops tabStops) argument
H A DOptimizingLineBreaker.java39 @NonNull TabStops tabStops) {
40 super(primitives, lineWidth, tabStops);
38 OptimizingLineBreaker(@onNull List<Primitive> primitives, @NonNull LineWidth lineWidth, @NonNull TabStops tabStops) argument
/frameworks/base/core/java/android/text/
H A DLayout.java263 TabStops tabStops = null;
291 // Reset tabStops, we'll rebuild if we encounter a line with
352 if (tabStops == null) {
353 tabStops = new TabStops(TAB_INCREMENT, spans);
355 tabStops.reset(TAB_INCREMENT, spans);
378 int max = (int)getLineExtent(lineNum, tabStops, false);
398 tl.set(paint, buf, start, end, dir, directions, hasTab, tabStops);
539 TabStops tabStops = null;
548 tabStops = new TabStops(TAB_INCREMENT, tabSpans);
551 int max = (int)getLineExtent(line, tabStops, fals
1080 getLineExtent(int line, TabStops tabStops, boolean full) argument
[all...]
H A DTextLine.java132 * @param tabStops the tabStops. Can be null.
135 Directions directions, boolean hasTabs, TabStops tabStops) {
181 mTabs = tabStops;
134 set(TextPaint paint, CharSequence text, int start, int limit, int dir, Directions directions, boolean hasTabs, TabStops tabStops) argument

Completed in 116 milliseconds