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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/skia/tools/skpdiff/
SkDifferentPixelsMetric_cpu.cpp 17 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
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->getAddr(0, y)
    [all...]
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"
39 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
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->width() * baseline->height())
    [all...]
SkPMetric.h 22 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
SkDifferentPixelsMetric.h 31 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
SkImageDiffer.h 44 * @param baseline The correct bitmap
49 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
  /external/skia/tools/skpdiff/
SkDifferentPixelsMetric_cpu.cpp 17 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
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->getAddr(0, y)
    [all...]
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"
39 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
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->width() * baseline->height())
    [all...]
SkPMetric.h 22 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
SkDifferentPixelsMetric.h 31 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
SkImageDiffer.h 44 * @param baseline The correct bitmap
49 virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
  /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/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/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,
  /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);
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/
devicesView.css 16 align-items: baseline;
27 align-items: baseline;
  /external/chromium_org/third_party/skia/tools/
coverage.sh 20 # 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/
coverage.sh 20 # 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/
image_diff.cc 147 float PercentageDifferent(const Image& baseline, const Image& actual) {
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) {
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 in the overlap
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 72 if (node.baseline != -1) {
74 g.drawLine(0, node.baseline, width, node.baseline);
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-artifactcomparator/0.20.0/
tycho-artifactcomparator-0.20.0.jar 

Completed in 864 milliseconds

1 2 3 4 5 6 7