Searched defs:dash (Results 1 - 25 of 44) sorted by relevance

12

/external/pdfium/core/fpdfdoc/
H A Dcpvt_dash.h13 CPVT_Dash(int32_t dash, int32_t gap, int32_t phase) argument
14 : nDash(dash), nGap(gap), nPhase(phase) {}
H A Dcpvt_generateap.cpp499 // Support maximum of ten elements in the dash array.
1192 const CPVT_Dash& dash) {
1220 << " [" << dash.nDash << " " << dash.nGap << "] "
1221 << dash.nPhase << " d\n";
1185 GenerateBorderAP( const CFX_FloatRect& rect, FX_FLOAT fWidth, const CPVT_Color& color, const CPVT_Color& crLeftTop, const CPVT_Color& crRightBottom, BorderStyle nStyle, const CPVT_Dash& dash) argument
/external/toybox/toys/other/
H A Dfactor.c26 int dash = 0; local
29 if (*s=='-') dash = *s++;
39 printf("-%llu:"+!dash, l);
42 if (dash) printf(" -1");
/external/clang/lib/Basic/
H A DObjCRuntime.cpp45 // 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 Dtsdcfmsy.cpp161 UnicodeString dash = UnicodeString("-"); local
162 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash);
165 if (dash != enCurrencyInsert) {
/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/toybox/toys/posix/
H A Dgrep.c70 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/iptables/extensions/
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.c52 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
[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.c73 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
[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/ltp/tools/top-LTP/proc/
H A Dksym.c113 static const char dash[] = "-"; variable
678 return dash;
/external/libmicrohttpd/src/microhttpd/
H A Dpostprocessor.c86 * 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 Dmsan.cc531 static const u32 dash = '-'; local
533 dash + (dash << 8) + (dash << 16) + (dash << 24);
/external/pdfium/fpdfsdk/pdfwindow/
H A DPWL_Wnd.h93 CPWL_Dash(int32_t dash, int32_t gap, int32_t phase) argument
94 : nDash(dash), nGap(gap), nPhase(phase) {}
/external/dnsmasq/src/
H A Doption.c2246 char *dash, *a[3] = { NULL, NULL, NULL }; local
2262 dash = split_chr(a[0], '-');
2272 if (dash &&
2273 ((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 DGrShapeTest.cpp481 // 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.
842 // Make sure just applying the dash but not stroke gives the same key for both stroking
892 // after applying the dash.
941 // A dash with no stroke should have no effect
958 SkPaint dash; local
959 dash.setStyle(SkPaint::kStroke_Style);
960 dash.setStrokeWidth(1.f);
961 dash
1639 SkPaint dash = stroke; local
[all...]
/external/skia/src/xps/
H A DSkXPSDevice.cpp1492 XPS_DASH dash; local
1493 dash.length = 1.0;
1494 dash.gap = 0.0;
1495 HRM(dashes->Append(&dash), "Could not add dashes to shaded path.");
1497 "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/googletest/googletest/src/
H A Dgtest.cc509 const char* const dash = strchr(p, '-'); local
512 if (dash == NULL) {
516 positive = std::string(p, dash); // Everything up to the dash
517 negative = std::string(dash + 1); // Everything after the dash
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest.cc509 const char* const dash = strchr(p, '-'); local
512 if (dash == NULL) {
516 positive = std::string(p, dash); // Everything up to the dash
517 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

Completed in 526 milliseconds

12