/third_party/json/include/nlohmann/detail/meta/ |
D | cpp_future.hpp | 64 template <typename T, T... Ints> 70 return sizeof...(Ints); in size() 79 template <size_t... Ints> 80 using index_sequence = integer_sequence<size_t, Ints...>; 89 template <typename T, T... Ints, size_t SeqSize> 90 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> 92 using type = integer_sequence < T, Ints..., (Ints + SeqSize)... >; 95 template <typename T, T... Ints, size_t SeqSize> 96 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> 98 using type = integer_sequence < T, Ints..., (Ints + SeqSize)..., 2 * SeqSize >;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/utility/ |
D | utility.h | 75 template <typename T, T... Ints> 78 static constexpr size_t size() noexcept { return sizeof...(Ints); } in size() 86 template <size_t... Ints> 87 using index_sequence = integer_sequence<size_t, Ints...>; 95 template <typename T, T... Ints, size_t SeqSize> 96 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> { 97 using type = integer_sequence<T, Ints..., (Ints + SeqSize)...>; 100 template <typename T, T... Ints, size_t SeqSize> 101 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> { 102 using type = integer_sequence<T, Ints..., (Ints + SeqSize)..., 2 * SeqSize>;
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
D | builtin-template.hpp | 2 template<class T, T... Ints>
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
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/ |
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/ |
D | strutil_unittest.cc | 809 TEST(StrCat, Ints) { in TEST() argument
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_cat_test.cc | 39 TEST(StrCat, Ints) { in TEST() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Record.cpp | 2275 std::vector<int64_t> Ints; in getValueAsListOfInts() local 2278 Ints.push_back(II->getValue()); in getValueAsListOfInts() 2285 return Ints; in getValueAsListOfInts()
|
/third_party/json/tests/abi/include/nlohmann/ |
D | json_v3_10_5.hpp | 3081 template <typename T, T... Ints> 3087 return sizeof...(Ints); in size() 3096 template <size_t... Ints> 3097 using index_sequence = integer_sequence<size_t, Ints...>; 3106 template <typename T, T... Ints, size_t SeqSize> 3107 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> 3109 using type = integer_sequence < T, Ints..., (Ints + SeqSize)... >; 3112 template <typename T, T... Ints, size_t SeqSize> 3113 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> 3115 using type = integer_sequence < T, Ints..., (Ints + SeqSize)..., 2 * SeqSize >;
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 3105 template <typename T, T... Ints> 3111 return sizeof...(Ints); in size() 3120 template <size_t... Ints> 3121 using index_sequence = integer_sequence<size_t, Ints...>; 3130 template <typename T, T... Ints, size_t SeqSize> 3131 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> 3133 using type = integer_sequence < T, Ints..., (Ints + SeqSize)... >; 3136 template <typename T, T... Ints, size_t SeqSize> 3137 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> 3139 using type = integer_sequence < T, Ints..., (Ints + SeqSize)..., 2 * SeqSize >;
|