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

12

/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLBlock.cpp105 int baseline = baselinePosition(AlphabeticBaseline, true, HorizontalLine); local
109 info.context->drawLine(IntPoint(tx, ty + baseline), IntPoint(tx + offsetWidth(), ty + baseline));
H A DRenderMathMLSubSup.cpp181 int baseline = offsetHeight(); local
183 return baseline;
194 // The baseline is top spacing of the base + the baseline of the base + adjusted space for zoom
202 baseline = box->baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
206 return baseline;
H A DRenderMathMLUnderOver.cpp152 // We need to calculate the baseline over the over versus the start of the base and
177 // We need to calculate the baseline of the base versus the start of the under block and
190 // the line boxes and the baseline and squeeze them together
203 // We need to calculate the baseline of the over versus the start of the base and
221 // We need to calculate the baseline of the base versus the start of the under block and
231 // the line boxes and the baseline and squeeze them together
252 int baseline = 0; local
256 baseline += getOffsetHeight(current);
263 baseline += toRenderBoxModelObject(base)->baselinePosition(AlphabeticBaseline, firstLine, HorizontalLine, linePositionMode);
265 baseline
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextLayoutEngineBaseline.cpp71 EDominantBaseline baseline = style->dominantBaseline(); local
72 if (baseline == DB_AUTO) {
74 baseline = DB_CENTRAL;
76 baseline = DB_ALPHABETIC;
79 switch (baseline) {
81 // FIXME: The dominant-baseline and the baseline-table components are set by determining the predominant script of the character data content.
119 EAlignmentBaseline baseline = textRenderer->style()->svgStyle()->alignmentBaseline(); local
120 if (baseline == AB_AUTO) {
121 baseline
[all...]
H A DRenderSVGInlineText.cpp176 float baseline = m_scaledFont.fontMetrics().floatAscent(); local
201 FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height);
H A DSVGInlineTextBox.cpp721 float baseline = textRenderer->scaledFont().fontMetrics().floatAscent() / scalingFactor; local
727 FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height);
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_instructions_view.cc44 int baseline = view->GetBaseline(); local
45 if (baseline != -1) {
46 ascent = std::max(ascent, baseline);
47 descent = std::max(descent, pref.height() - baseline);
65 int baseline = view->GetBaseline(); local
67 if (baseline != -1 && baseline_ != -1)
68 y = baseline_ - baseline;
/external/quake/quake/src/QW/server/
H A Dprogs.h43 entity_state_t baseline; member in struct:edict_s
/external/quake/quake/src/WinQuake/
H A Dprogs.h43 entity_state_t baseline; member in struct:edict_s
H A Drender.h45 entity_state_t baseline; // to fill in defaults in updates member in struct:entity_s
/external/skia/gm/
H A Ddrawbitmaprect.cpp123 SkScalar baseline = dstRect.height() + local
126 0, baseline,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DBuildResults.java46 boolean baseline; field in class:BuildResults
56 this.baseline = this.name.startsWith(DB_Results.getDbBaselinePrefix());
108 * Returns the most recent baseline build results.
110 * @return The {@link BuildResults baseline build results}.
157 if (this.baseline) {
315 * Returns whether the build is a baseline build or not.
317 * @return <code>true</code> if the build name starts with the baseline prefix
322 return this.baseline;
386 this.baseline = kind == 0;
387 if (this.baseline) {
[all...]
H A DConfigResults.java30 BuildResults baseline, current; field in class:ConfigResults
44 /*if (this.baseline == null || this.current == null) */initialize();
50 * Returns the baseline build name used to compare results with.
52 * @return The name of the baseline build
56 if (this.baseline == null) {
59 return this.baseline.getName();
63 * Returns the most recent baseline build results.
65 * @return The {@link BuildResults baseline build results}.
69 if (this.baseline == null) {
72 return this.baseline;
[all...]
H A DPerformanceResults.java34 * Usually performance results are built for a current build vs. a baseline build.
46 String baselineName; // Name of the baseline build used for comparison
102 public PerformanceResults(String name, String baseline, String baselinePrefix, PrintStream stream) { argument
104 this.baselineName = baseline;
124 * Returns the name of the baseline used for extracted results
126 * @return The build name of the baseline of <code>null</code>
127 * if no specific baseline is used for the extracted results.
134 * Get the baseline prefix (computed from #baselineName).
263 * 1: all except baseline builds
264 * 2: all except baseline an
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DGenerateResults.java47 * Prefix of baseline builds displayed in data graphs.
48 * This field is set using <b>-baseline.prefix</b> argument.
51 * <pre>-baseline.prefix 3.2_200606291905</pre>
189 public GenerateResults(PerformanceResults results, String current, String baseline, boolean fingerprints, File data, File output) { argument
196 setDefaults(current, baseline);
214 String baseline = null;
228 if (arg.equals("-baseline")) {
229 baseline = args[i + 1];
230 if (baseline.startsWith("-")) {
234 buffer.append(" -baseline
979 setDefaults(String buildName, String baseline) argument
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderTableSection.h81 int baseline; member in struct:WebCore::RenderTableSection::RowStruct
119 int getBaseline(int row) { return m_grid[row].baseline; }
H A DRenderTableSection.cpp181 m_grid[r].baseline = 0;
358 m_grid[r].baseline = 0;
359 int baseline = 0; local
407 // find out the baseline
412 baseline = max(baseline, b - cell->intrinsicPaddingBefore());
418 // do we have baseline aligned elements?
419 if (baseline) {
420 // increase rowheight if baseline requires
421 m_rowPos[r + 1] = max(m_rowPos[r + 1], baseline
[all...]
H A DInlineTextBox.cpp903 int baseline = styleToUse->fontMetrics().ascent(); local
909 FloatRect clipRect(localOrigin, FloatSize(width, baseline + 2));
911 FloatRect shadowRect(localOrigin, FloatSize(width, baseline + 2));
921 extraOffset += baseline + 2;
946 // Leave one pixel of white between the baseline and the underline.
947 context->drawLineForText(FloatPoint(localOrigin.x(), localOrigin.y() + baseline + 1), width, isPrinting);
957 context->drawLineForText(FloatPoint(localOrigin.x(), localOrigin.y() + 2 * baseline / 3), width, isPrinting);
1035 // we pin to two pixels under the baseline.
1037 int baseline = renderer()->style(m_firstLine)->fontMetrics().ascent(); local
1038 int descent = logicalHeight() - baseline;
1194 int baseline = renderer()->style(m_firstLine)->fontMetrics().ascent(); local
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp155 float percentageDifferent(const Image& baseline, const Image& actual) argument
157 int w = min(baseline.width(), actual.width());
158 int h = min(baseline.height(), actual.height());
164 if (baseline.pixelAt(x, y) != actual.pixelAt(x, y))
170 int maxWidth = max(baseline.width(), actual.width());
171 int maxHeight = max(baseline.height(), actual.height());
263 fputs("Error, baseline image can't be decoded.\n", stderr);
/external/safe-iop/src/
H A Dsafe_iop.c57 if (!baseline) { \
60 baseline = 1; \
79 int baseline = 0; /* indicates if the base value is present */ local
/external/linux-tools-perf/util/
H A Dprobe-finder.c1791 int baseline = 0, lineno = 0, ret = 0; local
1816 /* Find a corresponding function (name, baseline and baseaddr) */
1822 dwarf_decl_line(&spdie, &baseline) != 0)
1828 lineno = baseline;
1843 * of the inline function, baseline should
1848 dwarf_decl_line(&spdie, &baseline) == 0)
1857 ppt->line = lineno - baseline;
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp1789 TextBaseline baseline; local
1790 if (!parseTextBaseline(s, baseline))
1792 state().m_textBaseline = baseline;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar ... .tools.internal.provisional.model.IApiBaseline baseline boolean success java.io.File file public void ...
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_gtk.cc2025 // Set the baseline emphasis.
2338 // baseline, so we need to move the |instant_view_| down to make sure it
2339 // has the same baseline as the |text_view_|.
2344 int baseline = pango_layout_iter_get_baseline(iter); local
2346 g_object_set(instant_anchor_tag_, "rise", baseline - height, NULL);
/external/skia/src/core/
H A DSkDraw.cpp1587 SkAxisAlignment baseline = SkComputeAxisAlignmentForHText(*matrix); local
1588 if (kX_SkAxisAlignment == baseline) {
1590 } else if (kY_SkAxisAlignment == baseline) {

Completed in 436 milliseconds

12