/external/clang/lib/Basic/ |
H A D | 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 ! [all...] |
/external/icu/icu4c/source/test/intltest/ |
H A D | tsdcfmsy.cpp | 159 UnicodeString dash = UnicodeString("-"); local 160 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash); 163 if (dash != enCurrencyInsert) {
|
/external/iptables/extensions/ |
H A D | libipt_SAME.c | 42 char *dash, *arg; local 49 dash = strchr(arg, '-'); 51 if (dash) 52 *dash = '\0'; 60 if (dash) { 61 ip = xtables_numeric_to_ipaddr(dash+1); 64 dash+1); 67 if (dash) 70 arg, dash+1);
|
H A D | 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 [all...] |
H A D | libip6t_SNAT.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 [all...] |
H A D | 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 [all...] |
H A D | libipt_SNAT.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 [all...] |
H A D | 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/ |
H A D | os-linux.h | 209 char perm[16], dash = 0, colon = 0, *cp; local 267 cp = scan_char (cp, &dash); 279 if (dash != '-' || colon != ':')
|
/external/pdfium/core/include/fpdfdoc/ |
H A D | fpdf_ap.h | 20 CPVT_Dash(int32_t dash, int32_t gap, int32_t phase) argument 21 : nDash(dash), nGap(gap), nPhase(phase) {} 100 const CPVT_Dash& dash);
|
/external/toybox/toys/posix/ |
H A D | grep.c | 70 static void outline(char *line, char dash, char *name, long lcount, long bcount, argument 73 if (name && (toys.optflags&FLAG_H)) printf("%s%c", name, dash); 75 printf("%ld%c", lcount, line ? dash : TT.outdelim); 76 if (bcount && (toys.optflags&FLAG_b)) printf("%ld%c", bcount-1, dash);
|
/external/libmicrohttpd/src/microhttpd/ |
H A D | 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 */
|
/external/compiler-rt/lib/msan/ |
H A D | msan.cc | 535 static const u32 dash = '-'; local 537 dash + (dash << 8) + (dash << 16) + (dash << 24);
|
/external/pdfium/core/src/fpdfdoc/ |
H A D | doc_ap.cpp | 803 const CPVT_Dash& dash) { 831 << " [" << dash.nDash << " " << dash.nGap << "] " 832 << dash.nPhase << " d\n"; 796 GenerateBorderAP( const CPDF_Rect& rect, FX_FLOAT fWidth, const CPVT_Color& color, const CPVT_Color& crLeftTop, const CPVT_Color& crRightBottom, int32_t nStyle, const CPVT_Dash& dash) argument
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
H A D | PWL_Wnd.h | 96 CPWL_Dash(int32_t dash, int32_t gap, int32_t phase) argument 97 : nDash(dash), nGap(gap), nPhase(phase) {}
|
/external/skia/tools/json/ |
H A D | SkJSONRenderer.cpp | 437 Json::Value dash = jsonPaint[SKJSONCANVAS_ATTRIBUTE_DASHING]; local 438 Json::Value jsonIntervals = dash[SKJSONCANVAS_ATTRIBUTE_INTERVALS]; 444 SkScalar phase = dash[SKJSONCANVAS_ATTRIBUTE_PHASE].asFloat();
|
/external/dnsmasq/src/ |
H A D | option.c | 2241 char *dash, *a[3] = { NULL, NULL, NULL }; local 2257 dash = split_chr(a[0], '-'); 2267 if (dash && 2268 ((new->end.s_addr = inet_addr(dash)) == (in_addr_t)-1 ||
|
/external/fio/ |
H A D | 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);
|
/external/skia/tests/ |
H A D | PathOpsSkpClipTest.cpp | 1066 const char* dash = strchr(range, '-'); local 1067 if (!dash) { 1068 dash = strchr(range, ','); 1071 int last = dash ? atoi(dash + 1) : first;
|
/external/skia/src/device/xps/ |
H A D | SkXPSDevice.cpp | 1509 XPS_DASH dash; local 1510 dash.length = 1.0; 1511 dash.gap = 0.0; 1512 HRM(dashes->Append(&dash), "Could not add dashes to shaded path."); 1514 "Could not set dash offset for shaded path.");
|
/external/skia/tools/debugger/ |
H A D | SkDrawCommand.cpp | 1358 Json::Value dash = jsonPaint[SKDEBUGCANVAS_ATTRIBUTE_DASHING]; local 1359 Json::Value jsonIntervals = dash[SKDEBUGCANVAS_ATTRIBUTE_INTERVALS]; 1365 SkScalar phase = dash[SKDEBUGCANVAS_ATTRIBUTE_PHASE].asFloat();
|
/external/google-breakpad/src/testing/gtest/src/ |
H A D | gtest.cc | 484 const char* const dash = strchr(p, '-'); local 487 if (dash == NULL) { 491 positive = String(p, dash - p); // Everything up to the dash 492 negative = String(dash+1); // Everything after the dash
|
/external/gtest/src/ |
H A D | gtest.cc | 487 const char* const dash = strchr(p, '-'); local 490 if (dash == NULL) { 494 positive = std::string(p, dash); // Everything up to the dash 495 negative = std::string(dash + 1); // Everything after the dash
|
/external/llvm/utils/unittest/googletest/src/ |
H A D | gtest.cc | 483 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/mesa3d/src/gtest/src/ |
H A D | gtest.cc | 483 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
|