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

1 2 3 4 5

  /external/webkit/Source/WebCore/platform/graphics/
GraphicsTypes.cpp 152 String textBaselineName(TextBaseline baseline)
154 ASSERT(baseline >= 0);
155 ASSERT(baseline < 6);
157 return names[baseline];
160 bool parseTextBaseline(const String& s, TextBaseline& baseline)
163 baseline = AlphabeticTextBaseline;
167 baseline = TopTextBaseline;
171 baseline = MiddleTextBaseline;
175 baseline = BottomTextBaseline;
179 baseline = IdeographicTextBaseline
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
results.properties 12 -baseline 3.0_200406251208_200505301645 \
13 -baseline.prefix 3.0_ \
  /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/css/
SVGCSSPropertyNames.in 41 alignment-baseline
42 baseline-shift
43 dominant-baseline
  /frameworks/base/core/java/android/text/style/
LineBackgroundSpan.java 27 int top, int baseline, int bottom,
LeadingMarginSpan.java 56 * @param baseline the baseline of the line
66 int top, int baseline, int bottom,
139 int top, int baseline, int bottom,
  /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/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...]
  /frameworks/base/tools/preload/
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...]
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);
PrintHtmlDiff.java 81 printTable(out, root.baseline, added);
83 printTable(out, root.baseline, removed);
87 static void printTable(PrintStream out, MemoryUsage baseline,
126 = clazz.memoryUsage.subtract(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/
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...]
  /external/quake/quake/src/QW/server/
sv_init.c 78 baseline will be transmitted
98 // create entity baseline
100 VectorCopy (svent->v.origin, svent->baseline.origin);
101 VectorCopy (svent->v.angles, svent->baseline.angles);
102 svent->baseline.frame = svent->v.frame;
103 svent->baseline.skinnum = svent->v.skin;
106 svent->baseline.colormap = entnum;
107 svent->baseline.modelindex = SV_ModelIndex("progs/player.mdl");
111 svent->baseline.colormap = 0;
112 svent->baseline.modelindex
    [all...]
  /external/quake/quake/src/WinQuake/
cl_parse.cpp 377 modnum = ent->baseline.modelindex;
403 ent->frame = ent->baseline.frame;
408 i = ent->baseline.colormap;
422 skin = ent->baseline.skin;
434 ent->skinnum = ent->baseline.skin;
440 ent->effects = ent->baseline.effects;
449 ent->msg_origins[0][0] = ent->baseline.origin[0];
453 ent->msg_angles[0][0] = ent->baseline.angles[0];
458 ent->msg_origins[0][1] = ent->baseline.origin[1];
462 ent->msg_angles[0][1] = ent->baseline.angles[1]
    [all...]
sv_main.cpp 476 miss = ent->u.v.origin[i] - ent->baseline.origin[i];
481 if ( ent->u.v.angles[0] != ent->baseline.angles[0] )
484 if ( ent->u.v.angles[1] != ent->baseline.angles[1] )
487 if ( ent->u.v.angles[2] != ent->baseline.angles[2] )
493 if (ent->baseline.colormap != ent->u.v.colormap)
496 if (ent->baseline.skin != ent->u.v.skin)
499 if (ent->baseline.frame != ent->u.v.frame)
502 if (ent->baseline.effects != ent->u.v.effects)
505 if (ent->baseline.modelindex != ent->u.v.modelindex)
941 // create entity baseline
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 72 if (node.baseline != -1) {
74 g.drawLine(0, node.baseline, width, node.baseline);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GlobalCanvasDragInfo.java 166 * Returns the baseline of the drag, or -1 if not applicable
175 * Sets the baseline of the drag
177 * @param baseline the new baseline
179 public void setDragBaseline(int baseline) {
180 mDragBaseline = baseline;
  /external/webkit/Source/WebCore/rendering/mathml/
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...]
RenderMathMLBlock.cpp 105 int baseline = baselinePosition(AlphabeticBaseline, true, HorizontalLine); local
109 info.context->drawLine(IntPoint(tx, ty + baseline), IntPoint(tx + offsetWidth(), ty + baseline));
  /external/skia/tools/
compare_baselines.py 40 baseline images; if you want to check in new baseline images (ones that the
150 # Download all checked-in baseline images to a temp directory
155 # Flatten those checked-in baseline images into checkedin_flattened_dir
161 # Flatten the local baseline images into local_flattened_dir
195 help='path to root of locally stored baseline images '
206 'expected GM baseline images; defaults to "%s"' %
  /external/srec/config/en.us/
config.mk 6 baseline.par \
  /packages/apps/Email/tests/src/com/android/email/
AccountTestCase.java 118 android.accounts.Account[] baseline) {
120 if (baseline.length == 0) {
127 for (android.accounts.Account removeAccount : baseline) {
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 155 float percentageDifferent(const Image& baseline, const Image& actual)
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/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/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...]

Completed in 601 milliseconds

1 2 3 4 5