Home
last modified time | relevance | path

Searched refs:_0 (Results 1 – 25 of 179) sorted by relevance

12345678

/third_party/boost/boost/spirit/home/classic/phoenix/
Doperators.hpp750 operator()(T0& _0) const in operator ()()
751 { return unary_operator<negative_op, T0>::eval(_0); } in operator ()()
757 operator-(actor<BaseT> const& _0) in operator -() argument
759 return impl::make_unary<negative_op, BaseT>::construct(_0); in operator -()
777 operator()(T0& _0) const in operator ()()
778 { return unary_operator<positive_op, T0>::eval(_0); } in operator ()()
784 operator+(actor<BaseT> const& _0) in operator +() argument
786 return impl::make_unary<positive_op, BaseT>::construct(_0); in operator +()
804 operator()(T0& _0) const in operator ()()
805 { return unary_operator<logical_not_op, T0>::eval(_0); } in operator ()()
[all …]
Dspecial_ops.hpp85 operator>>(PHOENIX_STD::istream& _0, actor<BaseT> const& _1) in operator >>() argument
89 ::construct(var(_0), _1); in operator >>()
111 operator<<(PHOENIX_STD::ostream& _0, actor<BaseT> const& _1) in operator <<() argument
115 ::construct(var(_0), _1); in operator <<()
135 operator>>(PHOENIX_STD::PHOENIX_SSTREAM& _0, actor<BaseT> const& _1) in operator >>() argument
139 ::construct(var(_0), _1); in operator >>()
155 operator<<(PHOENIX_STD::PHOENIX_SSTREAM& _0, actor<BaseT> const& _1) in operator <<() argument
159 ::construct(var(_0), _1); in operator <<()
207 operator>>(actor<BaseT> const& _0, imanip_t _1) in operator >>() argument
209 return impl::make_binary1<shift_l_op, BaseT, imanip_t>::construct(_0, _1); in operator >>()
[all …]
/third_party/typescript/tests/baselines/reference/
DemitCompoundExponentiationAssignmentWithIndexingOnLHS3.types3 >object : { _0: number; 0: number; }
4 >{ _0: 2, get 0() { return this._0; }, set 0(x: number) { this._0 = x; …
6 _0: 2,
7 >_0 : number
13 return this._0;
14 >this._0 : any
16 >_0 : any
23 this._0 = x;
24 >this._0 = x : number
25 >this._0 : any
[all …]
Dparser.numericSeparators.decmialNegative.js16 0._0
49 _0.0e0
67 0e+_0
85 0.0e+_0
88 _0.0e+0
106 0e-_0
124 0.0e-_0
127 _0.0e-0
188 _0;
215 _0;
[all …]
Dparser.numericSeparators.decimal.types11 1e+1_0
12 >1e+1_0 : 10000000000
14 1e-1_0
15 >1e-1_0 : 1e-10
20 1.1e+10_0
21 >1.1e+10_0 : 1.1e+100
23 1.1e-10_0
24 >1.1e-10_0 : 1.1e-100
Dparser.numericSeparators.decimal.js4 1e1_0
5 1e+1_0
6 1e-1_0
7 1.1e10_0
8 1.1e+10_0
9 1.1e-10_0
Dparser.numericSeparators.decmialNegative.types18 0._0
19 >0._0 : 0
62 _0.0e0
63 >_0 : any
87 0e+_0
88 >0e+_0 : 0
111 0.0e+_0
112 >0.0e+_0 : 0
115 _0.0e+0
116 >_0 : any
[all …]
DemitCompoundExponentiationAssignmentWithIndexingOnLHS3.js3 _0: 2, property
5 return this._0;
8 this._0 = x;
18 _0: 2, property
20 return this._0;
23 this._0 = x;
Dscannertest1.types11 return c >= CharacterCodes._0 && c <= CharacterCodes._9;
12 >c >= CharacterCodes._0 && c <= CharacterCodes._9 : boolean
13 >c >= CharacterCodes._0 : boolean
15 >CharacterCodes._0 : any
17 >_0 : any
79 >isDecimalDigit(c) ? (c - CharacterCodes._0) : (c >= CharacterCodes.A && c <=…
84 ? (c - CharacterCodes._0)
85 >(c - CharacterCodes._0) : number
86 >c - CharacterCodes._0 : number
88 >CharacterCodes._0 : any
[all …]
DemitCompoundExponentiationAssignmentWithIndexingOnLHS3.symbols5 _0: 2,
6 >_0 : Symbol(_0, Decl(emitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts, 0, 14))
11 return this._0;
17 this._0 = x;
Dscannertest1.js6 return c >= CharacterCodes._0 && c <= CharacterCodes._9;
18 ? (c - CharacterCodes._0)
33 return c >= CharacterCodes._0 && c <= CharacterCodes._9;
43 ? (c - CharacterCodes._0)
/third_party/boost/libs/mpl/test/
Dbitwise.cpp19 typedef integral_c<unsigned int, 0> _0; typedef
27 MPL_ASSERT_RELATION( (bitand_<_0,_0>::value), ==, 0 ); in MPL_TEST_CASE()
28 MPL_ASSERT_RELATION( (bitand_<_1,_0>::value), ==, 0 ); in MPL_TEST_CASE()
29 MPL_ASSERT_RELATION( (bitand_<_0,_1>::value), ==, 0 ); in MPL_TEST_CASE()
30 MPL_ASSERT_RELATION( (bitand_<_0,_ffffffff>::value), ==, 0 ); in MPL_TEST_CASE()
37 MPL_ASSERT_RELATION( (bitor_<_0,_0>::value), ==, 0 ); in MPL_TEST_CASE()
38 MPL_ASSERT_RELATION( (bitor_<_1,_0>::value), ==, 1 ); in MPL_TEST_CASE()
39 MPL_ASSERT_RELATION( (bitor_<_0,_1>::value), ==, 1 ); in MPL_TEST_CASE()
40 …MPL_ASSERT_RELATION( static_cast<long>(bitor_<_0,_ffffffff>::value), ==, static_cast<long>(0xfffff… in MPL_TEST_CASE()
47 MPL_ASSERT_RELATION( (bitxor_<_0,_0>::value), ==, 0 ); in MPL_TEST_CASE()
[all …]
Dcomparison.cpp21 typedef int_<0> _0; typedef
26 MPL_ASSERT_NOT(( equal_to<_0, _10> )); in MPL_TEST_CASE()
27 MPL_ASSERT_NOT(( equal_to<_10, _0> )); in MPL_TEST_CASE()
33 MPL_ASSERT(( not_equal_to<_0, _10> )); in MPL_TEST_CASE()
34 MPL_ASSERT(( not_equal_to<_10, _0> )); in MPL_TEST_CASE()
40 MPL_ASSERT(( less<_0, _10> )); in MPL_TEST_CASE()
41 MPL_ASSERT_NOT(( less<_10, _0> )); in MPL_TEST_CASE()
47 MPL_ASSERT(( less_equal<_0, _10> )); in MPL_TEST_CASE()
48 MPL_ASSERT_NOT(( less_equal<_10, _0> )); in MPL_TEST_CASE()
54 MPL_ASSERT(( greater<_10, _0> )); in MPL_TEST_CASE()
[all …]
Darithmetic.cpp20 typedef int_<0> _0; in MPL_TEST_CASE() typedef
25 MPL_ASSERT_RELATION( (plus<_0,_10>::value), ==, 10 ); in MPL_TEST_CASE()
26 MPL_ASSERT_RELATION( (plus<_10,_0>::value), ==, 10 ); in MPL_TEST_CASE()
28 MPL_ASSERT_RELATION( (minus<_0,_10>::value), ==, -10 ); in MPL_TEST_CASE()
29 MPL_ASSERT_RELATION( (minus<_10,_0>::value), ==, 10 ); in MPL_TEST_CASE()
/third_party/typescript/tests/cases/conformance/parser/ecmascriptnext/numericSeparators/
Dparser.numericSeparators.decmialNegative.ts14 0._0
47 _0.0e0
65 0e+_0
83 0.0e+_0
86 _0.0e+0
104 0e-_0
122 0.0e-_0
125 _0.0e-0
/third_party/icu/tools/multi/c/patch/
D3_4_16 Only in 3_0/icu/source: bin
7 Only in 3_0.orig/icu/source: confdefs.h
8 diff -ru 3_0.orig/icu/source/config/mh-darwin 3_0/icu/source/config/mh-darwin
9 --- 3_0.orig/icu/source/config/mh-darwin 2008-10-20 14:57:52.000000000 -0700
10 +++ 3_0/icu/source/config/mh-darwin 2008-10-20 15:57:28.000000000 -0700
20 Only in 3_0.orig/icu/source: config.cache
21 Only in 3_0.orig/icu/source: config.log
/third_party/libxml2/result/schemas/
Ddecimal-1_1_0.err1 ./test/schemas/decimal-1_0.xml:16: element val: Schemas validity error : Element 'val': '.' is not …
2 ./test/schemas/decimal-1_0.xml:17: element val: Schemas validity error : Element 'val': '-' is not …
3 ./test/schemas/decimal-1_0.xml:18: element val: Schemas validity error : Element 'val': '+' is not …
4 ./test/schemas/decimal-1_0.xml:19: element val: Schemas validity error : Element 'val': '*' is not …
5 ./test/schemas/decimal-1_0.xml:20: element val: Schemas validity error : Element 'val': '- 1' is no…
6 ./test/schemas/decimal-1_0.xml:21: element val: Schemas validity error : Element 'val': '+ 1' is no…
7 ./test/schemas/decimal-1_0.xml:22: element val: Schemas validity error : Element 'val': '+ 0' is no…
8 ./test/schemas/decimal-1_0.xml:23: element val: Schemas validity error : Element 'val': '- 0' is no…
Dsrc-element2-2_0_0.err1 ./test/schemas/src-element2-2_0.xsd:18: element element: Schemas parser error : Element '{http://ww…
2 ./test/schemas/src-element2-2_0.xsd:23: element complexType: Schemas parser error : Element '{http:…
3 ./test/schemas/src-element2-2_0.xsd:29: element simpleType: Schemas parser error : Element '{http:/…
4 ./test/schemas/src-element2-2_0.xsd:36: element element: Schemas parser error : Element '{http://ww…
5 ./test/schemas/src-element2-2_0.xsd:37: element element: Schemas parser error : Element '{http://ww…
6 ./test/schemas/src-element2-2_0.xsd:38: element element: Schemas parser error : Element '{http://ww…
7 ./test/schemas/src-element2-2_0.xsd:39: element element: Schemas parser error : Element '{http://ww…
8 ./test/schemas/src-element2-2_0.xsd:40: element element: Schemas parser error : Element '{http://ww…
9 ./test/schemas/src-element2-2_0.xsd:41: element element: Schemas parser error : Element '{http://ww…
Dderivation-ok-restriction-2-1-1_0_0.err1 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error :…
2 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error :…
3 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error :…
4 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error :…
5 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error :…
6 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error :…
Ddecimal-3_1_0.err1 ./test/schemas/decimal-3_0.xml:12: element val: Schemas validity error : Element 'val': [facet 'tot…
2 ./test/schemas/decimal-3_0.xml:13: element val: Schemas validity error : Element 'val': [facet 'tot…
3 ./test/schemas/decimal-3_0.xml:14: element val: Schemas validity error : Element 'val': [facet 'tot…
4 ./test/schemas/decimal-3_0.xml:15: element val: Schemas validity error : Element 'val': [facet 'tot…
/third_party/boost/libs/spirit/classic/phoenix/example/fundamental/
Dsample7.cpp187 T0 const& _0 = T0() in locals() argument
191 return locals_gen<tuple_t>(tuple_t(_0)); in locals()
198 T0 const& _0 = T0(), in locals() argument
203 return locals_gen<tuple_t>(tuple_t(_0, _1)); in locals()
210 T0 const& _0 = T0(), in locals() argument
216 return locals_gen<tuple_t>(tuple_t(_0, _1, _2)); in locals()
223 T0 const& _0 = T0(), in locals() argument
230 return locals_gen<tuple_t>(tuple_t(_0, _1, _2, _3)); in locals()
237 T0 const& _0 = T0(), in locals() argument
245 return locals_gen<tuple_t>(tuple_t(_0, _1, _2, _3, _4)); in locals()
/third_party/boost/libs/mp11/test/
Dmp_erase.cpp31 using _0 = mp_size_t<0>; in main() typedef
42 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L1, _0, _0>, L1>)); in main()
53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _0>, L2>)); in main()
66 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _1>, mp_list<X2, X3, X4, X5>>)); in main()
77 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _2>, mp_list<X3, X4, X5>>)); in main()
86 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _3>, mp_list<X4, X5>>)); in main()
94 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _4>, mp_list<X5>>)); in main()
96 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _5>, mp_list<>>)); in main()
108 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L1, _0, _0>, L1>)); in main()
119 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _0>, L2>)); in main()
[all …]
/third_party/typescript/tests/cases/conformance/es7/exponentiationOperator/
DemitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts4 _0: 2,
6 return this._0;
9 this._0 = x;
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DPreRotationPerf.cpp27 _0, enumerator
40 preRotation = PreRotation::_0; in PreRotationParams()
61 case PreRotation::_0: in story()
182 case PreRotation::_0: in VulkanParams()
209 VulkanParams(PreRotation::_0),
/third_party/boost/libs/test/test/baseline-outputs/
Dmessages-in-datasets-test.pattern4 xxx/message-in-datatestcase-test.cpp:200: Entering test case "_0"
11 Test case fake_datatest_case/_0 did not check any assertions
12 xxx/message-in-datatestcase-test.cpp:200: Leaving test case "_0"
25_0" file="xxx/message-in-datatestcase-test.cpp" line="200"><Message file="xxx/message-in-datatestc…
29 <testcase assertions="0" name="_0" time="0.1234">
49 - message: Test case fake_datatest_case/_0 did not check any assertions
81 <testcase assertions="0" name="_0" time="0.1234">

12345678