/third_party/vk-gl-cts/framework/delibs/decpp/ |
D | deRandom.hpp | 59 template <class InputIter, class OutputIter> 60 void choose (InputIter first, InputIter last, OutputIter result, int numItems); 62 template <typename T, class InputIter> 63 T choose (InputIter first, InputIter last); 66 template <typename T, class InputIter, class WeightIter> 67 T chooseWeighted (InputIter first, InputIter last, WeightIter weight); 104 template <class InputIter, class OutputIter> 105 void Random::choose (InputIter first, InputIter last, OutputIter result, int numItems) in choose() 127 template <typename T, class InputIter> 128 T Random::choose (InputIter first, InputIter last) in choose() [all …]
|
/third_party/rust/crates/nom/src/number/ |
D | complete.rs | 13 AsBytes, AsChar, Compare, InputIter, InputLength, InputTake, InputTakeAtPosition, Offset, Slice, 34 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u8() 64 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u16() 97 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u24() 130 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u32() 163 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u64() 196 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u128() 229 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i8() 252 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i16() 275 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i24() [all …]
|
D | streaming.rs | 12 AsBytes, AsChar, Compare, InputIter, InputLength, InputTake, InputTakeAtPosition, Offset, Slice, 32 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u8() 62 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u16() 95 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u24() 128 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u32() 161 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u64() 193 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u128() 223 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i8() 243 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i16() 263 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i24() [all …]
|
/third_party/rust/crates/nom/src/character/ |
D | streaming.rs | 12 AsChar, FindToken, InputIter, InputLength, InputTake, InputTakeAtPosition, Slice, 33 I: Slice<RangeFrom<usize>> + InputIter + InputLength, in char() 34 <I as InputIter>::Item: AsChar, in char() 63 I: Slice<RangeFrom<usize>> + InputIter, in satisfy() argument 64 <I as InputIter>::Item: AsChar, in satisfy() 92 I: Slice<RangeFrom<usize>> + InputIter, in one_of() argument 93 <I as InputIter>::Item: AsChar + Copy, in one_of() 94 T: FindToken<<I as InputIter>::Item>, in one_of() 117 I: Slice<RangeFrom<usize>> + InputIter, in none_of() argument 118 <I as InputIter>::Item: AsChar + Copy, in none_of() [all …]
|
D | complete.rs | 12 AsChar, FindToken, InputIter, InputLength, InputTake, InputTakeAtPosition, Slice, 34 I: Slice<RangeFrom<usize>> + InputIter, in char() argument 35 <I as InputIter>::Item: AsChar, in char() 63 I: Slice<RangeFrom<usize>> + InputIter, in satisfy() argument 64 <I as InputIter>::Item: AsChar, in satisfy() 91 I: Slice<RangeFrom<usize>> + InputIter, in one_of() argument 92 <I as InputIter>::Item: AsChar + Copy, in one_of() 93 T: FindToken<<I as InputIter>::Item>, in one_of() 115 I: Slice<RangeFrom<usize>> + InputIter, in none_of() argument 116 <I as InputIter>::Item: AsChar + Copy, in none_of() [all …]
|
/third_party/gn/src/gn/ |
D | pointer_set.h | 87 template <typename InputIter> 88 PointerSet(InputIter first, InputIter last) { in PointerSet() 128 template <typename InputIter> 129 void insert(InputIter first, InputIter last) { in insert()
|
/third_party/rust/crates/nom/src/bytes/ |
D | streaming.rs | 9 Compare, CompareResult, FindSubstring, FindToken, InputIter, InputLength, InputTake, 266 Input: InputTake + InputIter + InputLength, in take_while_m_n() 267 F: Fn(<Input as InputIter>::Item) -> bool, in take_while_m_n() 415 Input: InputIter + InputTake + InputLength, in take() 537 + InputIter, in escaped() 538 <Input as InputIter>::Item: crate::traits::AsChar, in escaped() 639 + InputIter, in escaped_transform() 643 <Input as InputIter>::Item: crate::traits::AsChar, in escaped_transform()
|
D | complete.rs | 9 Compare, CompareResult, FindSubstring, FindToken, InputIter, InputLength, InputTake, 255 Input: InputTake + InputIter + InputLength + Slice<RangeFrom<usize>>, in take_while_m_n() 256 F: Fn(<Input as InputIter>::Item) -> bool, in take_while_m_n() 407 Input: InputIter + InputTake, in take() 521 + InputIter, in escaped() 522 <Input as InputIter>::Item: crate::traits::AsChar, in escaped() 635 + InputIter, in escaped_transform() 639 <Input as InputIter>::Item: crate::traits::AsChar, in escaped_transform()
|
/third_party/rust/crates/nom/src/bits/ |
D | complete.rs | 7 use crate::traits::{InputIter, InputLength, Slice, ToUsize}; 37 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in take() 90 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength + Clone, in tag() 125 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in bool()
|
D | streaming.rs | 7 use crate::traits::{InputIter, InputLength, Slice, ToUsize}; 14 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in take() 64 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength + Clone, in tag() 99 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in bool()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | raw_hash_set.h | 509 template <class InputIter> 510 size_t SelectBucketCountForIterRange(InputIter first, InputIter last, 516 typename std::iterator_traits<InputIter>::iterator_category; 882 template <class InputIter> 883 raw_hash_set(InputIter first, InputIter last, size_t bucket_count = 0, 891 template <class InputIter> 892 raw_hash_set(InputIter first, InputIter last, size_t bucket_count, 896 template <class InputIter> 897 raw_hash_set(InputIter first, InputIter last, size_t bucket_count, 901 template <class InputIter> [all …]
|
/third_party/rust/crates/nom/src/ |
D | traits.rs | 302 pub trait InputIter { trait 335 impl<'a> InputIter for &'a [u8] { impl 377 impl<'a> InputIter for &'a str { impl 498 impl<T: InputLength + InputIter + InputTake + Clone + UnspecializedInput> InputTakeAtPosition 501 type Item = <T as InputIter>::Item; 787 T: InputLength + InputIter<Item = u8> + InputTake + UnspecializedInput, 788 O: InputLength + InputIter<Item = u8> + InputTake, 1067 impl<'a> InputIter for &'a [u8; $N] { impl
|
/third_party/rust/crates/nom/doc/ |
D | custom_input_types.md | 31 | [InputIter](https://docs.rs/nom/latest/nom/trait.InputIter.html) |Common iteration operations on …
|
/third_party/vk-gl-cts/framework/opengl/ |
D | gluDrawUtil.cpp | 219 template<typename InputIter, typename OutputIter> 220 …oProgramLocations (const glw::Functions& gl, deUint32 program, InputIter first, InputIter end, Out… in namedBindingsToProgramLocations() 222 for (InputIter cur = first; cur != end; ++cur) in namedBindingsToProgramLocations()
|
/third_party/rust/crates/nom/src/combinator/ |
D | mod.rs | 16 use crate::traits::{AsChar, InputIter, InputLength, InputTakeAtPosition, ParseTo};
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 3374 template <typename InputIter> 3375 ElementsAreMatcherImpl(InputIter first, InputIter last) { 3618 template <typename InputIter> 3620 InputIter first, InputIter last)
|
/third_party/rust/crates/nom/ |
D | CHANGELOG.md | 618 - @target-san for simplifying the `InputIter` trait for `&[u8]` 703 - `InputIter::Item` for `&[u8]` is now a `u8` directly, not a reference 793 - @0xd34d10cc for trait fixes on `InputIter` 803 - `InputIter` does not require `AsChar` on its `Item` type anymore 943 …e that implement the traits defined in `src/traits.rs`: `InputLength`, `InputIter`, `InputTake`, `…
|