/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
H A D | Sort.java | 24 public class Sort {
class 25 static private Sort instance;
60 /** Returns a Sort instance for convenience. Multiple threads must not use this instance at the same time. */
61 static public Sort instance () {
62 if (instance == null) instance = new Sort();
|
/external/webrtc/webrtc/system_wrappers/include/ |
H A D | sort.h | 42 int32_t Sort(void* data, uint32_t num_of_elements, Type data_type);
|
/external/lzma/CPP/7zip/UI/Common/ |
H A D | SortUtils.cpp | 22 indices.Sort(CompareStrings, (void *)&strings);
|
H A D | UpdatePair.cpp | 100 arcIndices.Sort(CompareArcItems, (void *)&arcItems);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/ |
H A D | SimpleOrthoGroupStrategy.java | 23 import com.badlogic.gdx.utils.Sort;
82 Sort.instance().sort(contents, comparator);
|
/external/skia/tools/lua/ |
H A D | ngrams_aggregate.lua | 13 -- Sort the data.
|
/external/skia/tests/ |
H A D | SortTest.cpp | 36 DEF_TEST(Sort, reporter) {
|
/external/v8/src/ |
H A D | list-inl.h | 204 void List<T, P>::Sort(CompareFunction cmp) { function in class:v8::internal::List 205 Sort(cmp, 0, length_); 211 void List<T, P>::Sort(CompareFunction cmp, size_t s, size_t l) { function in class:v8::internal::List 212 ToVector().Sort(cmp, s, l); 220 void List<T, P>::Sort() { function in class:v8::internal::List 221 ToVector().Sort();
|
H A D | small-pointer-list.h | 49 void Sort() { function in class:v8::internal::SmallPointerList 51 list()->Sort(compare_value);
|
H A D | list.h | 156 // Sort all list entries (using QuickSort) 158 void Sort(CompareFunction cmp, size_t start, size_t length); 160 void Sort(CompareFunction cmp); 161 void Sort();
|
H A D | vector.h | 76 void Sort(CompareFunction cmp, size_t s, size_t l) { 81 void Sort(CompareFunction cmp) { 85 void Sort() {
|
/external/gemmlowp/profiling/ |
H A D | profiler.h | 238 void Sort() { SortNode(&root_); } function in class:gemmlowp::ProfileTreeView 246 Sort();
|
/external/lzma/C/ |
H A D | Android.mk | 36 Sort.c \
|
/external/lzma/CPP/7zip/UI/Console/ |
H A D | makefile | 65 $O\Sort.obj \
|
/external/lzma/CPP/Common/ |
H A D | MyVector.h | 334 void Sort(int (*compare)(const T*, const T*, void *), void *param)
function in class:CRecordVector 604 void Sort(int (*compare)(void *const *, void *const *, void *), void *param)
function in class:CObjectVector 605 { _v.Sort(compare, param); }
610 void Sort() { _v.Sort(CompareObjectItems, 0); }
function in class:CObjectVector
|
/external/vixl/src/vixl/ |
H A D | invalset.h | 135 // Sort the elements. 144 void Sort(SortType sort_type); 333 Sort(kHardSort); 469 void InvalSet<TEMPLATE_INVALSET_P_DEF>::Sort(SortType sort_type) { 634 Sort(kHardSort); 664 inval_set->Sort(S::kSoftSort);
|
/external/dng_sdk/source/ |
H A D | dng_bad_pixels.h | 186 /// Sort the bad single pixels and bad rectangles by coordinates (top to 189 void Sort ();
|
/external/pdfium/xfa/include/fwl/basewidget/ |
H A D | fwl_listbox.h | 124 FWL_ERR* Sort(IFWL_ListBoxCompare* pCom);
|
/external/pdfium/xfa/include/fwl/lightwidget/ |
H A D | listbox.h | 32 FWL_ERR* Sort(IFWL_ListBoxCompare* pCom);
|
/external/webrtc/webrtc/system_wrappers/test/TestSort/ |
H A D | TestSort.cc | 144 printf("Running %s Sort() tests...\n", TypeEnumToString(sortType)); 174 retVal = webrtc::Sort(key, DataLength, sortType); 185 printf("Sort returned an error. "); 231 printf("Sort data differs from std::sort reference\nExiting...\n");
|
/external/boringssl/src/crypto/err/ |
H A D | err_data_generate.go | 130 sort.Sort(keySlice(st.entries))
|
/external/pdfium/xfa/src/fwl/src/lightwidget/ |
H A D | listbox.cpp | 127 FWL_ERR* CFWL_ListBox::Sort(IFWL_ListBoxCompare* pCom) {
function in class:CFWL_ListBox 128 return static_cast<IFWL_ListBox*>(m_pIface)->Sort(pCom);
|
/external/lzma/CPP/7zip/Bundles/Alone7z/ |
H A D | makefile | 141 $O\Sort.obj \
|
/external/pdfium/xfa/src/fwl/src/basewidget/include/ |
H A D | fwl_listboximp.h | 40 virtual FWL_ERR* Sort(IFWL_ListBoxCompare* pCom);
|
/external/webrtc/webrtc/modules/video_processing/ |
H A D | deflickering.cc | 138 webrtc::Sort(y_sorted, y_sub_size, webrtc::TYPE_UWord8);
|