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

1 2

  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 58 dashes = len(args)
60 dashes = args.index('--')
62 sections.append(args[:dashes])
65 if dashes + 1 == len(args):
72 args = args[dashes + 1:]
action_maketokenizer.py 55 dashes = len(args)
57 dashes = args.index('--')
59 sections.append(args[:dashes])
62 if dashes + 1 == len(args):
69 args = args[dashes + 1:]
rule_binding.py 61 dashes = len(args)
63 dashes = args.index('--')
65 sections.append(args[:dashes])
68 if dashes + 1 == len(args):
75 args = args[dashes + 1:]
action_csspropertynames.py 57 dashes = len(args)
59 dashes = args.index('--')
61 sections.append(args[:dashes])
64 if dashes + 1 == len(args):
71 args = args[dashes + 1:]
action_cssvaluekeywords.py 61 dashes = len(args)
63 dashes = args.index('--')
65 sections.append(args[:dashes])
68 if dashes + 1 == len(args):
75 args = args[dashes + 1:]
action_makenames.py 70 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/
count.c 164 const char *dashes = "-------------------------"; local
197 dashes, dashes, dashes, dashes, dashes, dashes);
222 dashes, dashes, dashes, dashes, dashes, dashes)
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/
debflex.awk 58 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/
jquery.flot.dashes.js 2 * 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.dashLength[1]
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
CairoUtilities.cpp 47 Vector<double> dashes(dashCount);
50 cairo_get_dash(srcCr, dashes.data(), &offset);
51 cairo_set_dash(dstCr, dashes.data(), dashCount, offset);
GraphicsContextCairo.cpp 995 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
997 cairo_set_dash(platformContext()->cr(), dashes.data(), dashes.size(), dashOffset);
    [all...]
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 49 static PassRefPtr<CSSValue> strokeDashArrayToCSSValueList(const Vector<SVGLength>& dashes)
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)
SVGCSSStyleSelector.cpp 260 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/
vg_perf.in 337 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/
SVGRenderSupport.cpp 336 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)
  /external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 26 # 1 => "--" for em-dashes; no en-dash support
27 # 2 => "---" for em-dashes; "--" for en-dashes
28 # 3 => "--" for em-dashes; "---" for en-dashes
93 # d : dashes
94 # D : old school dashes
95 # i : inverted old school dashes
440 -- | # dashes, or
468 -- | # dashes, o
    [all...]
  /ndk/build/core/
setup-toolchain.mk 51 # We assume the toolchain name uses dashes (-) as separators and doesn't
55 # 1/ Use 'subst' to convert dashes into spaces, this generates a list
57 # 3/ Use 'subst' again to convert the spaces back into dashes
114 # to do that, we split at dashes, remove the last element, then merge the
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContext.cpp 294 void PlatformGraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
296 size_t dashLength = dashes.size();
304 intervals[i] = SkFloatToScalar(dashes[i % dashLength]);
GraphicsContextAndroid.cpp 479 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
484 platformContext()->setLineDash(dashes, dashOffset);
PlatformGraphicsContext.h 69 virtual void setLineDash(const DashArray& dashes, float dashOffset);
PlatformGraphicsContextRecording.h 83 virtual void setLineDash(const DashArray& dashes, float dashOffset);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 335 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
340 m_data->setLineDash(dashes, dashOffset);
  /external/valgrind/main/tests/
vg_regtest.in 541 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/
GraphicsContextQt.cpp 413 QVector<qreal> dashes; local
414 dashes << qreal(patWidth) / width << qreal(patWidth) / width;
419 pen.setDashPattern(dashes);
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
util.js 137 * from the table body by a partial row of dashes.
141 * it's between two rows of dashes.

Completed in 732 milliseconds

1 2