Home
last modified time | relevance | path

Searched full:when (Results 1 – 25 of 13622) sorted by relevance

12345678910>>...545

/third_party/mesa3d/.gitlab-ci/
Dtest-source-dep.yml9 when: never
56 when: on_success
57 - when: never
81 when: on_success
84 when: on_success
88 when: on_success
89 - when: never
97 when: on_success
100 when: on_success
104 when: on_success
[all …]
/third_party/boost/libs/beast/doc/xsl/
Dclass_detail.xsl2 <xsl:when test="$normal-tparam = 'Allocator'"> <xsl:text>__Allocator__</xsl:text></xsl…
3 <xsl:when test="$normal-tparam = 'AsyncStream'"> <xsl:text>__AsyncStream__</xsl:text></x…
4 <xsl:when test="$normal-tparam = 'AsyncReadStream'"> <xsl:text>__AsyncReadStream__</xsl:text…
5 <xsl:when test="$normal-tparam = 'AsyncWriteStream'"> <xsl:text>__AsyncWriteStream__</xsl:tex…
6 <xsl:when test="$normal-tparam = 'Body'"> <xsl:text>__Body__</xsl:text></xsl:when>
7 <xsl:when test="$normal-tparam = 'BufferSequence'"> <xsl:text>__BufferSequence__</xsl:text>…
8 <xsl:when test="$normal-tparam = 'BufferSequence'"> <xsl:text>__BufferSequence__</xsl:text>…
9 <xsl:when test="$normal-tparam = 'CompletionCondition'"> <xsl:text>__CompletionCondition__</xsl:…
10 <xsl:when test="$normal-tparam = 'CompletionHandler'"> <xsl:text>__CompletionHandler__</xsl:te…
11 <xsl:when test="$normal-tparam = 'CompletionToken'"> <xsl:text>__CompletionToken__</xsl:text…
[all …]
/third_party/libxml2/doc/
Dsite.xsl15 <xsl:when test="$name = '#Introducti'">
17 </xsl:when>
18 <xsl:when test="$name = '#Documentat'">
20 </xsl:when>
21 <xsl:when test="$name = '#Reporting'">
23 </xsl:when>
24 <xsl:when test="$name = '#help'">
26 </xsl:when>
27 <xsl:when test="$name = '#Help'">
29 </xsl:when>
[all …]
/third_party/typescript/tests/baselines/reference/
DobjectLiteralGettersAndSetters.errors.txt1 …ralGettersAndSetters.ts(2,24): error TS1056: Accessors are only available when targeting ECMAScrip…
2 …ralGettersAndSetters.ts(2,50): error TS1056: Accessors are only available when targeting ECMAScrip…
3 …ralGettersAndSetters.ts(3,24): error TS1056: Accessors are only available when targeting ECMAScrip…
4 …ralGettersAndSetters.ts(3,50): error TS1056: Accessors are only available when targeting ECMAScrip…
5 …ralGettersAndSetters.ts(4,24): error TS1056: Accessors are only available when targeting ECMAScrip…
6 …ralGettersAndSetters.ts(4,51): error TS1056: Accessors are only available when targeting ECMAScrip…
7 …ralGettersAndSetters.ts(5,24): error TS1056: Accessors are only available when targeting ECMAScrip…
8 …ralGettersAndSetters.ts(5,49): error TS1056: Accessors are only available when targeting ECMAScrip…
9 …ralGettersAndSetters.ts(6,24): error TS1056: Accessors are only available when targeting ECMAScrip…
10 …ralGettersAndSetters.ts(6,51): error TS1056: Accessors are only available when targeting ECMAScrip…
[all …]
DreactDefaultPropsInferenceSuccess.types8 when?: ((value: string) => boolean) | "a" | "b";
9 >when : "a" | "b" | ((value: string) => boolean) | undefined
26 >defaultProps : { when: () => boolean; }
27 >{ when: () => true } : { when: () => boolean; }
29 when: () => true
30 >when : () => boolean
47 const Test1 = () => <FieldFeedback when={value => !!value} />;
49 >() => <FieldFeedback when={value => !!value} /> : () => JSX.Element
50 ><FieldFeedback when={value => !!value} /> : JSX.Element
52 >when : (value: string) => boolean
[all …]
DnewWithSpread.errors.txt1 …13): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
2 …13): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
3 …,8): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
4 …13): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
5 …13): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
6 …13): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
7 …15): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
8 …15): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
9 …17): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
10 …17): error TS2472: Spread operator in 'new' expressions is only available when targeting ECMAScrip…
[all …]
DtupleTypeInference.types18 when<T>(t?: T): IPromise<T>;
19 >when : <T>(t?: T) => IPromise<T>
31 var a = $q.all([$q.when<string>(), $q.when<number>()]);
33 >$q.all([$q.when<string>(), $q.when<number>()]) : IPromise<[string, number]>
37 >[$q.when<string>(), $q.when<number>()] : [IPromise<string>, IPromise<number>]
38 >$q.when<string>() : IPromise<string>
39 >$q.when : <T>(t?: T) => IPromise<T>
41 >when : <T>(t?: T) => IPromise<T>
42 >$q.when<number>() : IPromise<number>
43 >$q.when : <T>(t?: T) => IPromise<T>
[all …]
DunparenthesizedConstructorTypeInUnionOrIntersection.errors.txt1 …n.ts(1,19): error TS1386: Constructor type notation must be parenthesized when used in a union typ…
2 …n.ts(2,19): error TS1386: Constructor type notation must be parenthesized when used in a union typ…
3 …n.ts(3,12): error TS1386: Constructor type notation must be parenthesized when used in a union typ…
4 …n.ts(4,12): error TS1386: Constructor type notation must be parenthesized when used in a union typ…
5 …n.ts(5,19): error TS1386: Constructor type notation must be parenthesized when used in a union typ…
6 …on.ts(8,4): error TS1386: Constructor type notation must be parenthesized when used in a union typ…
7 ….ts(11,19): error TS1388: Constructor type notation must be parenthesized when used in an intersec…
8 ….ts(12,19): error TS1388: Constructor type notation must be parenthesized when used in an intersec…
9 ….ts(13,12): error TS1388: Constructor type notation must be parenthesized when used in an intersec…
10 ….ts(14,12): error TS1388: Constructor type notation must be parenthesized when used in an intersec…
[all …]
DunparenthesizedFunctionTypeInUnionOrIntersection.errors.txt1 …tion.ts(1,19): error TS1385: Function type notation must be parenthesized when used in a union typ…
2 …tion.ts(2,19): error TS1385: Function type notation must be parenthesized when used in a union typ…
3 …tion.ts(3,12): error TS1385: Function type notation must be parenthesized when used in a union typ…
4 …tion.ts(4,12): error TS1385: Function type notation must be parenthesized when used in a union typ…
5 …tion.ts(5,19): error TS1385: Function type notation must be parenthesized when used in a union typ…
6 …ction.ts(8,4): error TS1385: Function type notation must be parenthesized when used in a union typ…
7 …ion.ts(11,19): error TS1387: Function type notation must be parenthesized when used in an intersec…
8 …ion.ts(12,19): error TS1387: Function type notation must be parenthesized when used in an intersec…
9 …ion.ts(13,12): error TS1387: Function type notation must be parenthesized when used in an intersec…
10 …ion.ts(14,12): error TS1387: Function type notation must be parenthesized when used in an intersec…
[all …]
DreactDefaultPropsInferenceSuccess.symbols10 when?: ((value: string) => boolean) | "a" | "b";
11 >when : Symbol(BaseProps.when, Decl(reactDefaultPropsInferenceSuccess.tsx, 4, 21))
36 when: () => true
37 >when : Symbol(when, Decl(reactDefaultPropsInferenceSuccess.tsx, 13, 25))
51 const Test1 = () => <FieldFeedback when={value => !!value} />;
54 >when : Symbol(when, Decl(reactDefaultPropsInferenceSuccess.tsx, 23, 34))
59 const Test2 = () => <FieldFeedback when={value => console.log(value)} />;
62 >when : Symbol(when, Decl(reactDefaultPropsInferenceSuccess.tsx, 26, 34))
83 when: () => true
84 >when : Symbol(when, Decl(reactDefaultPropsInferenceSuccess.tsx, 29, 36))
[all …]
/third_party/boost/boost/proto/transform/detail/preprocessed/
Dfold_impl.hpp12 typedef typename when<_, State0>::template impl<Expr, State, Data>::result_type state0;
13 …typedef typename when<_, Fun>::template impl< typename result_of::child_c<Expr, 0>::type , state0 …
22 typename when<_, State0>::template impl<Expr, State, Data>()(e, s, d); in operator ()()
23 …state1 s1 = typename when<_, Fun>::template impl< typename result_of::child_c<Expr, 0>::type , sta… in operator ()()
31 typedef typename when<_, State0>::template impl<Expr, State, Data>::result_type state1;
32 …typedef typename when<_, Fun>::template impl< typename result_of::child_c< Expr , 0 >::type , stat…
41 typename when<_, State0>::template impl<Expr, State, Data>()(e, s, d); in operator ()()
42 …state0 s0 = typename when<_, Fun>::template impl< typename result_of::child_c< Expr , 0 >::type , … in operator ()()
50 typedef typename when<_, State0>::template impl<Expr, State, Data>::result_type state0;
51 … typename when<_, Fun>::template impl< typename result_of::child_c<Expr, 0>::type , state0 , Data …
[all …]
Dmake_gcc_workaround.hpp69 … detail::as_lvalue( typename when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) in operator ()()
90 … detail::as_lvalue( typename when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) in operator ()()
112 …detail::as_lvalue( typename when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::a… in operator ()()
133 …detail::as_lvalue( typename when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::a… in operator ()()
155when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::as_lvalue( typename when<_, A… in operator ()()
176when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::as_lvalue( typename when<_, A… in operator ()()
198when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::as_lvalue( typename when<_, A… in operator ()()
219when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::as_lvalue( typename when<_, A… in operator ()()
241when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::as_lvalue( typename when<_, A… in operator ()()
262when<_, A0>::template impl<Expr, State, Data>()(e, s, d) ) , detail::as_lvalue( typename when<_, A… in operator ()()
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dfeatures_test.dart25 when<bool>(mockFlutterConfig.getValue(any)).thenReturn(false);
26 when(mockPlatform.environment).thenReturn(const <String, String>{});
71 when(mockPlatform.environment).thenReturn(<String, String>{'FLUTTER_WEB': 'hello'});
75 when(mockPlatform.environment).thenReturn(<String, String>{'FLUTTER_WEB': 'true'});
113 when(mockFlutterVerion.channel).thenReturn('master');
119 when(mockFlutterVerion.channel).thenReturn('master');
120 when<bool>(mockFlutterConfig.getValue('enable-web')).thenReturn(true);
126 when(mockFlutterVerion.channel).thenReturn('master');
127 when(mockPlatform.environment).thenReturn(<String, String>{'FLUTTER_WEB': 'true'});
133 when(mockFlutterVerion.channel).thenReturn('dev');
[all …]
Dterminal_handler_test.dart52 when(mockResidentRunner.supportsServiceProtocol).thenReturn(true);
74 when(mockResidentRunner.supportsServiceProtocol).thenReturn(false);
82 when(mockResidentRunner.supportsServiceProtocol).thenReturn(true);
111 when(mockResidentRunner.supportsServiceProtocol).thenReturn(false);
120 when(mockResidentRunner.isRunningDebug).thenReturn(true);
121 when(mockResidentRunner.flutterDevices).thenReturn(<FlutterDevice>[mockFlutterDevice]);
122 when(mockFlutterDevice.views).thenReturn(<FlutterView>[]);
138 when(mockResidentRunner.supportsServiceProtocol).thenReturn(false);
145 when(mockResidentRunner.isRunningDebug).thenReturn(true);
153 when(mockResidentRunner.supportsServiceProtocol).thenReturn(false);
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/macos/
Dxcode_validator_test.dart27 testUsingContext('Emits missing status when Xcode is not installed', () async {
28 when(xcode.isInstalled).thenReturn(false);
29 when(xcode.xcodeSelectPath).thenReturn(null);
37 testUsingContext('Emits missing status when Xcode installation is incomplete', () async {
38 when(xcode.isInstalled).thenReturn(false);
39 when(xcode.xcodeSelectPath).thenReturn('/Library/Developer/CommandLineTools');
47 testUsingContext('Emits partial status when Xcode version too low', () async {
48 when(xcode.isInstalled).thenReturn(true);
49 when(xcode.versionText)
51 when(xcode.isInstalledAndMeetsVersionCheck).thenReturn(false);
[all …]
Dxcode_test.dart29 testUsingContext('xcodeSelectPath returns null when xcode-select is not installed', () {
30 when(mockProcessManager.runSync(<String>['/usr/bin/xcode-select', '--print-path']))
33 when(mockProcessManager.runSync(<String>['/usr/bin/xcode-select', '--print-path']))
40 testUsingContext('xcodeSelectPath returns path when xcode-select is installed', () {
42 when(mockProcessManager.runSync(<String>['/usr/bin/xcode-select', '--print-path']))
49 testUsingContext('xcodeVersionSatisfactory is false when version is less than minimum', () {
50 when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true);
51 when(mockXcodeProjectInterpreter.majorVersion).thenReturn(8);
52 when(mockXcodeProjectInterpreter.minorVersion).thenReturn(17);
58 … testUsingContext('xcodeVersionSatisfactory is false when xcodebuild tools are not installed', () {
[all …]
/third_party/boost/tools/boostbook/xsl/
Dcallout.xsl21 <xsl:when test="$callout.graphics != 0
32 </xsl:when>
34 <xsl:when test="$callout.unicode != 0
37 <xsl:when test="$callout.unicode.start.character = 10102">
39 <xsl:when test="$conum = 1">&#10102;</xsl:when>
40 <xsl:when test="$conum = 2">&#10103;</xsl:when>
41 <xsl:when test="$conum = 3">&#10104;</xsl:when>
42 <xsl:when test="$conum = 4">&#10105;</xsl:when>
43 <xsl:when test="$conum = 5">&#10106;</xsl:when>
44 <xsl:when test="$conum = 6">&#10107;</xsl:when>
[all …]
Dhtml-base.xsl15 <xsl:when test = "$boost.defaults = 'Boost'">
17 </xsl:when>
26 <xsl:when test = "$boost.defaults = 'Boost'">
28 </xsl:when>
122 <xsl:when test="$month=1">January</xsl:when>
123 <xsl:when test="$month=2">February</xsl:when>
124 <xsl:when test="$month=3">March</xsl:when>
125 <xsl:when test="$month=4">April</xsl:when>
126 <xsl:when test="$month=5">May</xsl:when>
127 <xsl:when test="$month=6">June</xsl:when>
[all …]
Dsource-highlight.xsl16 <xsl:when test="$boost.syntax.highlight='1'">
20 </xsl:when>
43 <xsl:when test="$boost.syntax.highlight='1'">
47 </xsl:when>
57 <xsl:when test="contains($keywords, concat(' ', $identifier, ' '))">
61 </xsl:when>
62 <xsl:when test="$boost.syntax.highlight='1'">
66 </xsl:when>
76 <xsl:when test="$boost.syntax.highlight='1'">
80 </xsl:when>
[all …]
/third_party/unity/auto/
Dcolour_prompt.rb42 when :black then 0
43 when :dark_blue then 1
44 when :dark_green then 2
45 when :dark_cyan then 3
46 when :dark_red then 4
47 when :dark_purple then 5
48 when :dark_yellow, :narrative then 6
49 when :default_white, :default, :dark_white then 7
50 when :silver then 8
51 when :blue then 9
[all …]
/third_party/cJSON/tests/unity/auto/
Dcolour_prompt.rb41 when :black then 0
42 when :dark_blue then 1
43 when :dark_green then 2
44 when :dark_cyan then 3
45 when :dark_red then 4
46 when :dark_purple then 5
47 when :dark_yellow, :narrative then 6
48 when :default_white, :default, :dark_white then 7
49 when :silver then 8
50 when :blue then 9
[all …]
/third_party/boost/libs/asio/doc/
Dreference.xsl108 <xsl:when test="@kind='class' or @kind='struct'">
122 </xsl:when>
154 <xsl:when test="contains($name, 'boost::system::is_error_code_enum')">
156 </xsl:when>
157 <xsl:when test="contains($name, 'asio::')">
159 </xsl:when>
170 <xsl:when test="contains($name, 'boost::system::is_error_code_enum')">
172 </xsl:when>
173 <xsl:when test="contains($name, '::') and contains($name, '&lt;')">
175 …<xsl:when test="string-length(substring-before($name, '::')) &lt; string-length(substring-before($…
[all …]
/third_party/boost/boost/msm/front/euml/
Dguard_grammar.hpp33 : proto::when<
40 : proto::when<
47 : proto::when<
54 : proto::when<
61 : proto::when<
68 : proto::when<
75 : proto::when<
82 : proto::when<
89 : proto::when<
96 : proto::when<
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ios/
Dcode_signing_test.dart34 when(mockIosProject.buildSettings).thenReturn(<String, String>{
42 when(mockIosProject.buildSettings).thenReturn(null);
48 when(mockIosProject.buildSettings).thenReturn(<String, String>{
61 when(mockProcessManager.runSync(<String>['which', 'security']))
71 when(mockProcessManager.runSync(<String>['which', 'security']))
73 when(mockProcessManager.runSync(<String>['which', 'openssl']))
75 when(mockProcessManager.runSync(
97 when(mockProcessManager.runSync(<String>['which', 'security']))
99 when(mockProcessManager.runSync(<String>['which', 'openssl']))
101 when(mockProcessManager.runSync(
[all …]
/third_party/boost/libs/thread/doc/
Dconfiguration.qbk51 [warning When defined BOOST_THREAD_PLATFORM_WIN32 BOOST_THREAD_USES_CHRONO is defined independently…
60 When `BOOST_THREAD_VERSION==2` define `BOOST_THREAD_USES_MOVE ` if you want to use Boost.Move inter…
61 When `BOOST_THREAD_VERSION>=3` define `BOOST_THREAD_DONT_USE_MOVE ` if you don't want to use Boost.…
75 When `BOOST_THREAD_VERSION<=3` && defined BOOST_THREAD_PLATFORM_PTHREAD define `BOOST_THREAD_DONT_U…
76 When `BOOST_THREAD_VERSION>3` && defined BOOST_THREAD_PLATFORM_PTHREAD define `BOOST_THREAD_USES_D…
78 [warning When defined BOOST_THREAD_PLATFORM_WIN32 BOOST_THREAD_USES_DATETIME is defined independent…
98 When `BOOST_THREAD_PROVIDES_THREAD_EQ` is defined Boost.Thread provides these deprecated feature.
107 When `BOOST_THREAD_VERSION>=4` define `BOOST_THREAD_PROVIDES_THREAD_EQ ` if you want this feature.
108 When `BOOST_THREAD_VERSION<4` define `BOOST_THREAD_DONT_PROVIDE_THREAD_EQ ` if you don't want this …
114 `boost::condition` is deprecated. When `BOOST_THREAD_PROVIDES_CONDITION` is defined Boost.Thread pr…
[all …]

12345678910>>...545