Searched defs:baseline (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/tools/preload/
H A DPrintCsv.java44 MemoryUsage baseline = MemoryUsage.baseline();
51 printRow(System.out, baseline, loadedClass);
70 static void printRow(PrintStream out, MemoryUsage baseline, argument
108 = loadedClass.memoryUsage.subtract(baseline);
H A DPrintHtmlDiff.java81 printTable(out, root.baseline, added);
83 printTable(out, root.baseline, removed);
87 static void printTable(PrintStream out, MemoryUsage baseline, argument
126 = clazz.memoryUsage.subtract(baseline);
H A DRoot.java49 MemoryUsage baseline = MemoryUsage.baseline(); field in class:Root
H A DMemoryUsage.java107 MemoryUsage subtract(MemoryUsage baseline) { argument
109 nativeSharedPages - baseline.nativeSharedPages,
110 javaSharedPages - baseline.javaSharedPages,
111 otherSharedPages - baseline.otherSharedPages,
112 nativePrivatePages - baseline.nativePrivatePages,
113 javaPrivatePages - baseline.javaPrivatePages,
114 otherPrivatePages - baseline.otherPrivatePages,
115 allocCount - baseline.allocCount,
116 allocSize - baseline.allocSize,
117 freedCount - baseline
156 static MemoryUsage baseline() { method in class:MemoryUsage
[all...]
/frameworks/base/core/java/android/text/style/
H A DLineBackgroundSpan.java27 int top, int baseline, int bottom,
25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
H A DDrawableMarginSpan.java42 int top, int baseline, int bottom,
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DIconMarginSpan.java42 int top, int baseline, int bottom,
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DBulletSpan.java91 int top, int baseline, int bottom,
90 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout l) argument
H A DLeadingMarginSpan.java59 * @param baseline the baseline of the line
69 int top, int baseline, int bottom,
156 int top, int baseline, int bottom,
67 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
154 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DQuoteSpan.java79 int top, int baseline, int bottom,
78 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBlasTestList.java44 public final float baseline; field in class:BlasTestList.TestName
48 baseline = base;
52 baseline = 1.f;
/frameworks/base/libs/hwui/
H A DFrameInfoVisualizer.cpp133 void FrameInfoVisualizer::initializeRects(const int baseline, const int width) { argument
140 // Set the bottom of all the shapes to the baseline
163 rect[ri + 1] = baseline;
165 rect[ri + 3] = baseline;
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DIPTestList.java83 public final float baseline; field in class:IPTestList.TestName
88 baseline = base;
93 baseline = 1.f;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DIPTestListJB.java86 public final float baseline; field in class:IPTestListJB.TestName
91 baseline = base;
96 baseline = 1.f;
/frameworks/base/core/java/android/text/
H A DTextLine.java220 * @param y the baseline
381 * @param y the baseline
708 float thickness, float xleft, float xright, float baseline) {
709 final float strokeTop = baseline + wp.baselineShift + position;
748 * @param y the baseline
864 * @param y the baseline
978 * @param y the baseline
1137 * @param y the baseline of the run
707 drawStroke(TextPaint wp, Canvas c, int color, float position, float thickness, float xleft, float xright, float baseline) argument
/frameworks/base/core/java/android/widget/
H A DImageView.java1373 * <p>Return the offset of the widget's text baseline from the widget's top
1376 * @return the offset of the baseline within the widget's bounds or -1
1377 * if baseline alignment is not supported.
1390 * <p>Set the offset of the widget's text baseline from the widget's top
1394 * @param baseline The baseline to use, or -1 if none is to be provided.
1399 public void setBaseline(int baseline) { argument
1400 if (mBaseline != baseline) {
1401 mBaseline = baseline;
1407 * Sets whether the baseline o
[all...]

Completed in 1171 milliseconds