| /third_party/boost/boost/algorithm/ |
| D | minmax_element.hpp | 20 * minmax_element(first, last) 21 * Effect: std::make_pair( std::min_element(first, last), 22 * std::max_element(first, last) ); 24 * minmax_element(first, last, comp) 25 * Effect: std::make_pair( std::min_element(first, last, comp), 26 * std::max_element(first, last, comp) ); 58 basic_minmax_element(ForwardIter first, ForwardIter last, Compare comp) in basic_minmax_element() argument 60 if (first == last) in basic_minmax_element() 63 ForwardIter min_result = first; in basic_minmax_element() 64 ForwardIter max_result = first; in basic_minmax_element() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Demangle/ |
| D | ItaniumDemangle.cpp | 40 static const char *parse_type(const char *first, const char *last, C &db); 42 static const char *parse_encoding(const char *first, const char *last, C &db); 44 static const char *parse_name(const char *first, const char *last, C &db, 47 static const char *parse_expression(const char *first, const char *last, C &db); 49 static const char *parse_template_args(const char *first, const char *last, 52 static const char *parse_operator_name(const char *first, const char *last, 55 static const char *parse_unqualified_name(const char *first, const char *last, 58 static const char *parse_decltype(const char *first, const char *last, C &db); 62 static const char *parse_number(const char *first, const char *last) { in parse_number() argument 63 if (first != last) { in parse_number() [all …]
|
| /third_party/vk-gl-cts/framework/common/ |
| D | tcuEither.hpp | 23 * \brief Template class that is either type of First or Second. 32 * \brief Object containing Either First or Second type of object 34 * \note Type First and Second are always aligned to same alignment as 36 * \note This type always uses at least sizeof(bool) + max(sizeof(First*), 39 template<typename First, typename Second> 43 Either (const First& first); 47 Either (const Either<First, Second>& other); 48 Either& operator= (const Either<First, Second>& other); 50 Either& operator= (const First& first); 56 const First& getFirst (void) const; [all …]
|
| /third_party/boost/libs/algorithm/minmax/test/ |
| D | minmax_element_test.cpp | 28 void do_shuffle(RandomIt first, RandomIt last) in do_shuffle() argument 29 { std::shuffle(first, last, gen); } in do_shuffle() 32 void do_shuffle(RandomIt first, RandomIt last) in do_shuffle() argument 33 { std::random_shuffle(first, last); } in do_shuffle() 76 void tie(std::pair<T1, T2> p, T3& first, T4& second) in tie() argument 78 first = T3(p.first); second = T4(p.second); in tie() 111 #define CHECK_EQUAL_ITERATORS( left, right, first ) \ argument 112 BOOST_CHECK_EQUAL( std::distance( first, left ), std::distance( first, right ) ) 115 void test_minmax(CIterator first, CIterator last, int n) in test_minmax() argument 123 RCIterator rfirst(last), rlast(first), rmin, rmax; in test_minmax() [all …]
|
| /third_party/glslang/Test/baseResults/ |
| D | stringToDouble.vert.out | 9 0:5 move second child to first child ( temp float) 14 0:6 move second child to first child ( temp float) 19 0:7 move second child to first child ( temp float) 24 0:8 move second child to first child ( temp float) 29 0:9 move second child to first child ( temp float) 34 0:10 move second child to first child ( temp double) 39 0:11 move second child to first child ( temp double) 44 0:12 move second child to first child ( temp double) 49 0:13 move second child to first child ( temp double) 54 0:14 move second child to first child ( temp double) [all …]
|
| D | numeral.frag.out | 25 0:5 move second child to first child ( temp int) 30 0:6 move second child to first child ( temp int) 35 0:7 move second child to first child ( temp int) 40 0:8 move second child to first child ( temp int) 45 0:9 move second child to first child ( temp int) 50 0:10 move second child to first child ( temp int) 55 0:11 move second child to first child ( temp int) 60 0:12 move second child to first child ( temp int) 65 0:13 move second child to first child ( temp int) 70 0:14 move second child to first child ( temp int) [all …]
|
| /third_party/boost/libs/hana/include/boost/hana/detail/ |
| D | algorithm.hpp | 32 constexpr void reverse(BidirIter first, BidirIter last) { in reverse() argument 33 while (first != last) { in reverse() 34 if (first == --last) in reverse() 36 detail::constexpr_swap(*first, *last); in reverse() 37 ++first; in reverse() 42 constexpr bool next_permutation(BidirIter first, BidirIter last, in next_permutation() argument 46 if (first == last || first == --i) in next_permutation() 58 if (i == first) { in next_permutation() 59 detail::reverse(first, last); in next_permutation() 66 constexpr bool next_permutation(BidirIter first, BidirIter last) in next_permutation() argument [all …]
|
| /third_party/boost/boost/hana/detail/ |
| D | algorithm.hpp | 32 constexpr void reverse(BidirIter first, BidirIter last) { in reverse() argument 33 while (first != last) { in reverse() 34 if (first == --last) in reverse() 36 detail::constexpr_swap(*first, *last); in reverse() 37 ++first; in reverse() 42 constexpr bool next_permutation(BidirIter first, BidirIter last, in next_permutation() argument 46 if (first == last || first == --i) in next_permutation() 58 if (i == first) { in next_permutation() 59 detail::reverse(first, last); in next_permutation() 66 constexpr bool next_permutation(BidirIter first, BidirIter last) in next_permutation() argument [all …]
|
| /third_party/boost/libs/stl_interfaces/test/ |
| D | random_access.cpp | 400 basic_random_access_iter first(ints.data()); in main() local 403 BOOST_TEST(*first == 0); in main() 404 BOOST_TEST(*(first + 1) == 1); in main() 405 BOOST_TEST(*(first + 2) == 2); in main() 406 BOOST_TEST(*(1 + first) == 1); in main() 407 BOOST_TEST(*(2 + first) == 2); in main() 409 BOOST_TEST(first[0] == 0); in main() 410 BOOST_TEST(first[1] == 1); in main() 411 BOOST_TEST(first[2] == 2); in main() 421 BOOST_TEST(last - first == 10); in main() [all …]
|
| D | bidirectional.cpp | 333 basic_bidirectional_iter first(ints.data()); in main() local 338 std::copy(first, last, ints_copy.begin()); in main() 346 std::make_reverse_iterator(first), in main() 354 basic_bidirectional_iter first(iota_ints.data()); in main() local 356 std::iota(first, last, 0); in main() 362 basic_bidirectional_iter first(iota_ints.data()); in main() local 366 std::make_reverse_iterator(first), in main() 375 basic_adapted_bidirectional_ptr_iter first(ints.data()); in main() local 380 std::copy(first, last, ints_copy.begin()); in main() 388 std::make_reverse_iterator(first), in main() [all …]
|
| /third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/ |
| D | bitfield.hpp | 93 /// The first bit is the first bit of x followed by the first bit of y. 100 /// The first bit is the first bit of x followed by the first bit of y. 107 /// The first bit is the first bit of x followed by the first bit of y. 114 /// The first bit is the first bit of x followed by the first bit of y. 121 /// The first bit is the first bit of x followed by the first bit of y. 128 /// The first bit is the first bit of x followed by the first bit of y. 135 /// The first bit is the first bit of x followed by the first bit of y and the first bit of z. 142 /// The first bit is the first bit of x followed by the first bit of y and the first bit of z. 149 /// The first bit is the first bit of x followed by the first bit of y and the first bit of z. 156 /// The first bit is the first bit of x followed by the first bit of y and the first bit of z. [all …]
|
| /third_party/boost/boost/move/algo/detail/ |
| D | merge_sort.hpp | 45 void inplace_stable_sort(RandIt first, RandIt last, Compare comp) in inplace_stable_sort() argument 48 if (size_type(last - first) <= size_type(MergeSortInsertionSortThreshold)) { in inplace_stable_sort() 49 insertion_sort(first, last, comp); in inplace_stable_sort() 52 RandIt middle = first + (last - first) / 2; in inplace_stable_sort() 53 inplace_stable_sort(first, middle, comp); in inplace_stable_sort() 56 (first, middle, last, size_type(middle - first), size_type(last - middle), comp); in inplace_stable_sort() 62 void merge_sort_copy( RandIt first, RandIt last in merge_sort_copy() argument 67 size_type const count = size_type(last - first); in merge_sort_copy() 69 insertion_sort_copy(first, last, dest, comp); in merge_sort_copy() 73 merge_sort_copy(first + half, last , dest+half , comp); in merge_sort_copy() [all …]
|
| D | merge.hpp | 50 void move_assign(RandIt first, size_type n) in move_assign() argument 53 boost::move(first, first+n, m_ptr); in move_assign() 61 RandRawIt result = boost::move(first, first+m_size, m_ptr); in move_assign() 62 boost::uninitialized_move(first+m_size, first+n, result); in move_assign() 68 void push_back(RandIt first, size_type n) in push_back() argument 71 boost::uninitialized_move(first, first+n, m_ptr+m_size); in push_back() 222 range_xbuf(Iterator first, Iterator last) in range_xbuf() argument 223 : m_first(first), m_last(first), m_cap(last) in range_xbuf() 227 void move_assign(RandIt first, size_type n) in move_assign() argument 230 m_last = Op()(forward_t(), first, first+n, m_first); in move_assign() [all …]
|
| /third_party/boost/boost/detail/ |
| D | binary_search.hpp | 37 ForwardIter lower_bound(ForwardIter first, ForwardIter last, in lower_bound() argument 42 typename traits::difference_type len = std::distance(first, last); in lower_bound() 48 middle = first; in lower_bound() 51 first = middle; in lower_bound() 52 ++first; in lower_bound() 58 return first; in lower_bound() 62 ForwardIter lower_bound(ForwardIter first, ForwardIter last, in lower_bound() argument 67 typename traits::difference_type len = std::distance(first, last); in lower_bound() 73 middle = first; in lower_bound() 76 first = middle; in lower_bound() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | classCanExtendConstructorFunction.symbols | 1 === tests/cases/conformance/salsa/first.js === 7 >Wagon : Symbol(Wagon, Decl(first.js, 0, 0), Decl(first.js, 6, 1)) 8 >numberOxen : Symbol(numberOxen, Decl(first.js, 4, 15)) 11 >this.numberOxen : Symbol(Wagon.numberOxen, Decl(first.js, 4, 28)) 12 >this : Symbol(Wagon, Decl(first.js, 0, 0), Decl(first.js, 6, 1)) 13 >numberOxen : Symbol(Wagon.numberOxen, Decl(first.js, 4, 28)) 14 >numberOxen : Symbol(numberOxen, Decl(first.js, 4, 15)) 18 >Wagon.circle : Symbol(Wagon.circle, Decl(first.js, 6, 1)) 19 >Wagon : Symbol(Wagon, Decl(first.js, 0, 0), Decl(first.js, 6, 1)) 20 >circle : Symbol(Wagon.circle, Decl(first.js, 6, 1)) [all …]
|
| D | enumAssignmentCompat3.types | 2 namespace First { 3 >First : typeof First 132 var abc: First.E; 133 >abc : First.E 134 >First : any 174 >abc : First.E 179 >abc : First.E 184 >abc : First.E 189 >abc : First.E 194 >abc : First.E [all …]
|
| /third_party/boost/boost/geometry/index/detail/rtree/node/ |
| D | pairs.hpp | 20 template <typename First, typename Pointer> 24 typedef First first_type; 26 ptr_pair(First const& f, Pointer s) : first(f), second(s) {} in ptr_pair() 27 //ptr_pair(ptr_pair const& p) : first(p.first), second(p.second) {} 28 //ptr_pair & operator=(ptr_pair const& p) { first = p.first; second = p.second; return *this; } 30 first_type first; member in boost::geometry::index::detail::rtree::ptr_pair 34 template <typename First, typename Pointer> inline 35 ptr_pair<First, Pointer> 36 make_ptr_pair(First const& f, Pointer s) in make_ptr_pair() 38 return ptr_pair<First, Pointer>(f, s); in make_ptr_pair() [all …]
|
| /third_party/boost/boost/graph/distributed/adjlist/ |
| D | initialize.hpp | 23 initialize(EdgeIterator first, EdgeIterator last, in initialize() argument 28 while (first != last) { in initialize() 29 if ((process_id_type)distribution(first->first) == id) { in initialize() 30 vertex_descriptor source(id, distribution.local(first->first)); in initialize() 31 vertex_descriptor target(distribution(first->second), in initialize() 32 distribution.local(first->second)); in initialize() 35 ++first; in initialize() 45 initialize(EdgeIterator first, EdgeIterator last, in initialize() argument 51 while (first != last) { in initialize() 52 if (static_cast<process_id_type>(distribution(first->first)) == id) { in initialize() [all …]
|
| /third_party/mesa3d/src/broadcom/ci/ |
| D | vc4-rpi3-fails.txt | 455 …nd(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: center bottom PV: FIRST,Fail 456 …nd(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: center middle PV: FIRST,Fail 457 …n/End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: center top PV: FIRST,Fail 458 …/End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: left bottom PV: FIRST,Fail 459 …/End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: left middle PV: FIRST,Fail 460 …gin/End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: left top PV: FIRST,Fail 461 …End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: right bottom PV: FIRST,Fail 462 …End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: right middle PV: FIRST,Fail 463 …in/End(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_FILL)- quadrant: right top PV: FIRST,Fail 464 …nd(GL_POLYGON)- glFrontFace(GL_CCW)- glPolygonMode(GL_LINE)- quadrant: center bottom PV: FIRST,Fail [all …]
|
| /third_party/e2fsprogs/lib/ext2fs/ |
| D | tst_bitmaps_exp | 43 First unmarked block is 11 47 First unmarked block is 17 53 First marked block is 12 59 First marked block is 12 63 First marked block is 12 67 First unmarked block is 13 69 First marked block is 14 111 First unmarked inode is 1 115 First unmarked inode is 6 121 First marked inode is 2 [all …]
|
| /third_party/boost/boost/polygon/detail/ |
| D | property_merge.hpp | 79 …element.first = property_merge_point<coordinate_type>((*input_begin).second.first, (*input_begin).… in populate_property_merge_data() 81 …element.first = property_merge_point<coordinate_type>((*input_begin).first, (*input_begin).second.… in populate_property_merge_data() 82 element.second.first = property; in populate_property_merge_data() 122 currentVertex.first = data[i].first; in perform_merge() 125 if(data[i].first != currentVertex.first) { in perform_merge() 126 if(data[i].first.x() != currentVertex.first.x()) { in perform_merge() 130 writeOutput(currentVertex.first.x(), result, output); in perform_merge() 133 currentVertex.first = data[i].first; in perform_merge() 139 currentVertex.first = data[i].first; in perform_merge() 147 writeOutput(currentVertex.first.x(), result, output); in perform_merge() [all …]
|
| /third_party/boost/boost/fusion/algorithm/transformation/ |
| D | erase.hpp | 27 template <typename Sequence, typename First> 31 typedef typename convert_iterator<First>::type first_type; 42 call(First const& first, mpl::false_) in call() 44 return fusion::next(convert_iterator<First>::call(first)); in call() 49 call(First const& first, mpl::true_) in call() 51 return convert_iterator<First>::call(first); in call() 56 call(First const& first) in call() 58 return call(first, result_of::equal_to<first_type, seq_last_type>()); in call() 76 , typename First 84 typedef First FirstType; [all …]
|
| /third_party/flutter/skia/third_party/externals/freetype/src/cache/ |
| D | ftcmru.c | 32 FTC_MruNode first = *plist; in FTC_MruNode_Prepend() local 35 if ( first ) in FTC_MruNode_Prepend() 37 FTC_MruNode last = first->prev; in FTC_MruNode_Prepend() 42 FTC_MruNode cnode = first; in FTC_MruNode_Prepend() 54 } while ( cnode != first ); in FTC_MruNode_Prepend() 58 first->prev = node; in FTC_MruNode_Prepend() 60 node->next = first; in FTC_MruNode_Prepend() 76 FTC_MruNode first = *plist; in FTC_MruNode_Up() local 79 FT_ASSERT( first ); in FTC_MruNode_Up() 81 if ( first != node ) in FTC_MruNode_Up() [all …]
|
| /third_party/boost/libs/iostreams/test/ |
| D | read_input_filter_test.hpp | 31 filtering_istream first; in read_input_filter_test() local 32 first.push(toupper_filter()); in read_input_filter_test() 33 first.push(file_source(test.name())); in read_input_filter_test() 36 compare_streams_in_chars(first, second), in read_input_filter_test() 43 filtering_istream first; in read_input_filter_test() local 44 first.push(toupper_filter()); in read_input_filter_test() 45 first.push(file_source(test.name())); in read_input_filter_test() 48 compare_streams_in_chunks(first, second), in read_input_filter_test() 55 filtering_istream first; in read_input_filter_test() local 56 first.push(toupper_multichar_filter(), 0); in read_input_filter_test() [all …]
|
| /third_party/boost/boost/bimap/relation/ |
| D | structured_pair.hpp | 67 first_type first; member in boost::bimaps::relation::detail::normal_storage 77 : first(f), second(s) {} in normal_storage() 79 BOOST_DEDUCED_TYPENAME base_:: left_value_type & get_left() { return first; } in get_left() 80 const BOOST_DEDUCED_TYPENAME base_:: left_value_type & get_left()const { return first; } in get_left() 105 first_type first; member in boost::bimaps::relation::detail::mirror_storage 112 : second(s), first(f) {} in mirror_storage() 116 BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right() { return first; } in get_right() 117 const BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right()const { return first; } in get_right() 192 base_(p.first,p.second), in pair_info_hook() 198 base_::first = p.first ; in change_to() [all …]
|