Searched refs:Ints (Results 1 - 12 of 12) sorted by relevance
/third_party/json/include/nlohmann/detail/meta/ |
H A D | cpp_future.hpp | 48 // of `integer_sequence<T, Ints...>` has a sequence of integers encoded in its 55 // template< class T, T... Ints > 56 // void user_function(integer_sequence<T, Ints...>); 60 // // user_function's `T` will be deduced to `int` and `Ints...` 64 template <typename T, T... Ints> 70 return sizeof...(Ints); 79 template <size_t... Ints> 80 using index_sequence = integer_sequence<size_t, Ints...>; 88 // Note that SeqSize == sizeof...(Ints). It's passed explicitly for efficiency. 89 template <typename T, T... Ints, size_ [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/utility/ |
H A D | utility.h | 21 // * integer_sequence<T, Ints...> == std::integer_sequence<T, Ints...> 22 // * index_sequence<Ints...> == std::index_sequence<Ints...> 59 // of `integer_sequence<T, Ints...>` has a sequence of integers encoded in its 66 // template< class T, T... Ints > 67 // void user_function(integer_sequence<T, Ints...>); 71 // // user_function's `T` will be deduced to `int` and `Ints...` 75 template <typename T, T... Ints> 78 static constexpr size_t size() noexcept { return sizeof...(Ints); } [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | builtin-template.hpp | 2 template<class T, T... Ints>
|
/third_party/python/Lib/test/ |
H A D | test_types.py | 942 class Ints(enum.IntEnum): class 946 self.assertEqual(Literal[Ints.A] | Literal[Ints.A], Literal[Ints.A]) 947 self.assertEqual(Literal[Ints.B] | Literal[Ints.B], Literal[Ints.B]) 949 self.assertEqual((Literal[Ints.B] | Literal[Ints.A]).__args__, 950 (Literal[Ints [all...] |
H A D | test_typing.py | 1825 class Ints(enum.IntEnum): class 1829 self.assertEqual(Union[Literal[Ints.A], Literal[Ints.A]], 1830 Literal[Ints.A]) 1831 self.assertEqual(Union[Literal[Ints.B], Literal[Ints.B]], 1832 Literal[Ints.B]) 1834 self.assertEqual(Union[Literal[Ints.A], Literal[Ints.B]].__args__, 1835 (Literal[Ints 2307 class Ints(enum.IntEnum): global() class [all...] |
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
H A D | FieldMaskUtil.java | 39 import com.google.common.primitives.Ints; 149 return fromFieldNumbers(type, Ints.asList(fieldNumbers)); in fromFieldNumbers()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUBaseInfo.cpp | 589 std::pair<int, int> Ints = Default; in getIntegerPairAttribute() local 591 if (Strs.first.trim().getAsInteger(0, Ints.first)) { in getIntegerPairAttribute() 595 if (Strs.second.trim().getAsInteger(0, Ints.second)) { in getIntegerPairAttribute() 602 return Ints; in getIntegerPairAttribute()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil_unittest.cc | 809 TEST(StrCat, Ints) { in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_cat_test.cc | 39 TEST(StrCat, Ints) { in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
H A D | Record.cpp | 2275 std::vector<int64_t> Ints; 2278 Ints.push_back(II->getValue()); 2285 return Ints;
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 3065 // of `integer_sequence<T, Ints...>` has a sequence of integers encoded in its 3072 // template< class T, T... Ints > 3073 // void user_function(integer_sequence<T, Ints...>); 3077 // // user_function's `T` will be deduced to `int` and `Ints...` 3081 template <typename T, T... Ints> 3087 return sizeof...(Ints); 3096 template <size_t... Ints> 3097 using index_sequence = integer_sequence<size_t, Ints...>; 3105 // Note that SeqSize == sizeof...(Ints). It's passed explicitly for efficiency. 3106 template <typename T, T... Ints, size_ [all...] |
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 3089 // of `integer_sequence<T, Ints...>` has a sequence of integers encoded in its 3096 // template< class T, T... Ints > 3097 // void user_function(integer_sequence<T, Ints...>); 3101 // // user_function's `T` will be deduced to `int` and `Ints...` 3105 template <typename T, T... Ints> 3111 return sizeof...(Ints); 3120 template <size_t... Ints> 3121 using index_sequence = integer_sequence<size_t, Ints...>; 3129 // Note that SeqSize == sizeof...(Ints). It's passed explicitly for efficiency. 3130 template <typename T, T... Ints, size_ [all...] |
Completed in 36 milliseconds