Home
last modified time | relevance | path

Searched refs:stable_sort (Results 1 – 13 of 13) sorted by relevance

/external/stlport/test/unit/
Dsort_test.cpp57 stable_sort(numbers, numbers + 6); in stblsrt1()
67 stable_sort(letters, letters + 6, string_less); in stblsrt1()
102 stable_sort(datas, datas + 7); in stblsrt2()
209 stable_sort(numbers, numbers + sizeof(numbers) / sizeof(numbers[0]), less_equal<int>()); in bad_predicate_detected()
/external/webkit/WebCore/platform/graphics/
DGradient.cpp114 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops); in sortStopsIfNecessary()
132 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops); in getColor()
/external/stlport/test/eh/
Dtest_algo.cpp188 EH_STD::stable_sort( buf.begin(), buf.end() ); in operator ()()
205 EH_STD::stable_sort( buf.begin(), buf.end(), EH_STD::less<SortClass>() ); in operator ()()
/external/webkit/WebCore/platform/graphics/wince/
DGradientWince.cpp41 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops); in getStops()
/external/webkit/WebCore/css/
DCSSGradientValue.cpp134 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops); in sortStopsIfNeeded()
DCSSFontSelector.cpp528 std::stable_sort(candidateFontFaces.begin(), candidateFontFaces.end(), compareFontFaces); in getFontData()
/external/webkit/WebCore/platform/graphics/skia/
DGradientSkia.cpp127 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops); in platformGradient()
/external/stlport/etc/
DReleaseNote.txt134 * Improvment of some algorithm like search_n or stable_sort.
DChangeLog-5.12151 * test/unit/sort_test.cpp: Add a check that stable_sort is really
/external/stlport/stlport/stl/
D_algo.h424 void stable_sort(_RandomAccessIter __first,
428 void stable_sort(_RandomAccessIter __first,
D_algo.c1197 void stable_sort(_RandomAccessIter __first, in stable_sort() function
1207 void stable_sort(_RandomAccessIter __first, in stable_sort() function
/external/webkit/WebCore/rendering/
DRenderLayer.cpp3230 std::stable_sort(m_posZOrderList->begin(), m_posZOrderList->end(), compareZIndex); in updateZOrderLists()
3233 std::stable_sort(m_negZOrderList->begin(), m_negZOrderList->end(), compareZIndex); in updateZOrderLists()
/external/webkit/WebCore/
DChangeLog-2007-10-1420014 Use std::stable_sort() instead of qsort() to sort gradient stops.