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

1 2

  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptLanguage.java 170 int dash = languageRange.indexOf('-'); local
171 if (dash>=0) {
172 return new Locale( languageRange.substring(0,dash), languageRange.substring(dash+1) );
  /external/iptables/extensions/
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);
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 = NULL
    [all...]
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 = NULL
    [all...]
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);
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);
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);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 202 int dash = -1; local
206 if (c == '-' && dash == -1) {
207 dash = offset;
214 if (dash != -1) {
215 rawContactId = string.substring(start, dash);
216 start = dash + 1;
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromium.cpp 100 static RefPtr<Image> dash = Image::loadPlatformResource("tickmarkDash"); local
101 if (dash->isNull()) {
116 context->drawImage(dash.get(), DeviceColorSpace, tick);
  /external/webkit/WebCore/svg/graphics/
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/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 26 # 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; | # named dash entitie
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
tsdcfmsy.cpp 163 UnicodeString dash = UnicodeString("-"); local
164 en.setPatternForCurrencySpacing(DecimalFormatSymbols::kInsert, TRUE, dash);
167 if (dash != enCurrencyInsert) {
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 163 UnicodeString dash = UnicodeString("-"); local
164 en.setPatternForCurrencySpacing(DecimalFormatSymbols::kInsert, TRUE, dash);
167 if (dash != enCurrencyInsert) {
  /external/webkit/WebCore/platform/graphics/skia/
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)
556 if (dash != m_state->m_dash) {
558 m_state->m_dash = dash;
  /bionic/libc/tzcode/
strftime.c 180 char *dash, char *zero) {
186 return dash;
  /system/core/libcutils/
tzstrftime.c 130 char *dash, char *zero) {
136 return dash;
  /external/webkit/WebCore/platform/graphics/cairo/
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);
    [all...]
  /external/bluetooth/glib/glib/
goption.c 317 * which don't start with a dash). But note that GOption cannot reliably
1604 gchar *arg, *dash; local
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
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
    [all...]
  /external/dnsmasq/src/
option.c 2258 char *dash, *a[3] = { NULL, NULL, NULL }; local
    [all...]
  /external/gtest/src/
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
    [all...]
  /external/protobuf/gtest/src/
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
    [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /external/grub/docs/
texinfo.tex     [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 

Completed in 942 milliseconds

1 2