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

1 2 3 4 5 6

  /external/skia/tools/skpdiff/
SkImageDiffer.cpp 24 int SkImageDiffer::queueDiffOfFile(const char baseline[], const char test[]) {
27 if (!SkImageDecoder::DecodeFile(baseline, &baselineBitmap)) {
28 SkDebugf("Failed to load bitmap \"%s\"\n", baseline);
SkDifferentPixelsMetric_cpu.cpp 25 int SkDifferentPixelsMetric::queueDiff(SkBitmap* baseline, SkBitmap* test) {
36 if (baseline->width() != test->width() || baseline->height() != test->height() ||
37 baseline->width() <= 0 || baseline->height() <= 0 ||
38 baseline->config() != test->config()) {
43 int width = baseline->width();
44 int height = baseline->height();
48 baseline->lockPixels();
52 unsigned char* baselineRow = (unsigned char*)baseline->getAddr(0, y)
    [all...]
SkImageDiffer.h 41 * @param baseline The file path of the baseline image
45 int queueDiffOfFile(const char baseline[], const char test[]);
49 * @param baseline The correct bitmap
53 virtual int queueDiff(SkBitmap* baseline, SkBitmap* test) = 0;
SkDifferentPixelsMetric_opencl.cpp 20 "__kernel void diff(read_only image2d_t baseline, read_only image2d_t test, \n"
23 " uint4 baselinePixel = read_imageui(baseline, gInSampler, coord); \n"
40 cl_mem baseline; member in struct:SkDifferentPixelsMetric::QueuedDiff
50 int SkDifferentPixelsMetric::queueDiff(SkBitmap* baseline, SkBitmap* test) {
62 if (baseline->width() != test->width() || baseline->height() != test->height() ||
63 baseline->width() <= 0 || baseline->height() <= 0 ||
64 baseline->config() != test->config()) {
70 if (!this->makeImage2D(baseline, &diff->baseline) || !this->makeImage2D(test, &diff->test))
    [all...]
SkPMetric.h 22 virtual int queueDiff(SkBitmap* baseline, SkBitmap* test) SK_OVERRIDE;
SkDifferentPixelsMetric.h 31 virtual int queueDiff(SkBitmap* baseline, SkBitmap* test) SK_OVERRIDE;
  /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/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsTypes.cpp 189 String textBaselineName(TextBaseline baseline)
191 ASSERT(baseline >= 0);
192 ASSERT(baseline < 6);
194 return names[baseline];
197 bool parseTextBaseline(const String& s, TextBaseline& baseline)
200 baseline = AlphabeticTextBaseline;
204 baseline = TopTextBaseline;
208 baseline = MiddleTextBaseline;
212 baseline = BottomTextBaseline;
216 baseline = IdeographicTextBaseline
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_host_metrics_unittest.cc 39 scoped_ptr<HistogramSamples> baseline; local
43 baseline = histogram->SnapshotSamples();
51 if (baseline.get())
52 samples->Subtract(*baseline);
56 baseline.reset(samples.release());
64 samples->Subtract(*baseline);
75 scoped_ptr<HistogramSamples> baseline = histogram->SnapshotSamples(); local
83 samples->Subtract(*baseline);
130 scoped_ptr<HistogramSamples> baseline; local
133 baseline = histogram->SnapshotSamples()
    [all...]
  /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
  /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/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bar_instructions_view.cc 56 int baseline = view->GetBaseline(); local
57 if (baseline != -1) {
58 ascent = std::max(ascent, baseline);
59 descent = std::max(descent, pref.height() - baseline);
77 int baseline = view->GetBaseline(); local
79 if (baseline != -1 && baseline_ != -1)
80 y = baseline_ - baseline;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.cpp 72 EDominantBaseline baseline = style->dominantBaseline(); local
73 if (baseline == DB_AUTO) {
75 baseline = DB_CENTRAL;
77 baseline = DB_ALPHABETIC;
80 switch (baseline) {
82 // FIXME: The dominant-baseline and the baseline-table components are set by determining the predominant script of the character data content.
120 EAlignmentBaseline baseline = textRenderer->style()->svgStyle()->alignmentBaseline(); local
121 if (baseline == AB_AUTO) {
122 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...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 72 if (node.baseline != -1) {
74 g.drawLine(0, node.baseline, width, node.baseline);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
flakiness_dashboard.css 52 -webkit-align-items: 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/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/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControl.h 101 // baseline definition, and then inputs of different types wouldn't line up
110 virtual int baselinePosition(FontBaseline baseline, bool firstLine, LineDirectionMode direction, LinePositionMode position) const OVERRIDE
112 return RenderBlock::baselinePosition(baseline, firstLine, direction, position);
  /external/chromium_org/ui/gfx/
platform_font_win.h 86 int baseline,
93 int baseline() const { return baseline_; } function in class:gfx::PlatformFontWin::HFontRef

Completed in 243 milliseconds

1 2 3 4 5 6