Searched refs:dashes (Results 1 - 25 of 31) sorted by relevance

12

/external/webkit/Source/WebCore/WebCore.gyp/scripts/
H A Daction_useragentstylesheets.py58 dashes = len(args)
60 dashes = args.index('--')
62 sections.append(args[:dashes])
65 if dashes + 1 == len(args):
72 args = args[dashes + 1:]
H A Daction_maketokenizer.py55 dashes = len(args)
57 dashes = args.index('--')
59 sections.append(args[:dashes])
62 if dashes + 1 == len(args):
69 args = args[dashes + 1:]
H A Drule_binding.py61 dashes = len(args)
63 dashes = args.index('--')
65 sections.append(args[:dashes])
68 if dashes + 1 == len(args):
75 args = args[dashes + 1:]
H A Daction_csspropertynames.py57 dashes = len(args)
59 dashes = args.index('--')
61 sections.append(args[:dashes])
64 if dashes + 1 == len(args):
71 args = args[dashes + 1:]
H A Daction_cssvaluekeywords.py61 dashes = len(args)
63 dashes = args.index('--')
65 sections.append(args[:dashes])
68 if dashes + 1 == len(args):
75 args = args[dashes + 1:]
H A Daction_makenames.py70 dashes = len(args)
72 dashes = args.index('--')
74 sections.append(args[:dashes])
77 if dashes + 1 == len(args):
84 args = args[dashes + 1:]
/external/strace/
H A Dcount.c164 const char *dashes = "-------------------------"; local
197 dashes, dashes, dashes, dashes, dashes, dashes);
222 dashes, dashes, dashes, dashe
[all...]
/external/webkit/Tools/android/flex-2.5.4a/MISC/
H A Ddebflex.awk58 dashes = "-----------------------------------------------------------";
79 # splitting this way we loose some double dashes and
106 print dashes; # Simplify trace of buffer reloads
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
H A Djquery.flot.dashes.js2 * jQuery.flot.dashes
6 * dashes: {
10 * // Whether to show dashes for the series.
20 * // Controls the length of the individual dashes and the amount of
22 * // If this is a number, the dashes and spaces will have that length.
35 if (!series.dashes.show) return;
54 if (series.dashes.dashLength[0]) {
55 dashOnLength = series.dashes.dashLength[0];
56 if (series.dashes.dashLength[1]) {
57 dashOffLength = series.dashes
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DCairoUtilities.cpp47 Vector<double> dashes(dashCount);
50 cairo_get_dash(srcCr, dashes.data(), &offset);
51 cairo_set_dash(dstCr, dashes.data(), dashCount, offset);
H A DGraphicsContextCairo.cpp995 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
997 cairo_set_dash(platformContext()->cr(), dashes.data(), dashes.size(), dashOffset);
/external/webkit/Source/WebCore/css/
H A DSVGCSSComputedStyleDeclaration.cpp49 static PassRefPtr<CSSValue> strokeDashArrayToCSSValueList(const Vector<SVGLength>& dashes) argument
51 if (dashes.isEmpty())
55 const Vector<SVGLength>::const_iterator end = dashes.end();
56 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
H A DSVGCSSStyleSelector.cpp260 CSSValueList* dashes = static_cast<CSSValueList*>(value); local
263 size_t length = dashes->length();
265 CSSValue* currValue = dashes->itemWithoutBoundsCheck(i);
269 CSSPrimitiveValue* dash = static_cast<CSSPrimitiveValue*>(dashes->itemWithoutBoundsCheck(i));
/external/valgrind/main/perf/
H A Dvg_perf.in337 my $dashes = "-" x (50 - length $full_dir);
343 print "-- Running tests in $full_dir $dashes\n";
353 print "-- Finished tests in $full_dir $dashes\n";
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGRenderSupport.cpp336 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray(); local
337 if (dashes.isEmpty())
341 const Vector<SVGLength>::const_iterator end = dashes.end();
342 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
H A DSVGRenderTreeAsText.cpp340 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray(); local
343 const Vector<SVGLength>::const_iterator end = dashes.end();
344 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.cpp294 void PlatformGraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
296 size_t dashLength = dashes.size();
304 intervals[i] = SkFloatToScalar(dashes[i % dashLength]);
H A DGraphicsContextAndroid.cpp479 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
484 platformContext()->setLineDash(dashes, dashOffset);
H A DPlatformGraphicsContext.h69 virtual void setLineDash(const DashArray& dashes, float dashOffset);
H A DPlatformGraphicsContextRecording.h83 virtual void setLineDash(const DashArray& dashes, float dashOffset);
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DGraphicsContextOpenVG.cpp335 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
340 m_data->setLineDash(dashes, dashOffset);
/external/valgrind/main/tests/
H A Dvg_regtest.in541 my $dashes = "-" x (50 - length $full_dir);
547 print "-- Running tests in $full_dir $dashes\n";
557 print "-- Finished tests in $full_dir $dashes\n";
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp413 QVector<qreal> dashes; local
414 dashes << qreal(patWidth) / width << qreal(patWidth) / width;
419 pen.setDashPattern(dashes);
1048 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
1052 unsigned dashLength = dashes.size();
1061 pattern.append(dashes[i % dashLength] / penWidth);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp942 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
949 size_t dashLength = dashes.size();
962 intervals[i] = dashes[i % dashLength];
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Drebaseline_chromium_webkit_tests.py84 """Log text message with dashes on both sides."""
90 dashes = '-' * ((78 - len(msg)) / 2)
91 msg = '%s %s %s' % (dashes, msg, dashes)

Completed in 349 milliseconds

12