Searched refs:baseline (Results 1 - 25 of 107) sorted by relevance

12345

/external/skia/tools/skpdiff/
H A DSkDifferentPixelsMetric_cpu.cpp17 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask, argument
22 if (baseline->width() != test->width() || baseline->height() != test->height() ||
23 baseline->width() <= 0 || baseline->height() <= 0 ||
24 baseline->colorType() != test->colorType()) {
28 int width = baseline->width();
29 int height = baseline->height();
39 baseline->lockPixels();
43 unsigned char* baselineRow = (unsigned char*)baseline
[all...]
H A DSkDifferentPixelsMetric_opencl.cpp20 "__kernel void diff(read_only image2d_t baseline, read_only image2d_t test, \n"
23 " uint4 baselinePixel = read_imageui(baseline, gInSampler, coord); \n"
39 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask, argument
51 if (baseline->width() != test->width() || baseline->height() != test->height() ||
52 baseline->width() <= 0 || baseline->height() <= 0 ||
53 baseline->config() != test->config()) {
62 if (!this->makeImage2D(baseline, &baselineImage) || !this->makeImage2D(test, &testImage)) {
68 result->result = 1.0 / ((double)baseline
[all...]
H A DSkImageDiffer.h44 * @param baseline The correct bitmap
49 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
H A DSkPMetric.h22 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
H A DSkDifferentPixelsMetric.h31 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
/external/chromium_org/third_party/skia/tools/skpdiff/
H A DSkDifferentPixelsMetric_opencl.cpp20 "__kernel void diff(read_only image2d_t baseline, read_only image2d_t test, \n"
23 " uint4 baselinePixel = read_imageui(baseline, gInSampler, coord); \n"
39 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeAlphaMask, argument
52 if (baseline->width() != test->width() || baseline->height() != test->height() ||
53 baseline->width() <= 0 || baseline->height() <= 0 ||
54 baseline->config() != test->config()) {
63 if (!this->makeImage2D(baseline, &baselineImage) || !this->makeImage2D(test, &testImage)) {
69 result->result = 1.0 / ((double)baseline
[all...]
H A DSkDifferentPixelsMetric_cpu.cpp17 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, argument
23 if (baseline->width() != test->width() || baseline->height() != test->height() ||
24 baseline->width() <= 0 || baseline->height() <= 0 ||
25 baseline->colorType() != test->colorType()) {
26 SkASSERT(baseline->width() == test->width());
27 SkASSERT(baseline->height() == test->height());
28 SkASSERT(baseline->width() > 0);
29 SkASSERT(baseline
[all...]
H A DSkPMetric.h22 virtual bool diff(SkBitmap* baseline, SkBitmap* test, const BitmapsToCreate& bitmapsToCreate,
H A DSkDifferentPixelsMetric.h31 virtual bool diff(SkBitmap* baseline, SkBitmap* test,
H A DSkImageDiffer.h64 * @param baseline The correct bitmap
69 virtual bool diff(SkBitmap* baseline, SkBitmap* test, const BitmapsToCreate& bitmapsToCreate,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A Dresults.properties12 -baseline 3.0_200406251208_200505301645 \
13 -baseline.prefix 3.0_ \
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsTypes.cpp189 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/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.
118 EAlignmentBaseline baseline = textRenderer->style()->svgStyle().alignmentBaseline(); local
119 if (baseline == AB_AUTO || baseline
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A DSTL_timer.hh32 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/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_instructions_view.cc56 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/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 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...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DdevicesView.css16 align-items: baseline;
27 align-items: baseline;
/external/chromium_org/third_party/skia/tools/
H A Dcoverage.sh20 # Generate a zero-baseline so files not covered by $COMMAND will still show up in the report.
22 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/baseline -i
28 lcov $QUIET -a /tmp/baseline -a /tmp/coverage -o /tmp/merged
/external/skia/tools/
H A Dcoverage.sh20 # Generate a zero-baseline so files not covered by $COMMAND will still show up in the report.
22 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/baseline -i
28 lcov $QUIET -a /tmp/baseline -a /tmp/coverage -o /tmp/merged
/external/chromium_org/tools/imagediff/
H A Dimage_diff.cc147 float PercentageDifferent(const Image& baseline, const Image& actual) { argument
148 int w = std::min(baseline.w(), actual.w());
149 int h = std::min(baseline.h(), actual.h());
155 if (baseline.pixel_at(x, y) != actual.pixel_at(x, y))
161 int max_w = std::max(baseline.w(), actual.w());
162 int max_h = std::max(baseline.h(), actual.h());
181 float HistogramPercentageDifferent(const Image& baseline, const Image& actual) { argument
186 int w = std::min(baseline.w(), actual.w());
187 int h = std::min(baseline.h(), actual.h());
189 // Count occurences of each RGBA pixel value of baseline i
[all...]
/external/chromium_org/ash/system/web_notification/
H A Dash_popup_alignment_delegate_unittest.cc135 int baseline = alignment_delegate()->GetBaseLine(); local
145 EXPECT_LT(baseline, alignment_delegate()->GetBaseLine());
153 int baseline = alignment_delegate()->GetBaseLine(); local
163 EXPECT_EQ(baseline, alignment_delegate()->GetBaseLine());
172 int baseline = alignment_delegate()->GetBaseLine(); local
176 EXPECT_LT(baseline, alignment_delegate()->GetBaseLine());
180 EXPECT_GT(baseline, alignment_delegate()->GetBaseLine());
187 int baseline = alignment_delegate()->GetBaseLine(); local
193 EXPECT_EQ(baseline - kTrayHeight - message_center::kMarginBetweenItems,
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderButton.cpp93 int RenderButton::baselinePosition(FontBaseline baseline, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const argument
97 // avoid RenderFlexibleBox synthesizing a baseline that we don't want.
100 // To ensure that we have a consistent baseline when we have no children,
102 // baseline for the empty case manually here.
108 return RenderFlexibleBox::baselinePosition(baseline, firstLine, direction, linePositionMode);
H A DRenderTextControl.h68 // to affect the baseline calculation. This is necessary because we are an inline-block
92 // baseline definition, and then inputs of different types wouldn't line up
101 virtual int baselinePosition(FontBaseline baseline, bool firstLine, LineDirectionMode direction, LinePositionMode position) const OVERRIDE
103 return RenderBlock::baselinePosition(baseline, firstLine, direction, position);
/external/srec/config/en.us/
H A Dconfig.mk6 baseline.par \
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Dreset.css24 vertical-align: baseline;

Completed in 1269 milliseconds

12345