Searched defs:dash (Results 1 - 25 of 29) 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);
80 if (dash !
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtsdcfmsy.cpp159 UnicodeString dash = UnicodeString("-"); local
160 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash);
163 if (dash != enCurrencyInsert) {
/external/iptables/extensions/
H A Dlibipt_SAME.c42 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 Dlibip6t_DNAT.c49 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 Dlibip6t_SNAT.c49 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 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/libunwind/src/
H A Dos-linux.h209 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 Dfpdf_ap.h23 CPVT_Dash(FX_INT32 dash, FX_INT32 gap, FX_INT32 phase) : nDash(dash), nGap(gap), nPhase(phase) argument
91 FX_INT32 nStyle, const CPVT_Dash & dash);
/external/compiler-rt/lib/msan/
H A Dmsan.cc510 static const u32 dash = '-'; local
512 dash + (dash << 8) + (dash << 16) + (dash << 24);
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_ap.cpp716 FX_INT32 nStyle, const CPVT_Dash & dash)
742 sAppStream << fWidth << " w" << " [" << dash.nDash << " " << dash.nGap << "] " << dash.nPhase << " d\n";
714 GenerateBorderAP(const CPDF_Rect & rect, FX_FLOAT fWidth, const CPVT_Color & color, const CPVT_Color & crLeftTop, const CPVT_Color & crRightBottom, FX_INT32 nStyle, const CPVT_Dash & dash) argument
/external/pdfium/fpdfsdk/include/pdfwindow/
H A DPWL_Wnd.h110 CPWL_Dash(FX_INT32 dash, FX_INT32 gap, FX_INT32 phase) : nDash(dash), nGap(gap), nPhase(phase) argument
/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/fio/
H A Dgraph.c320 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 DPathOpsSkpClipTest.cpp1071 const char* dash = strchr(range, '-'); local
1072 if (!dash) {
1073 dash = strchr(range, ',');
1076 int last = dash ? atoi(dash + 1) : first;
/external/skia/experimental/PdfViewer/src/
H A DSkPdfRenderer.cpp1931 1) [ ] 0 No dash; solid, unbroken lines
1957 "dash array size unssuported, cnt > 256", intervals, pdfContext);
1993 static SkPdfResult skpdfGraphicsStateApplyD(SkPdfContext* pdfContext, SkPdfArray* dash) { argument
1994 if (!dash || dash->isArray()) {
1995 SkPdfReportUnexpectedType(kIgnoreError_SkPdfIssueSeverity, NULL, dash,
2000 if (dash->size() != 2) {
2002 "hash array must have 2 elements", dash, pdfContext);
2006 if (!dash->objAtAIndex(0) || !dash
[all...]
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp1502 XPS_DASH dash; local
1503 dash.length = 1.0;
1504 dash.gap = 0.0;
1505 HRM(dashes->Append(&dash), "Could not add dashes to shaded path.");
1507 "Could not set dash offset for shaded path.");
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest.cc484 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 Dgtest.cc487 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 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/mesa3d/src/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/protobuf/gtest/src/
H A Dgtest.cc472 const char* const dash = strchr(p, '-'); local
475 if (dash == NULL) {
479 positive = String(p, dash - p); // Everything up to the dash
480 negative = String(dash+1); // Everything after the dash
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1971 const char* const dash = strchr(p, '-'); local
1974 if (dash == NULL) {
1978 positive = std::string(p, dash); // Everything up to the dash
1979 negative = std::string(dash + 1); // Everything after the dash
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc1812 const char* const dash = strchr(p, '-'); local
1815 if (dash == NULL) {
1819 positive = String(p, dash - p); // Everything up to the dash
1820 negative = String(dash+1); // Everything after the dash

Completed in 875 milliseconds

12