Searched refs:Sort (Results 1 - 25 of 76) sorted by relevance

1234

/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DSort.java24 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 Dsort.h42 int32_t Sort(void* data, uint32_t num_of_elements, Type data_type);
/external/lzma/CPP/7zip/UI/Common/
H A DSortUtils.cpp22 indices.Sort(CompareStrings, (void *)&strings);
H A DUpdatePair.cpp100 arcIndices.Sort(CompareArcItems, (void *)&arcItems);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
H A DSimpleOrthoGroupStrategy.java23 import com.badlogic.gdx.utils.Sort;
82 Sort.instance().sort(contents, comparator);
/external/skia/tools/lua/
H A Dngrams_aggregate.lua13 -- Sort the data.
/external/skia/tests/
H A DSortTest.cpp36 DEF_TEST(Sort, reporter) {
/external/v8/src/
H A Dlist-inl.h204 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 Dsmall-pointer-list.h49 void Sort() { function in class:v8::internal::SmallPointerList
51 list()->Sort(compare_value);
H A Dlist.h156 // 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 Dvector.h76 void Sort(CompareFunction cmp, size_t s, size_t l) {
81 void Sort(CompareFunction cmp) {
85 void Sort() {
/external/gemmlowp/profiling/
H A Dprofiler.h238 void Sort() { SortNode(&root_); } function in class:gemmlowp::ProfileTreeView
246 Sort();
/external/lzma/C/
H A DAndroid.mk36 Sort.c \
/external/lzma/CPP/7zip/UI/Console/
H A Dmakefile65 $O\Sort.obj \
/external/lzma/CPP/Common/
H A DMyVector.h334 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 Dinvalset.h135 // 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 Ddng_bad_pixels.h186 /// Sort the bad single pixels and bad rectangles by coordinates (top to
189 void Sort ();
/external/pdfium/xfa/include/fwl/basewidget/
H A Dfwl_listbox.h124 FWL_ERR* Sort(IFWL_ListBoxCompare* pCom);
/external/pdfium/xfa/include/fwl/lightwidget/
H A Dlistbox.h32 FWL_ERR* Sort(IFWL_ListBoxCompare* pCom);
/external/webrtc/webrtc/system_wrappers/test/TestSort/
H A DTestSort.cc144 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 Derr_data_generate.go130 sort.Sort(keySlice(st.entries))
/external/pdfium/xfa/src/fwl/src/lightwidget/
H A Dlistbox.cpp127 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 Dmakefile141 $O\Sort.obj \
/external/pdfium/xfa/src/fwl/src/basewidget/include/
H A Dfwl_listboximp.h40 virtual FWL_ERR* Sort(IFWL_ListBoxCompare* pCom);
/external/webrtc/webrtc/modules/video_processing/
H A Ddeflickering.cc138 webrtc::Sort(y_sorted, y_sub_size, webrtc::TYPE_UWord8);

Completed in 538 milliseconds

1234