Searched refs:dash (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/third_party/skia/tests/
H A DDashPathEffectTest.cpp13 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase));
16 REPORTER_ASSERT(r, dash->getFactory() != NULL);
19 buffer.writeFlattenable(dash);
H A DDrawPathTest.cpp206 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, -10));
246 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
251 paint.setPathEffect(dash);
259 // Limit extreme dash path effects to avoid exhausting the system memory.
266 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
270 paint.setPathEffect(dash);
274 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, NULL));
/external/skia/tests/
H A DDashPathEffectTest.cpp13 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase));
16 REPORTER_ASSERT(r, dash->getFactory() != NULL);
19 buffer.writeFlattenable(dash);
H A DDrawPathTest.cpp206 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, -10));
246 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
251 paint.setPathEffect(dash);
259 // Limit extreme dash path effects to avoid exhausting the system memory.
266 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
270 paint.setPathEffect(dash);
274 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, NULL));
/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/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dmbo_getopt.c47 static int dash = 0; /* have already seen the - */ local
57 if (!dash)
96 dash = 1;
100 if (!dash)
102 dash = 1;
109 dash = 0;
127 dash = 0;
148 dash = 0;
175 dash = 0;
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_element_factory.py102 dash = name.find('-')
103 while dash != -1:
104 name = name[:dash] + name[dash + 1].upper() + name[dash + 2:]
105 dash = name.find('-')
H A Dmake_element_type_helpers.py86 dash = name.find('-')
87 while dash != -1:
88 name = name[:dash] + name[dash + 1].upper() + name[dash + 2:]
89 dash = name.find('-')
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptLanguage.java170 int dash = languageRange.indexOf('-');
171 if (dash>=0) {
172 return new Locale( languageRange.substring(0,dash), languageRange.substring(dash+1) );
/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/chromium_org/chrome/browser/chromeos/
H A Dlocale_change_guard_unittest.cc193 const char* const dash = strchr(locale, '-'); local
195 (dash ? std::string(locale, dash - locale) : std::string(locale));
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java83 int dash = potential.indexOf("-");
84 if (dash != -1) {
85 end = dash;
/external/littlemock/src/com/google/testing/littlemock/
H A DAppDataDirGuesser.java98 int dash = potential.indexOf("-");
99 if (dash != -1) {
100 end = dash;
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_ap.h21 CPVT_Dash(FX_INT32 dash, FX_INT32 gap, FX_INT32 phase) : nDash(dash), nGap(gap), nPhase(phase) argument
89 FX_INT32 nStyle, const CPVT_Dash & dash);
/external/chromium_org/third_party/skia/samplecode/
H A DSampleDash.cpp73 SkDashPathEffect dash(interval, len, 0);
74 paint.setPathEffect(&dash);
H A DSamplePathUtils.cpp68 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, fPhase));
70 SkAutoTUnref<SkComposePathEffect> compose(SkComposePathEffect::Create(dash, corner));
/external/skia/samplecode/
H A DSampleDash.cpp73 SkDashPathEffect dash(interval, len, 0);
74 paint.setPathEffect(&dash);
H A DSamplePathUtils.cpp68 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, fPhase));
70 SkAutoTUnref<SkComposePathEffect> compose(SkComposePathEffect::Create(dash, corner));
/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/chromium_org/third_party/icu/source/test/intltest/
H A Dtsdcfmsy.cpp159 UnicodeString dash = UnicodeString("-"); local
160 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash);
163 if (dash != enCurrencyInsert) {

Completed in 408 milliseconds

123