Home
last modified time | relevance | path

Searched refs:dash (Results 1 – 25 of 250) sorted by relevance

12345678910

/third_party/typescript/tests/baselines/reference/
DjsFileImportPreservedWhenUsed.symbols1 === tests/cases/compiler/dash.d.ts ===
3 >ObjectIterator : Symbol(ObjectIterator, Decl(dash.d.ts, 0, 0))
4 >TObject : Symbol(TObject, Decl(dash.d.ts, 0, 20))
5 >TResult : Symbol(TResult, Decl(dash.d.ts, 0, 28))
6 >value : Symbol(value, Decl(dash.d.ts, 0, 41))
7 >TObject : Symbol(TObject, Decl(dash.d.ts, 0, 20))
8 >TObject : Symbol(TObject, Decl(dash.d.ts, 0, 20))
9 >key : Symbol(key, Decl(dash.d.ts, 0, 71))
10 >collection : Symbol(collection, Decl(dash.d.ts, 0, 84))
11 >TObject : Symbol(TObject, Decl(dash.d.ts, 0, 20))
[all …]
DtypeGuardNarrowsIndexedAccessOfKnownProperty.types3 ["dash-ok"]: "square";
4 >["dash-ok"] : "square"
5 >"dash-ok" : "dash-ok"
12 ["dash-ok"]: "rectangle";
13 >["dash-ok"] : "rectangle"
14 >"dash-ok" : "dash-ok"
23 ["dash-ok"]: "circle";
24 >["dash-ok"] : "circle"
25 >"dash-ok" : "dash-ok"
53 switch(s['dash-ok']) {
[all …]
DtypeGuardNarrowsIndexedAccessOfKnownProperty.symbols5 ["dash-ok"]: "square";
6 >["dash-ok"] : Symbol(Square["dash-ok"], Decl(typeGuardNarrowsIndexedAccessOfKnownProperty.ts, 0, 1…
7 >"dash-ok" : Symbol(Square["dash-ok"], Decl(typeGuardNarrowsIndexedAccessOfKnownProperty.ts, 0, 18))
16 ["dash-ok"]: "rectangle";
17 >["dash-ok"] : Symbol(Rectangle["dash-ok"], Decl(typeGuardNarrowsIndexedAccessOfKnownProperty.ts, 4…
18 >"dash-ok" : Symbol(Rectangle["dash-ok"], Decl(typeGuardNarrowsIndexedAccessOfKnownProperty.ts, 4, …
29 ["dash-ok"]: "circle";
30 >["dash-ok"] : Symbol(Circle["dash-ok"], Decl(typeGuardNarrowsIndexedAccessOfKnownProperty.ts, 9, 1…
31 >"dash-ok" : Symbol(Circle["dash-ok"], Decl(typeGuardNarrowsIndexedAccessOfKnownProperty.ts, 9, 19))
66 switch(s['dash-ok']) {
[all …]
/third_party/iptables/extensions/
Dlibipt_DNAT.c79 char *arg, *colon, *dash, *error; in parse_to() local
107 dash = strchr(colon, '-'); in parse_to()
108 if (!dash) { in parse_to()
115 maxport = atoi(dash + 1); in parse_to()
118 "Port `%s' not valid\n", dash+1); in parse_to()
135 dash = strchr(arg, '-'); in parse_to()
136 if (colon && dash && dash > colon) in parse_to()
137 dash = NULL; in parse_to()
139 if (dash) in parse_to()
140 *dash = '\0'; in parse_to()
[all …]
Dlibip6t_SNAT.c52 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; in parse_to() local
97 dash = strchr(colon, '-'); in parse_to()
98 if (!dash) { in parse_to()
105 maxport = atoi(dash + 1); in parse_to()
108 "Port `%s' not valid\n", dash+1); in parse_to()
125 dash = strchr(start, '-'); in parse_to()
126 if (colon && dash && dash > colon) in parse_to()
127 dash = NULL; in parse_to()
129 if (dash) in parse_to()
130 *dash = '\0'; in parse_to()
[all …]
Dlibip6t_DNAT.c58 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; in parse_to() local
103 dash = strchr(colon, '-'); in parse_to()
104 if (!dash) { in parse_to()
111 maxport = atoi(dash + 1); in parse_to()
114 "Port `%s' not valid\n", dash+1); in parse_to()
123 char *slash = strchr(dash, '/'); in parse_to()
145 dash = strchr(start, '-'); in parse_to()
146 if (colon && dash && dash > colon) in parse_to()
147 dash = NULL; in parse_to()
149 if (dash) in parse_to()
[all …]
Dlibipt_SNAT.c73 char *arg, *colon, *dash, *error; in parse_to() local
101 dash = strchr(colon, '-'); in parse_to()
102 if (!dash) { in parse_to()
109 maxport = atoi(dash + 1); in parse_to()
112 "Port `%s' not valid\n", dash+1); in parse_to()
129 dash = strchr(arg, '-'); in parse_to()
130 if (colon && dash && dash > colon) in parse_to()
131 dash = NULL; in parse_to()
133 if (dash) in parse_to()
134 *dash = '\0'; in parse_to()
[all …]
Dlibxt_iprange.c77 char *dash; in iprange_parse_range() local
81 dash = strchr(arg, '-'); in iprange_parse_range()
82 if (dash == NULL) { in iprange_parse_range()
88 *dash = '\0'; in iprange_parse_range()
89 iprange_parse_spec(arg, dash + 1, range, family, optname); in iprange_parse_range()
92 "will never match\n", arg, dash + 1); in iprange_parse_range()
/third_party/flutter/skia/tests/
DDashPathEffectTest.cpp31 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, count, phase)); in DEF_TEST() local
33 REPORTER_ASSERT(r, dash == nullptr); in DEF_TEST()
41 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, count, 0.0f)); in DEF_TEST() local
84 bool actualResult = dash->asPoints(&results, src, rec, mats[i], &cull); in DEF_TEST()
103 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0)); in DEF_TEST() local
107 paint.setPathEffect(dash); in DEF_TEST()
DDrawPathTest.cpp292 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0)); in test_infinite_dash() local
297 paint.setPathEffect(dash); in test_infinite_dash()
312 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0)); in test_crbug_165432() local
316 paint.setPathEffect(dash); in test_crbug_165432()
320 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, nullptr)); in test_crbug_165432()
/third_party/skia/tests/
DDashPathEffectTest.cpp32 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, count, phase)); in DEF_TEST() local
34 REPORTER_ASSERT(r, dash == nullptr); in DEF_TEST()
42 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, count, 0.0f)); in DEF_TEST() local
85 bool actualResult = as_PEB(dash)->asPoints(&results, src, rec, mats[i], &cull); in DEF_TEST()
104 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0)); in DEF_TEST() local
108 paint.setPathEffect(dash); in DEF_TEST()
DDrawPathTest.cpp340 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0)); in test_infinite_dash() local
345 paint.setPathEffect(dash); in test_infinite_dash()
360 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0)); in test_crbug_165432() local
364 paint.setPathEffect(dash); in test_crbug_165432()
368 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, nullptr)); in test_crbug_165432()
/third_party/toybox/toys/other/
Dfactor.c26 int dash = 0; in factor() local
29 if (*s=='-') dash = *s++; in factor()
40 printf("-%llu:"+!dash, l); in factor()
43 if (dash) printf(" -1"); in factor()
/third_party/typescript/tests/cases/fourslash/
DnavigateToQuoted.ts11 const dash: FourSlashInterface.ExpectedNavigateToItem = constant
19 expected: [dash, { ...space, matchKind: "prefix" }],
24 expected: [{ ...space, matchKind: "prefix" }, { ...dash, matchKind: "prefix" }],
/third_party/ffmpeg/tests/fate/
Dvpx.mak61 FATE_VP8-$(CONFIG_WEBM_DASH_MANIFEST_DEMUXER) += fate-webm-dash-manifest
62 fate-webm-dash-manifest: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp…
64 FATE_VP8-$(CONFIG_WEBM_DASH_MANIFEST_DEMUXER) += fate-webm-dash-manifest-unaligned-video-streams
65 fate-webm-dash-manifest-unaligned-video-streams: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest…
67 FATE_VP8-$(CONFIG_WEBM_DASH_MANIFEST_DEMUXER) += fate-webm-dash-manifest-unaligned-audio-streams
68 fate-webm-dash-manifest-unaligned-audio-streams: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest…
70 FATE_VP8-$(CONFIG_WEBM_DASH_MANIFEST_DEMUXER) += fate-webm-dash-manifest-representations
71 fate-webm-dash-manifest-representations: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TA…
73 FATE_VP8-$(CONFIG_WEBM_DASH_MANIFEST_DEMUXER) += fate-webm-dash-manifest-live
74 fate-webm-dash-manifest-live: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -live 1 -i $(TARGE…
[all …]
/third_party/ninja/src/
Dninja_test.cc86 const char* const dash = strchr(filter, '-'); in TestMatchesFilter() local
87 const char* pos = dash == filter ? "*" : filter; //Treat '-test1' as '*-test1' in TestMatchesFilter()
88 const char* neg = dash ? dash + 1 : ""; in TestMatchesFilter()
/third_party/gn/src/util/test/
Dgn_test.cc81 const char* const dash = strchr(filter, '-'); in TestMatchesFilter() local
83 dash == filter ? "*" : filter; // Treat '-test1' as '*-test1' in TestMatchesFilter()
84 const char* neg = dash ? dash + 1 : ""; in TestMatchesFilter()
/third_party/gstreamer/gstplugins_bad/tests/check/elements/dash_mpd_data/
Dxlink_double_period.period1 <Period id="xlink-double-period-Period1" duration="PT10S" xmlns="urn:mpeg:dash:schema:mpd:2011"></P…
2 <Period id="xlink-double-period-Period2" duration="PT20S" xmlns="urn:mpeg:dash:schema:mpd:2011"></P…
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dregexcst.txt327 '-' n set-start-dash
331 # set-start-dash Turn "[--" into a syntax error.
334 set-start-dash:
352 '-' n set-lit-dash
361 '-' n set-set-dash
370 '-' n set-range-dash
409 # set-set-dash
414 set-set-dash:
421 # set-range-dash
426 set-range-dash:
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dregexcst.txt327 '-' n set-start-dash
331 # set-start-dash Turn "[--" into a syntax error.
334 set-start-dash:
352 '-' n set-lit-dash
361 '-' n set-set-dash
370 '-' n set-range-dash
409 # set-set-dash
414 set-set-dash:
421 # set-range-dash
426 set-range-dash:
[all …]
/third_party/icu/icu4c/source/i18n/
Dregexcst.txt327 '-' n set-start-dash
331 # set-start-dash Turn "[--" into a syntax error.
334 set-start-dash:
352 '-' n set-lit-dash
361 '-' n set-set-dash
370 '-' n set-range-dash
409 # set-set-dash
414 set-set-dash:
421 # set-range-dash
426 set-range-dash:
[all …]
/third_party/mindspore/scripts/docker/mindspore-cpu/0.1.0-alpha/
DDockerfile39 RUN echo "dash dash/sh boolean false" | debconf-set-selections
40 RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
/third_party/mindspore/scripts/docker/mindspore-cpu/1.0.0/
DDockerfile39 RUN echo "dash dash/sh boolean false" | debconf-set-selections
40 RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
/third_party/mindspore/scripts/docker/mindspore-cpu/0.7.0-beta/
DDockerfile39 RUN echo "dash dash/sh boolean false" | debconf-set-selections
40 RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
/third_party/mindspore/scripts/docker/mindspore-cpu/0.6.0-beta/
DDockerfile39 RUN echo "dash dash/sh boolean false" | debconf-set-selections
40 RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash

12345678910