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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Basic/
ObjCRuntime.cpp 45 // Look for the last dash.
46 std::size_t dash = input.rfind('-'); local
49 // version to be omitted, so if we see a dash not followed by a
51 if (dash != StringRef::npos && dash + 1 != input.size() &&
52 (input[dash+1] < '0' || input[dash+1] > '9')) {
53 dash = StringRef::npos;
58 StringRef runtimeName = input.substr(0, dash);
83 if (dash != StringRef::npos)
    [all...]
  /external/toybox/toys/other/
factor.c 26 int dash = 0; local
29 if (*s=='-') dash = *s++;
40 printf("-%llu:"+!dash, l);
43 if (dash) printf(" -1");
  /external/icu/icu4c/source/test/intltest/
tsdcfmsy.cpp 161 UnicodeString dash = UnicodeString("-"); local
162 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash);
165 if (dash != enCurrencyInsert) {
  /system/update_engine/payload_generator/
mapfile_filesystem.cc 101 size_t dash = blocks.find('-', 0); local
103 if (dash == string::npos && base::StringToUint64(blocks, &block_start)) {
105 } else if (dash != string::npos &&
106 base::StringToUint64(blocks.substr(0, dash), &block_start) &&
107 base::StringToUint64(blocks.substr(dash + 1), &block_end)) {
  /external/mockito/subprojects/android/src/main/java/org/mockito/android/internal/creation/
AndroidTempFileLocator.java 56 int dash = potential.indexOf("-"); local
57 if (dash != -1) {
58 end = dash;
  /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/dexmaker/dexmaker/src/main/java/com/android/dx/
AppDataDirGuesser.java 144 int dash = potential.indexOf("-"); local
145 if (dash != -1) {
146 end = dash;
  /external/iptables/extensions/
libip6t_DNAT.c 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
92 "Invalid port:port syntax - use dash\n");
94 dash = strchr(colon, '-');
95 if (!dash) {
102 maxport = atoi(dash + 1);
105 "Port `%s' not valid\n", dash+1);
122 dash = strchr(start, '-');
123 if (colon && dash && dash > colon)
124 dash = NULL
    [all...]
libip6t_SNAT.c 52 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
95 "Invalid port:port syntax - use dash\n");
97 dash = strchr(colon, '-');
98 if (!dash) {
105 maxport = atoi(dash + 1);
108 "Port `%s' not valid\n", dash+1);
125 dash = strchr(start, '-');
126 if (colon && dash && dash > colon)
127 dash = NULL
    [all...]
libipt_DNAT.c 70 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 = NULL
    [all...]
libipt_SNAT.c 73 char *arg, *colon, *dash, *error; local
99 "Invalid port:port syntax - use dash\n");
101 dash = strchr(colon, '-');
102 if (!dash) {
109 maxport = atoi(dash + 1);
112 "Port `%s' not valid\n", dash+1);
129 dash = strchr(arg, '-');
130 if (colon && dash && dash > colon)
131 dash = NULL
    [all...]
libxt_iprange.c 77 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/libunwind/src/
os-linux.h 209 char perm[16], dash = 0, colon = 0, *cp; local
267 cp = scan_char (cp, &dash);
279 if (dash != '-' || colon != ':')
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatSymbols.java 240 String dash = "-"; local
241 en.setPatternForCurrencySpacing(DecimalFormatSymbols.CURRENCY_SPC_INSERT, true, dash);
242 if (dash != en.getPatternForCurrencySpacing(DecimalFormatSymbols.CURRENCY_SPC_INSERT, true)) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatSymbols.java 239 String dash = "-"; local
240 en.setPatternForCurrencySpacing(DecimalFormatSymbols.CURRENCY_SPC_INSERT, true, dash);
241 if (dash != en.getPatternForCurrencySpacing(DecimalFormatSymbols.CURRENCY_SPC_INSERT, true)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 218 int dash = -1; local
222 if (c == '-' && dash == -1) {
223 dash = offset;
230 if (dash != -1) {
231 rawContactId = string.substring(start, dash);
232 start = dash + 1;
  /external/libmicrohttpd/src/microhttpd/
postprocessor.c 86 * Expect either LFCR or '--'LFCR. If '--'LFCR, transition into dash-state
92 * Got a single dash, expect second dash.
232 * If we are in skip_rn with "dash" mode and
537 const char *dash; local
556 dash = memchr (buf, '-', pp->buffer_pos);
557 if (NULL == dash)
560 if (dash == buf)
563 (*ioffptr) += dash - buf; /* skip to first possible boundary */
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
race.go 77 var dash = [...]byte{'-', 0} var
113 ctx.file = &dash[0]
  /prebuilts/go/linux-x86/src/runtime/
race.go 77 var dash = [...]byte{'-', 0} var
113 ctx.file = &dash[0]
  /external/compiler-rt/lib/msan/
msan.cc 531 static const u32 dash = '-'; local
533 dash + (dash << 8) + (dash << 16) + (dash << 24);
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-android/2.7.6/
mockito-android-2.7.6.jar 
  /external/fio/
graph.c 320 static double dash[] = { 1.0, 2.0 }; local
353 cairo_set_dash(cr, dash, 2, 0.66);
376 static double dash[] = { 1.0, 2.0 }; local
415 cairo_set_dash(cr, dash, 2, 0.66);
  /toolchain/binutils/binutils-2.25/binutils/
dllwrap.c 247 const char *dash; local
251 dash = NULL;
256 dash = cp;
265 dash = NULL;
271 if (dash != NULL)
274 cmd = look_for_prog (name, prog_name, dash - prog_name + 1);
    [all...]
  /external/dnsmasq/src/
option.c 2219 char *dash, *a[3] = { NULL, NULL, NULL }; local
    [all...]
  /external/skia/tests/
GrShapeTest.cpp 481 // Having a dash path effect can allow 'a' but not 'b' to turn a inverse fill type into a
557 // Moreover, dash style explicitly ignores inverseness. So if one is dashed but not the other
747 // Scale affects the dash and the stroke.
758 // Dash is ignored for stroke and fill
958 SkPaint dash; local
1639 SkPaint dash = stroke; local
    [all...]

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>