HomeSort by relevance Sort by last modified time
    Searched refs:Sort (Results 1 - 25 of 44) sorted by null

1 2

  /external/webrtc/src/system_wrappers/interface/
sort.h 42 WebRtc_Word32 Sort(void* data, WebRtc_UWord32 numOfElements, Type dataType);
45 // key values which will be used to sort the data array. There must be a
52 // key [in] A pointer to an array of keys used to sort the
  /external/v8/src/
list.h 134 // Sort all list entries (using QuickSort)
135 void Sort(int (*cmp)(const T* x, const T* y));
136 void Sort();
list-inl.h 180 void List<T, P>::Sort(int (*cmp)(const T* x, const T* y)) {
181 ToVector().Sort(cmp);
190 void List<T, P>::Sort() {
191 Sort(PointerValueCompare<T>);
utils.h 347 void Sort(int (*cmp)(const T*, const T*)) {
355 void Sort() {
356 Sort(PointerValueCompare<T>);
heap-profiler.h 257 void SortRefs() { refs.Sort(JSObjectsCluster::Compare); }
liveobjectlist.h 181 void Sort();
bootstrapper.cc 382 descriptors->Sort();
529 descriptors->Sort();
    [all...]
liveobjectlist.cc 1013 // up in the GCEpilogue, while preserving the sort order of the lol.
1034 // NOTE: we sort the lol in increasing order. So, if an object has been
1059 void LiveObjectList::Sort() {
1062 elements_v.Sort(CompareElement);
1071 lol->Sort();
    [all...]
scopeinfo.cc 75 // sort them by context slot index before adding them to the
80 locals.Sort(&CompareLocal);