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

1 2 3 4 5 6 7 8 91011>>

  /hardware/msm7k/dspcrashd/
dspcrashd.c 50 char *dashes = "---- ---- ---- ---- ---- ---- ---- ---- ---- ----\n"; variable
83 write(fd, dashes, strlen(dashes));
90 write(fd, dashes, strlen(dashes));
92 write(fd, dashes, strlen(dashes));
  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 26 * controls the length of the dashes. The paint's strokeWidth controls the
27 * thickness of the dashes.
  /external/webkit/WebCore/WebCore.gyp/scripts/
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:]
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_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:]
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_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:]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect.java 29 * controls the length of the dashes. The paint's strokeWidth controls the
30 * thickness of the dashes.
  /external/webkit/WebKitTools/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/webkit/WebCore/svg/graphics/
SVGPaintServer.cpp 162 const DashArray& dashes = dashArrayFromRenderingStyle(object->style(), object->document()->documentElement()->renderStyle()); local
164 context->setLineDash(dashes, dashOffset);
214 CSSValueList* dashes = style->svgStyle()->strokeDashArray(); local
215 if (dashes) {
217 unsigned long len = dashes->length();
219 dash = static_cast<CSSPrimitiveValue*>(dashes->itemWithoutBoundsCheck(i));
  /sdk/eclipse/scripts/
build_update_site.sh 6 # The build number cannot contain spaces *nor* periods (dashes are ok.)
  /external/openssl/crypto/objects/
objects.README 18 Note that if the base name contains spaces, dashes or periods,
  /external/icu4c/common/
ucnv_io.h 63 * Remove the underscores, dashes and spaces from the name, and convert
  /external/iproute2/man/man8/
lnstat.8 17 options starting with two dashes (`-').
ss.8 16 options starting with two dashes (`-').
  /external/qemu/android/
cmdline-option.c 107 * instead of dashes. this means that the command-line option
113 * content of the table, we're going to translate dashes
  /external/dbus/test/name-test/
Makefile.in 483 dashes="$$banner"; \
488 dashes="$$skipped"; \
494 dashes="$$report"; \
496 dashes=`echo "$$dashes" | sed s/./=/g`; \
497 echo "$$dashes"; \
501 echo "$$dashes"; \
  /external/bluetooth/glib/gio/
gthemedicon.c 155 int i = 0, dashes = 0; local
164 dashes++;
172 themed->names = g_new (char *, dashes + 1 + 1);
  /frameworks/base/core/java/android/util/
Patterns.java 165 * <li>Optionally, a + sign followed immediately by one or more digits. Spaces, dots, or dashes
167 * <li>Optionally, sets of digits in parentheses, separated by spaces, dots, or dashes.
168 * <li>A string starting and ending with a digit, containing digits, spaces, dots, and/or dashes.
  /external/genext2fs/
Makefile.in 414 dashes="$$banner"; \
419 dashes="$$skipped"; \
425 dashes="$$report"; \
427 dashes=`echo "$$dashes" | sed s/./=/g`; \
428 echo "$$dashes"; \
432 echo "$$dashes"; \
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 126 Vector<double> dashes(dashCount);
129 cairo_get_dash(srcCr, dashes.data(), &offset);
130 cairo_set_dash(dstCr, dashes.data(), dashCount, offset);
956 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
958 cairo_set_dash(m_data->cr, dashes.data(), dashes.size(), dashOffset);
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 416 QVector<qreal> dashes; local
417 dashes << qreal(patWidth) / width << qreal(patWidth) / width;
422 pen.setDashPattern(dashes);
869 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
873 unsigned dashLength = dashes.size();
882 pattern.append(dashes[i % dashLength] / penWidth);
    [all...]
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 362 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
367 m_data->setLineDash(dashes, dashOffset);
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSignature.java 51 * Holds the OpenSSL name of the algorithm (lower case, no dashes).

Completed in 301 milliseconds

1 2 3 4 5 6 7 8 91011>>