Searched refs:dash (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/lib/Basic/
H A DObjCRuntime.cpp44 // Look for the last dash.
45 std::size_t dash = input.rfind('-'); local
48 // version to be omitted, so if we see a dash not followed by a
50 if (dash != StringRef::npos && dash + 1 != input.size() &&
51 (input[dash+1] < '0' || input[dash+1] > '9')) {
52 dash = StringRef::npos;
57 StringRef runtimeName = input.substr(0, dash);
79 if (dash !
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptLanguage.java170 int dash = languageRange.indexOf('-');
171 if (dash>=0) {
172 return new Locale( languageRange.substring(0,dash), languageRange.substring(dash+1) );
/external/iptables/extensions/
H A Dlibipt_SAME.c41 char *dash, *arg; local
48 dash = strchr(arg, '-');
50 if (dash)
51 *dash = '\0';
59 if (dash) {
60 ip = xtables_numeric_to_ipaddr(dash+1);
63 dash+1);
66 if (dash)
69 arg, dash+1);
H A Dlibipt_DNAT.c70 char *arg, *colon, *dash, *error; local
96 "Invalid port:port syntax - use dash\n");
98 dash = strchr(colon, '-');
99 if (!dash) {
106 maxport = atoi(dash + 1);
109 "Port `%s' not valid\n", dash+1);
126 dash = strchr(arg, '-');
127 if (colon && dash && dash > colon)
128 dash
[all...]
H A Dlibipt_SNAT.c70 char *arg, *colon, *dash, *error; local
96 "Invalid port:port syntax - use dash\n");
98 dash = strchr(colon, '-');
99 if (!dash) {
106 maxport = atoi(dash + 1);
109 "Port `%s' not valid\n", dash+1);
126 dash = strchr(arg, '-');
127 if (colon && dash && dash > colon)
128 dash
[all...]
H A Dlibxt_iprange.c77 char *dash; local
81 dash = strchr(arg, '-');
82 if (dash == NULL) {
88 *dash = '\0';
89 iprange_parse_spec(arg, dash + 1, range, family, optname);
92 "will never match\n", arg, dash + 1);
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java70 int dash = potential.indexOf("-");
71 if (dash != -1) {
72 end = dash;
/external/littlemock/src/com/google/testing/littlemock/
H A DAppDataDirGuesser.java98 int dash = potential.indexOf("-");
99 if (dash != -1) {
100 end = dash;
/external/webkit/Source/WebCore/platform/chromium/
H A DScrollbarThemeChromium.cpp118 static RefPtr<Image> dash = Image::loadPlatformResource("tickmarkDash"); local
119 if (dash->isNull()) {
134 context->drawImage(dash.get(), ColorSpaceDeviceRGB, tick);
/external/skia/samplecode/
H A DSampleDash.cpp75 SkDashPathEffect dash(interval, len, 0);
76 paint.setPathEffect(&dash);
/external/icu4c/test/intltest/
H A Dtsdcfmsy.cpp163 UnicodeString dash = UnicodeString("-"); local
164 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash);
167 if (dash != enCurrencyInsert) {
/external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
H A Dsmartypants.php26 # 1 => "--" for em-dashes; no en-dash support
87 # 2 : set all, using old school en- and em- dash shortcuts
88 # 3 : set all, using inverted old school en and em- dash shortcuts
111 # Do everything, turn all options on, use old school dash shorthand.
118 # Do everything, turn all options on, use inverted old school dash shorthand.
325 # reference to the subroutine to use for dash education, default to EducateDashes:
333 # use old smart dash shortcuts, "--" for en, "---" for em
441 &[mn]dash; | # named dash entities
469 &[mn]dash; | # name
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dbash.php16 * - Added support for parameters starting with a dash
107 'dash', 'date', 'dd', 'dc', 'dcop', 'deallocvt', 'df', 'dialog',
H A Dmysql.php55 1 => "/(?:--\s).*?$/", // double dash followed by any whitespace
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
H A DUtil.java268 int dash = MILESTONES[index].indexOf('-');
269 return MILESTONES[index].substring(dash+1);
/external/webkit/Source/WebCore/css/
H A DSVGCSSStyleSelector.cpp269 CSSPrimitiveValue* dash = static_cast<CSSPrimitiveValue*>(dashes->itemWithoutBoundsCheck(i)); local
270 array.append(SVGLength::fromCSSPrimitiveValue(dash));
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp360 double dash = patWidth; local
361 cairo_set_dash(cr, &dash, 1, patternOffset);
477 double dash = patWidth; local
478 cairo_set_dash(cr, &dash, 1, patternOffset);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp97 int m_dashRatio; // Ratio of the length of a dash to its width.
431 // Even: shift right half a dash, minus half the remainder
434 // Odd: shift right a full dash, minus half the remainder
597 void PlatformContextSkia::setDashPathEffect(SkDashPathEffect* dash) argument
599 if (dash != m_state->m_dash) {
601 m_state->m_dash = dash;
/external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/
H A DMixed.pm299 # A double dash by itself marks the end of the options:
302 } # end if bare double dash
469 From the user's perspective, short options are introduced by a dash
470 (C<->) and long options are introduced by a double dash (C<-->).
474 double dash by itself marks the end of the options; all arguments
476 dash by itself is treated as a normal argument, I<not> an option.
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc365 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/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/chromium/testing/gtest/src/
H A Dgtest.cc483 const char* const dash = strchr(p, '-'); local
486 if (dash == NULL) {
490 positive = String(p, dash - p); // Everything up to the dash
491 negative = String(dash+1); // Everything after the dash
/external/gtest/src/
H A Dgtest.cc483 const char* const dash = strchr(p, '-'); local
486 if (dash == NULL) {
490 positive = String(p, dash - p); // Everything up to the dash
491 negative = String(dash+1); // Everything after the dash
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc483 const char* const dash = strchr(p, '-'); local
486 if (dash == NULL) {
490 positive = String(p, dash - p); // Everything up to the dash
491 negative = String(dash+1); // Everything after the dash
/external/protobuf/gtest/src/
H A Dgtest.cc464 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

Completed in 734 milliseconds

12