/third_party/typescript/tests/baselines/reference/ |
D | mappedTypes5.types | 139 type State2 = { foo: number, bar: string }; 140 >State2 : State2 147 readonly previous: Readonly<Partial<State2>>; 148 >previous : Readonly<Partial<State2>> 150 readonly current: Readonly<Partial<State2>>; 151 >current : Readonly<Partial<State2>> 158 readonly previous: Partial<Readonly<State2>>; 159 >previous : Partial<Readonly<State2>> 161 readonly current: Partial<Readonly<State2>>; 162 >current : Partial<Readonly<State2>> [all …]
|
D | mappedTypes5.js | 44 type State2 = { foo: number, bar: string }; 47 readonly previous: Readonly<Partial<State2>>; 48 readonly current: Readonly<Partial<State2>>; 52 readonly previous: Partial<Readonly<State2>>; 53 readonly current: Partial<Readonly<State2>>; 57 let previous: Partial<State2> = Object.create(null); 58 let current: Partial<State2> = Object.create(null);
|
D | mappedTypes5.errors.txt | 55 type State2 = { foo: number, bar: string }; 58 readonly previous: Readonly<Partial<State2>>; 59 readonly current: Readonly<Partial<State2>>; 63 readonly previous: Partial<Readonly<State2>>; 64 readonly current: Partial<Readonly<State2>>; 68 let previous: Partial<State2> = Object.create(null); 69 let current: Partial<State2> = Object.create(null);
|
D | mappedTypes5.symbols | 209 type State2 = { foo: number, bar: string }; 210 >State2 : Symbol(State2, Decl(mappedTypes5.ts, 40, 1)) 217 readonly previous: Readonly<Partial<State2>>; 221 >State2 : Symbol(State2, Decl(mappedTypes5.ts, 40, 1)) 223 readonly current: Readonly<Partial<State2>>; 227 >State2 : Symbol(State2, Decl(mappedTypes5.ts, 40, 1)) 234 readonly previous: Partial<Readonly<State2>>; 238 >State2 : Symbol(State2, Decl(mappedTypes5.ts, 40, 1)) 240 readonly current: Partial<Readonly<State2>>; 244 >State2 : Symbol(State2, Decl(mappedTypes5.ts, 40, 1)) [all …]
|
/third_party/boost/boost/numeric/odeint/util/ |
D | same_size.hpp | 38 template< typename State1 , typename State2 , class Enabler = void > 41 static bool same_size( const State1 &x1 , const State2 &x2 ) in same_size() 50 template< class State1 , class State2 > 53 static bool same_size( const State1 &x1 , const State2 &x2 ) in same_size() 55 return same_size_impl_sfinae< State1 , State2 >::same_size( x1 , x2 ); in same_size() 61 template< class State1 , class State2 > 62 bool same_size( const State1 &x1 , const State2 &x2 ) in same_size() 64 return same_size_impl< State1 , State2 >::same_size( x1 , x2 ); in same_size()
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypes5.ts | 45 type State2 = { foo: number, bar: string }; alias 48 readonly previous: Readonly<Partial<State2>>; 49 readonly current: Readonly<Partial<State2>>; 53 readonly previous: Partial<Readonly<State2>>; 54 readonly current: Partial<Readonly<State2>>; 58 let previous: Partial<State2> = Object.create(null); 59 let current: Partial<State2> = Object.create(null);
|
/third_party/boost/libs/msm/test/ |
D | Anonymous.cpp | 57 struct State2 : public msm::front::state<> struct 111 _row < State1 , none , State2 >, 112 a_row < State2 , none , State3 , &p::State2ToState3 >, 131 fsm.template get_state<my_machine_::State2&>().entry_counter=0; in on_entry() 132 fsm.template get_state<my_machine_::State2&>().exit_counter=0; in on_entry() 155 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().exit_counter == 1,"State2 exit not called … in BOOST_AUTO_TEST_CASE() 156 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().entry_counter == 1,"State2 entry not calle… in BOOST_AUTO_TEST_CASE() 171 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().exit_counter == 2,"State2 exit not called … in BOOST_AUTO_TEST_CASE() 172 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().entry_counter == 2,"State2 entry not calle… in BOOST_AUTO_TEST_CASE()
|
D | Test2RegionsAnonymous.cpp | 51 struct State2 : public msm::front::state<> struct 114 Row < State1 , event1 , State2 , none , always_true >, 115 Row < State2 , none , State3 >, 132 fsm.template get_state<my_machine_::State2&>().entry_counter=0; in on_entry() 133 fsm.template get_state<my_machine_::State2&>().exit_counter=0; in on_entry() 159 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().exit_counter == 1,"State2 exit not called … in BOOST_AUTO_TEST_CASE() 160 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().entry_counter == 1,"State2 entry not calle… in BOOST_AUTO_TEST_CASE()
|
D | AnonymousEuml.cpp | 34 …+state_(entry_counter),++state_(exit_counter),attributes_ << entry_counter << exit_counter),State2) in BOOST_MSM_EUML_DECLARE_ATTRIBUTE() 90 State2 == State1 , 91 State3 == State2 / State2ToState3, 127 …BOOST_CHECK_MESSAGE(p.get_state<BOOST_MSM_EUML_STATE_NAME(State2)&>().get_attribute(exit_counter) … in BOOST_AUTO_TEST_CASE() 129 …BOOST_CHECK_MESSAGE(p.get_state<BOOST_MSM_EUML_STATE_NAME(State2)&>().get_attribute(entry_counter)… in BOOST_AUTO_TEST_CASE() 150 …BOOST_CHECK_MESSAGE(p.get_state<BOOST_MSM_EUML_STATE_NAME(State2)&>().get_attribute(exit_counter) … in BOOST_AUTO_TEST_CASE() 152 …BOOST_CHECK_MESSAGE(p.get_state<BOOST_MSM_EUML_STATE_NAME(State2)&>().get_attribute(entry_counter)… in BOOST_AUTO_TEST_CASE()
|
D | Entries.cpp | 51 struct State2 : public msm::front::state<> struct 184 … <SubFsm2_::PseudoExit1>, event6 , State2 > 200 fsm.template get_state<Fsm_::State2&>().entry_counter=0; in on_entry() 201 fsm.template get_state<Fsm_::State2&>().exit_counter=0; in on_entry() 278 …BOOST_CHECK_MESSAGE(p.get_state<Fsm_::State2&>().entry_counter == 1,"State2 entry not called corre… in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/boost/numeric/odeint/external/compute/ |
D | compute_operations.hpp | 115 template<class State0, class State1, class State2> 116 void operator()(State0 &s0, State1 &s1, State2 &s2) const { in operator ()() 139 << " -DT2=" << bc::type_name<typename State2::value_type>() in operator ()() 166 template <class State0, class State1, class State2> 167 void operator()(State0 &s0, State1 &s1, State2 &s2) const { in operator ()()
|
/third_party/boost/libs/msm/doc/PDF/examples/ |
D | AnonymousTutorial.cpp | 39 struct State2 : public msm::front::state<> struct 88 _row < State1 , none , State2 >, 89 a_row < State2 , none , State3 , &p::State2ToState3 >,
|
D | AnonymousTutorialEuml.cpp | 91 BOOST_MSM_EUML_STATE(( State2_Entry,State2_Exit ),State2) 133 State2 == State1 , 134 State3 == State2 / State2ToState3,
|
D | AnonymousTutorialWithFunctors.cpp | 42 struct State2 : public msm::front::state<> struct 113 Row < State1 , none , State2 >, 114 Row < State2 , none , State3 , State2ToState3 >,
|
D | DirectEntryTutorial.cpp | 47 struct State2 : public msm::front::state<> struct 169 … <SubFsm2_::PseudoExit1>, event6 , State2 >
|
D | TestErrorOrthogonality.cpp | 66 struct State2 : public msm::front::state<> struct
|
D | DirectEntryEuml.cpp | 308 BOOST_MSM_EUML_STATE(( State2_Entry,State2_Exit ),State2) 320 State2 == exit_pt_
|
/third_party/boost/libs/msm/doc/HTML/examples/ |
D | AnonymousTutorial.cpp | 39 struct State2 : public msm::front::state<> struct 88 _row < State1 , none , State2 >, 89 a_row < State2 , none , State3 , &p::State2ToState3 >,
|
D | AnonymousTutorialEuml.cpp | 91 BOOST_MSM_EUML_STATE(( State2_Entry,State2_Exit ),State2) 133 State2 == State1 , 134 State3 == State2 / State2ToState3,
|
D | AnonymousTutorialWithFunctors.cpp | 42 struct State2 : public msm::front::state<> struct 113 Row < State1 , none , State2 >, 114 Row < State2 , none , State3 , State2ToState3 >,
|
D | DirectEntryTutorial.cpp | 47 struct State2 : public msm::front::state<> struct 169 … <SubFsm2_::PseudoExit1>, event6 , State2 >
|
D | TestErrorOrthogonality.cpp | 66 struct State2 : public msm::front::state<> struct
|
D | DirectEntryEuml.cpp | 308 BOOST_MSM_EUML_STATE(( State2_Entry,State2_Exit ),State2) 320 State2 == exit_pt_
|