Home
last modified time | relevance | path

Searched refs:_a2 (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/parameter/test/
Dparameterized_inheritance.cpp135 T _a2; member in test::backend2
147 ) : B(args), _a2(args[test::_a2]) in backend2()
159 ) : B(copy), _a2(copy.get_a2()) in backend2()
166 return this->_a2; in get_a2()
174 this->_a2 = args[test::_a2]; in initialize_impl()
235 > composed_obj0(test::_a2 = 4, test::_a1 = ' ', test::_a0 = p); in main()
239 > composed_obj1(test::_a0 = p, test::_a1 = ' ', test::_a2 = 4); in main()
248 composed_obj0.initialize(test::_a0 = q, test::_a1 = '!', test::_a2 = 8); in main()
249 composed_obj1.initialize(test::_a2 = 8, test::_a1 = '!', test::_a0 = q); in main()
253 composed_obj0(test::_a2 = 8, test::_a1 = '!', test::_a0 = q); in main()
[all …]
Dcompose.cpp233 , k(args[param::_a2 | E]) in B()
554 , param::_a2 = std::function<double()>(test::D) in test_compose0()
557 test::A a((param::a0 = 1, param::a1 = 13, param::_a2 = test::D)); in test_compose0()
567 , param::_a2 = std::function<float()>(test::F) in test_compose0()
570 test::B b0((param::tag::a1::a_one = 13, param::_a2 = test::F)); in test_compose0()
642 , param::_a2 = std::function<double()>(test::D) in test_compose1()
648 , param::_a2 = test::D in test_compose1()
659 , param::_a2 = std::function<float()>(test::F) in test_compose1()
664 , param::_a2 = test::F in test_compose1()
/third_party/typescript/tests/baselines/reference/
DunusedVariablesWithUnderscoreInBindingElement.js22 const [_a2, [[_b2, _c2]], _d2, _e2] = [1, [[2, 3]], 4, 5];
58 a2: _a2,
85 const { a2: _a2, b2: _b2 } = { a2: 1, b2: 1 };
108 …var _c = [1, [[2, 3]], 4, 5], _a2 = _c[0], _d = _c[1][0], _b2 = _d[0], _c2 = _d[1], _d2 = _c[2], _…
126 …var _c = { a2: 1, b2: { b21: { b211: 1, b212: 1 } }, c2: 1, d2: 1 }, _a2 = _c.a2, _d = _c.b2.b21, …
133 var _b = { a2: 1, b2: 1 }, _a2 = _b.a2, _b2 = _b.b2;
DunusedVariablesWithUnderscoreInBindingElement.symbols63 const [_a2, [[_b2, _c2]], _d2, _e2] = [1, [[2, 3]], 4, 5];
64 >_a2 : Symbol(_a2, Decl(unusedVariablesWithUnderscoreInBindingElement.ts, 20, 11))
186 a2: _a2,
188 >_a2 : Symbol(_a2, Decl(unusedVariablesWithUnderscoreInBindingElement.ts, 55, 11))
262 const { a2: _a2, b2: _b2 } = { a2: 1, b2: 1 };
264 >_a2 : Symbol(_a2, Decl(unusedVariablesWithUnderscoreInBindingElement.ts, 83, 11))
DunusedVariablesWithUnderscoreInBindingElement.types92 const [_a2, [[_b2, _c2]], _d2, _e2] = [1, [[2, 3]], 4, 5];
93 >_a2 : number
260 a2: _a2,
262 >_a2 : number
355 const { a2: _a2, b2: _b2 } = { a2: 1, b2: 1 };
357 >_a2 : number
DunusedVariablesWithUnderscoreInBindingElement.errors.txt49 const [_a2, [[_b2, _c2]], _d2, _e2] = [1, [[2, 3]], 4, 5];
101 a2: _a2,
140 const { a2: _a2, b2: _b2 } = { a2: 1, b2: 1 };
/third_party/typescript/tests/cases/compiler/
DunusedVariablesWithUnderscoreInBindingElement.ts23 const [_a2, [[_b2, _c2]], _d2, _e2] = [1, [[2, 3]], 4, 5]; constant
59 a2: _a2,
86 const { a2: _a2, b2: _b2 } = { a2: 1, b2: 1 };
/third_party/boost/libs/parameter/doc/
Dreference.rst5309 this->a2 = args[_a2];
5326 composed_obj0.initialize(_a2 = 4, _a1 = ' ', _a0 = p);
5327 composed_obj1.initialize(_a0 = p, _a1 = ' ', _a2 = 4);
5726 this->a2 = args[_a2];
5743 composed_obj0(_a2 = 4, _a1 = ' ', _a0 = p);
5744 composed_obj1(_a0 = p, _a1 = ' ', _a2 = 4);
6130 ) : B(args), a2(args[_a2])
6149 > composed_obj0(_a2 = 4, _a1 = ' ', _a0 = p);
6152 > composed_obj1(_a0 = p, _a1 = ' ', _a2 = 4);