HomeSort by relevance Sort by last modified time
    Searched defs:baseline (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/eigen/bench/btl/generic_bench/timers/
STL_timer.hh 32 STL_Timer(){ baseline = false; }; // Default constructor
41 // Start a series of r trials to determine baseline time:
44 baseline = true;
73 // true if this is a baseline computation, false otherwise
74 bool baseline; member in class:STL_Timer
75 // For recording the baseline time
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLBlock.cpp 105 int baseline = baselinePosition(AlphabeticBaseline, true, HorizontalLine); local
109 info.context->drawLine(IntPoint(tx, ty + baseline), IntPoint(tx + offsetWidth(), ty + baseline));
RenderMathMLSubSup.cpp 98 wrapperStyle->setVerticalAlign(BASELINE);
181 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;
RenderMathMLUnderOver.cpp 152 // 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 += current->style()->marginTop().value()
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineBaseline.cpp 71 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 = dominantBaselineToAlignmentBaseline(isVerticalText, textRendererParent)
    [all...]
RenderSVGInlineText.cpp 176 float baseline = m_scaledFont.fontMetrics().floatAscent(); local
201 FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height);
SVGInlineTextBox.cpp 721 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/
bookmark_bar_instructions_view.cc 44 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/
progs.h 43 entity_state_t baseline; member in struct:edict_s
  /external/quake/quake/src/WinQuake/
progs.h 43 entity_state_t baseline; member in struct:edict_s
render.h 45 entity_state_t baseline; // to fill in defaults in updates member in struct:entity_s
  /external/skia/gm/
drawbitmaprect.cpp 139 SkScalar baseline = dstRect.height() + local
142 0, baseline,
  /frameworks/base/tools/preload/
PrintCsv.java 44 MemoryUsage baseline = MemoryUsage.baseline(); local
51 printRow(System.out, baseline, loadedClass);
70 static void printRow(PrintStream out, MemoryUsage baseline,
108 = loadedClass.memoryUsage.subtract(baseline);
Root.java 49 MemoryUsage baseline = MemoryUsage.baseline(); field in class:Root
MemoryUsage.java 107 MemoryUsage subtract(MemoryUsage baseline) {
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.freedCount
156 static MemoryUsage baseline() { method in class:MemoryUsage
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 19 import static com.android.ide.common.api.SegmentType.BASELINE;
49 * different segment types -- the left edge, the right edge, the baseline, the center
163 } else if (hEdge.edgeType == BASELINE) {
226 // Match baseline
228 int baseline = firstNode.getBaseline(); local
229 if (baseline != -1) {
230 mDraggedBaseline = baseline;
231 edge = new Segment(b.y + baseline, b.x, b.x2(), firstNode, null, BASELINE,
236 int baseline = feedback.dragBaseline local
    [all...]
  /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/
ConfigResults.java 30 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...]
BuildResults.java 46 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...]
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 81 int baseline; member in struct:WebCore::RenderTableSection::RowStruct
119 int getBaseline(int row) { return m_grid[row].baseline; }
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 52 public int baseline; field in class:ViewNode
82 baseline = getInt("getBaseline()", 0);
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 118 // Gets the baseline coordinates for the current line of text
119 int baseline = getLineBounds(i, r); local
123 * at a vertical position one dip below the baseline, using the "paint" object
126 canvas.drawLine(r.left, baseline + 1, r.right, baseline + 1, paint);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 294 * Get the baseline of a given label. That's how many pixels from the top of
295 * the label to the text baseline. (This is equivalent to the negative of
299 * @return the baseline in pixels.
302 return mLabels.get(labelID).baseline;
371 public Label(float width, float height, float baseLine,
375 this.baseline = baseLine;
386 public float baseline; field in class:LabelMaker.Label
  /external/safe-iop/src/
safe_iop.c 57 if (!baseline) { \
60 baseline = 1; \
79 int baseline = 0; /* indicates if the base value is present */ local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 565 int baseline = dragInfo.getDragBaseline(); local
566 if (baseline != -1) {
567 df.dragBaseline = baseline;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
GenerateResults.java 47 * 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) {
196 setDefaults(current, baseline);
214 String baseline = null; local
228 if (arg.equals("-baseline")) {
229 baseline = args[i + 1];
230 if (baseline.startsWith("-")) {
234 buffer.append(" -baseline = "+baseline+'\n')
    [all...]

Completed in 1369 milliseconds

1 2 3