/external/webkit/WebCore/platform/chromium/ |
H A D | ScrollbarThemeChromium.cpp | 100 static RefPtr<Image> dash = Image::loadPlatformResource("tickmarkDash"); local 101 if (dash->isNull()) { 116 context->drawImage(dash.get(), DeviceColorSpace, tick);
|
/external/chromium/third_party/icu/source/test/intltest/ |
H A D | tsdcfmsy.cpp | 163 UnicodeString dash = UnicodeString("-"); local 164 en.setPatternForCurrencySpacing(DecimalFormatSymbols::kInsert, TRUE, dash); 167 if (dash != enCurrencyInsert) {
|
/external/icu4c/test/intltest/ |
H A D | tsdcfmsy.cpp | 163 UnicodeString dash = UnicodeString("-"); local 164 en.setPatternForCurrencySpacing(DecimalFormatSymbols::kInsert, TRUE, dash); 167 if (dash != enCurrencyInsert) {
|
/external/iptables/extensions/ |
H A D | libipt_MASQUERADE.c | 43 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 D | libipt_REDIRECT.c | 43 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 D | libipt_iprange.c | 32 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 D | libipt_DNAT.c | 61 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 D | libipt_SAME.c | 52 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 D | libipt_SNAT.c | 61 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 D | SVGPaintServer.cpp | 216 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 D | goption.c | 317 * 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 D | PlatformContextSkia.cpp | 79 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 D | option.c | 2258 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 D | GraphicsContextCairo.cpp | 340 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/chromium/sdch/open-vcdiff/src/gtest/ |
H A D | gtest.cc | 365 const char* const dash = strchr(p, '-'); local 368 if (dash == NULL) { 372 positive.Set(p, dash - p); // Everything up to the dash 373 negative = String(dash+1); // Everything after the dash
|
/external/gtest/src/ |
H A D | gtest.cc | 430 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
|
/external/protobuf/gtest/src/ |
H A D | gtest.cc | 464 const char* const dash = strchr(p, '-'); local 467 if (dash == NULL) { 471 positive = String(p, dash - p); // Everything up to the dash 472 negative = String(dash+1); // Everything after the dash
|