Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 11500) sorted by relevance

12345678910>>...460

/third_party/typescript/tests/cases/compiler/
DunionSubtypeReductionErrors.ts5009 { value: 0 as 0 },
5010 { value: 1 as 1 },
5011 { value: 2 as 2 },
5012 { value: 3 as 3 },
5013 { value: 4 as 4 },
5014 { value: 5 as 5 },
5015 { value: 6 as 6 },
5016 { value: 7 as 7 },
5017 { value: 8 as 8 },
5018 { value: 9 as 9 },
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dgl_enum_utils_autogen.cpp19 const char *UnknownGLenumToString(unsigned int value) in UnknownGLenumToString() argument
23 snprintf(sBuffer, kBufferSize, "0x%04X", value); in UnknownGLenumToString()
28 const char *GLenumToString(GLenumGroup enumGroup, unsigned int value) in GLenumToString() argument
34 switch (value) in GLenumToString()
53 return UnknownGLenumToString(value); in GLenumToString()
59 switch (value) in GLenumToString()
64 return UnknownGLenumToString(value); in GLenumToString()
70 switch (value) in GLenumToString()
79 return UnknownGLenumToString(value); in GLenumToString()
85 switch (value) in GLenumToString()
[all …]
/third_party/typescript/tests/baselines/reference/
DcompoundAssignmentLHSIsValue.js3 var value: any; variable
8 this *= value;
9 this += value;
12 this *= value;
13 this += value;
16 this *= value;
17 this += value;
22 this *= value;
23 this += value;
26 this *= value;
[all …]
DunionSubtypeReductionErrors.js5008 { value: 0 as 0 }, property
5009 { value: 1 as 1 }, property
5010 { value: 2 as 2 }, property
5011 { value: 3 as 3 }, property
5012 { value: 4 as 4 }, property
5013 { value: 5 as 5 }, property
5014 { value: 6 as 6 }, property
5015 { value: 7 as 7 }, property
5016 { value: 8 as 8 }, property
5017 { value: 9 as 9 }, property
[all …]
DunionSubtypeReductionErrors.symbols5012 { value: 0 as 0 },
5013 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5006, 5))
5015 { value: 1 as 1 },
5016 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5007, 5))
5018 { value: 2 as 2 },
5019 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5008, 5))
5021 { value: 3 as 3 },
5022 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5009, 5))
5024 { value: 4 as 4 },
5025 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5010, 5))
[all …]
DcompoundAssignmentLHSIsValue.types3 var value: any;
4 >value : any
11 this *= value;
12 >this *= value : number
14 >value : any
16 this += value;
17 >this += value : any
19 >value : any
24 this *= value;
25 >this *= value : number
[all …]
DunionSubtypeReductionErrors.types20018value: 0 as 0 }, { value: 1 as 1 }, { value: 2 as 2 }, { value: 3 as 3 }, { value: 4 a…
20020 { value: 0 as 0 },
20021 >{ value: 0 as 0 } : { value: 0; }
20022 >value : 0
20026 { value: 1 as 1 },
20027 >{ value: 1 as 1 } : { value: 1; }
20028 >value : 1
20032 { value: 2 as 2 },
20033 >{ value: 2 as 2 } : { value: 2; }
20034 >value : 2
[all …]
DcompoundAssignmentLHSIsValue.symbols3 var value: any;
4 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
11 this *= value;
13 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
15 this += value;
17 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
22 this *= value;
24 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
26 this += value;
28 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
[all …]
/third_party/libevdev/include/
Devent-names.h846 unsigned int value; member
850 { .name = "MT_TOOL_DIAL", .value = MT_TOOL_DIAL },
851 { .name = "MT_TOOL_FINGER", .value = MT_TOOL_FINGER },
852 { .name = "MT_TOOL_MAX", .value = MT_TOOL_MAX },
853 { .name = "MT_TOOL_PALM", .value = MT_TOOL_PALM },
854 { .name = "MT_TOOL_PEN", .value = MT_TOOL_PEN },
858 { .name = "EV_ABS", .value = EV_ABS },
859 { .name = "EV_FF", .value = EV_FF },
860 { .name = "EV_FF_STATUS", .value = EV_FF_STATUS },
861 { .name = "EV_KEY", .value = EV_KEY },
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dmarshalling_test.cc31 bool value; in TEST() local
34 EXPECT_TRUE(absl::ParseFlag("True", &value, &err)); in TEST()
35 EXPECT_TRUE(value); in TEST()
36 EXPECT_TRUE(absl::ParseFlag("true", &value, &err)); in TEST()
37 EXPECT_TRUE(value); in TEST()
38 EXPECT_TRUE(absl::ParseFlag("TRUE", &value, &err)); in TEST()
39 EXPECT_TRUE(value); in TEST()
41 EXPECT_TRUE(absl::ParseFlag("Yes", &value, &err)); in TEST()
42 EXPECT_TRUE(value); in TEST()
43 EXPECT_TRUE(absl::ParseFlag("yes", &value, &err)); in TEST()
[all …]
/third_party/abseil-cpp/absl/flags/
Dmarshalling_test.cc31 bool value; in TEST() local
34 EXPECT_TRUE(absl::ParseFlag("True", &value, &err)); in TEST()
35 EXPECT_TRUE(value); in TEST()
36 EXPECT_TRUE(absl::ParseFlag("true", &value, &err)); in TEST()
37 EXPECT_TRUE(value); in TEST()
38 EXPECT_TRUE(absl::ParseFlag("TRUE", &value, &err)); in TEST()
39 EXPECT_TRUE(value); in TEST()
41 EXPECT_TRUE(absl::ParseFlag("Yes", &value, &err)); in TEST()
42 EXPECT_TRUE(value); in TEST()
43 EXPECT_TRUE(absl::ParseFlag("yes", &value, &err)); in TEST()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
Dgl_enum_utils_autogen.cpp20 const char *GLbooleanToString(unsigned int value) in GLbooleanToString() argument
22 switch (value) in GLbooleanToString()
33 const char *GLenumToString(GLenumGroup enumGroup, unsigned int value) in GLenumToString() argument
39 switch (value) in GLenumToString()
58 switch (value) in GLenumToString()
83 switch (value) in GLenumToString()
112 switch (value) in GLenumToString()
165 switch (value) in GLenumToString()
228 switch (value) in GLenumToString()
239 switch (value) in GLenumToString()
[all …]
/third_party/typescript/tests/cases/conformance/expressions/assignmentOperator/
DcompoundAssignmentLHSIsValue.ts4 var value: any; variable
9 this *= value;
10 this += value;
13 this *= value;
14 this += value;
17 this *= value;
18 this += value;
23 this *= value;
24 this += value;
27 this *= value;
[all …]
/third_party/boost/libs/type_traits/test/
Dhas_greater_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]
Dhas_not_equal_to_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]
Dhas_less_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]
Dhas_equal_to_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]
Dhas_less_equal_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]
Dhas_greater_equal_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]
Dhas_logical_not_test.cpp22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void >::value), 0); in specific()
23 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void >::value), 0); in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, bool >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, bool const >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, bool & >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, bool const & >::value), 0); in specific()
28 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int const >::value), 0); in specific()
30 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int & >::value), 0); in specific()
31 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int const & >::value), 0); in specific()
[all …]
Dhas_multiplies_assign_test.cpp21 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, int >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void, int >::value), 0); in specific()
23 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, int >::value), 0); in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< double &, void, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* &, void, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const, void >::value), 0); in specific()
28 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int* & >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* &, void, int >::value), 0); in specific()
30 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void >::value), 0); in specific()
[all …]
Dhas_multiplies_test.cpp25 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, int >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void, int >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, int >::value), 0); in specific()
28 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< double &, void, void >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* &, void, void >::value), 0); in specific()
30 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
31 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const, void >::value), 0); in specific()
32 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int* & >::value), 0); in specific()
33 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* &, void, int >::value), 0); in specific()
34 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void >::value), 0); in specific()
[all …]
Dhas_plus_test.cpp21 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, int >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void, int >::value), 0); in specific()
23 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, int >::value), 0); in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< double &, void, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* &, void, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const, void >::value), 0); in specific()
28 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int* & >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* &, void, int >::value), 0); in specific()
30 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void >::value), 0); in specific()
[all …]
Dhas_modulus_test.cpp21 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, int >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void, int >::value), 0); in specific()
23 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, int >::value), 0); in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< double &, void, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* &, void, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const, void >::value), 0); in specific()
28 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int* & >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* &, void, int >::value), 0); in specific()
30 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void >::value), 0); in specific()
[all …]
Dhas_right_shift_assign_test.cpp21 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const, void, void >::value), 0); in specific()
22 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool &, void >::value), 0); in specific()
23 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< bool const &, void, void >::value), 0… in specific()
24 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int, void >::value), 0); in specific()
25 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, int &, void >::value), 0); in specific()
26 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, double, void >::value), 0); in specific()
27 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void, void* const >::value), 0); in specific()
28 … BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< void* const, void, int >::value), 0); in specific()
29 BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int*, void, int >::value), 0); in specific()
30 …BOOST_CHECK_INTEGRAL_CONSTANT((::boost::BOOST_TT_TRAIT_NAME< int* const &, void, void >::value), 0… in specific()
[all …]

12345678910>>...460