Searched defs:dash (Results 1 - 14 of 14) sorted by relevance

/external/webkit/WebCore/platform/chromium/
H A DScrollbarThemeChromium.cpp100 static RefPtr<Image> dash = Image::loadPlatformResource("tickmarkDash"); local
101 if (dash->isNull()) {
116 context->drawImage(dash.get(), DeviceColorSpace, tick);
/external/icu4c/test/intltest/
H A Dtsdcfmsy.cpp163 UnicodeString dash = UnicodeString("-"); local
164 en.setPatternForCurrencySpacing(DecimalFormatSymbols::kInsert, TRUE, dash);
167 if (dash != enCurrencyInsert) {
/external/iptables/extensions/
H A Dlibipt_MASQUERADE.c43 const char *dash; local
52 dash = strchr(arg, '-');
53 if (!dash) {
60 maxport = atoi(dash + 1);
63 "Port `%s' not valid\n", dash+1);
H A Dlibipt_REDIRECT.c43 const char *dash; local
55 dash = strchr(arg, '-');
56 if (!dash) {
63 maxport = atoi(dash + 1);
66 "Port `%s' not valid\n", dash+1);
H A Dlibipt_iprange.c32 char *dash; local
35 dash = strchr(arg, '-');
36 if (dash)
37 *dash = '\0';
45 if (dash) {
46 ip = dotted_to_addr(dash+1);
49 dash+1);
H A Dlibipt_DNAT.c61 char *colon, *dash, *error; local
84 "Invalid port:port syntax - use dash\n");
86 dash = strchr(colon, '-');
87 if (!dash) {
94 maxport = atoi(dash + 1);
97 "Port `%s' not valid\n", dash+1);
112 dash = strchr(arg, '-');
113 if (colon && dash && dash > colon)
114 dash
[all...]
H A Dlibipt_SAME.c52 char *dash; local
56 dash = strchr(arg, '-');
58 if (dash)
59 *dash = '\0';
67 if (dash) {
68 ip = dotted_to_addr(dash+1);
71 dash+1);
74 if (dash)
77 arg, dash+1);
H A Dlibipt_SNAT.c61 char *colon, *dash, *error; local
84 "Invalid port:port syntax - use dash\n");
86 dash = strchr(colon, '-');
87 if (!dash) {
94 maxport = atoi(dash + 1);
97 "Port `%s' not valid\n", dash+1);
112 dash = strchr(arg, '-');
113 if (colon && dash && dash > colon)
114 dash
[all...]
/external/webkit/WebCore/svg/graphics/
H A DSVGPaintServer.cpp216 CSSPrimitiveValue* dash = 0; local
219 dash = static_cast<CSSPrimitiveValue*>(dashes->itemWithoutBoundsCheck(i));
220 if (!dash)
223 array.append((float) dash->computeLengthFloat(const_cast<RenderStyle*>(style), rootStyle));
/external/bluetooth/glib/glib/
H A Dgoption.c317 * which don't start with a dash). But note that GOption cannot reliably
1604 gchar *arg, *dash; local
1674 dash = strchr (arg, '-');
1675 if (dash)
1683 if (strncmp (group->name, arg, dash - arg) == 0)
1685 if (!parse_long_option (context, group, &i, dash + 1,
/external/webkit/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp79 int m_dashRatio; // Ratio of the length of a dash to its width.
394 // Even: shift right half a dash, minus half the remainder
397 // Odd: shift right a full dash, minus half the remainder
554 void PlatformContextSkia::setDashPathEffect(SkDashPathEffect* dash) argument
556 if (dash != m_state->m_dash) {
558 m_state->m_dash = dash;
/external/dnsmasq/src/
H A Doption.c2258 char *dash, *a[3] = { NULL, NULL, NULL }; local
2274 dash = split_chr(a[0], '-');
2284 if (dash &&
2285 ((new->end.s_addr = inet_addr(dash)) == (in_addr_t)-1 ||
/external/webkit/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp340 double dash = patWidth; local
341 cairo_set_dash(cr, &dash, 1, patternOffset);
458 double dash = patWidth; local
459 cairo_set_dash(cr, &dash, 1, patternOffset);
/external/gtest/src/
H A Dgtest.cc430 const char* const dash = strchr(p, '-'); local
433 if (dash == NULL) {
437 positive.Set(p, dash - p); // Everything up to the dash
438 negative = String(dash+1); // Everything after the dash

Completed in 128 milliseconds