/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p11.cpp | 5 template<class T> void sort(Array<T>& v); 7 // explicit specialization for sort(Array<int>&) 9 template<> void sort(Array<int>&);
|
p6.cpp | 44 template<class T> void sort(Array<T>& v) { /* ... */ } function 50 sort(v); // expected-note{{required}} 52 // sort(Array<T>&), T is String 55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}} 56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
|
/external/chromium_org/webkit/data/test_shell/sort/ |
sort-heap.js | 3 function sort_heap(sort, end) { 5 var mid = Math.floor(sort.size/2 - 1); 6 sort.add_work(function() { build_heap(sort, mid); }, "build_heap"); 8 sort.swap(end, 0); 10 sort.add_work(function() { sort_heap(sort, end); }, "sort_heap"); 11 sort.add_work(function() { sift_down(sort, 0, end, 0); }, "sift_down"); 15 function build_heap(sort, start) [all...] |
sort-bubble.js | 1 // bubble sort 3 function sort_bubble(sort, x, y) { 7 var len = sort.bars.length; 9 if (sort.compare(x, y) < 0) { 10 sort.swap(x, y); 18 sort.add_work(function() { sort_bubble(sort, x, y); });
|
sort-insertion.js | 1 // insertion sort 3 function sort_insertion(sort, x, y) { 7 var len = sort.bars.length; 9 if (sort.compare(y, y - 1) < 0) { 10 sort.swap(y, y - 1); 21 sort.add_work(function () { sort_insertion(sort, x, y); });
|
sort-quick.js | 3 function sort_quick(sort, left, right) { 6 right = sort.size - 1; 11 partition(sort, left, right, pivot); 15 function partition(sort, left, right, pivot) { 16 sort.swap(pivot, right); 17 sort.add_work(function(){partition_step(sort, left, right, pivot, left, left);}); 20 function partition_step(sort, left, right, pivot, i, j) { 22 if (sort.compare(i, right) <= 0) { 23 sort.swap(i, j) [all...] |
/build/tools/ |
print_module_licenses.sh | 2 find . -name MODULE_LICENSE_\* | sed 's/\/MODULE_LICENSE_/\ /' | sed 's/\.\///' | awk '{ print $2 " " $1; }' | sort
|
/external/junit/src/org/junit/runner/manipulation/ |
Sortable.java | 15 public void sort(Sorter sorter); method in interface:Sortable
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
next_available_offset.sh | 36 sort -rn |\
|
/external/clang/test/CodeCompletion/ |
function-templates.cpp | 3 void sort(RandomAccessIterator first, RandomAccessIterator last); 15 std::sort(1, 2); 19 // CHECK-CC1: sort(<#RandomAccessIterator first#>, <#RandomAccessIterator last#>
|
/external/linux-tools-perf/util/ |
generate-cmdlist.sh | 15 sort |
|
/external/mesa3d/src/mapi/glapi/gen/ |
next_available_offset.sh | 36 sort -rn |\
|
/external/replicaisland/src/com/replica/replicaisland/ |
StandardSorter.java | 25 public void sort(Object[] array, int count, Comparator comparator) { method in class:StandardSorter 26 Arrays.sort(array, 0, count, comparator);
|
Sorter.java | 22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator); method in class:Sorter
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p6.cpp | 5 template<class T> void sort(Array<T>& v) { } function 7 // instantiate sort(Array<int>&) - template-argument deduced 8 template void sort<>(Array<int>&); 10 template void sort(Array<long>&);
|
/external/clang/utils/ |
find-unused-diagnostics.sh | 15 comm -23 <(sort -u <<< "$ALL_DIAGS") <(sort -u <<< "$DIAGS_IN_SOURCES")
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMStringList.cpp | 51 void DOMStringList::sort() function in class:WebCore::DOMStringList 53 std::sort(m_strings.begin(), m_strings.end(), WTF::codePointCompareLessThan);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
find-included-framework-headers | 29 find . \( -name '*.cpp' -o -name '*.h' -o -name '*.m' -o -name '*.mm' \) -exec grep "<$framework/" {} ';' | sed -e 's|.*/\(.*\.h\).*|\1|' | sort -u
|
/external/chromium_org/third_party/openssl/openssl/crypto/lhash/ |
num.pl | 13 @a=sort {$a <=> $b } keys %num;
|
/external/libvpx/libvpx/tools/ |
author_first_release.sh | 15 done | sort -k2 | uniq -f2
|
gen_authors.sh | 9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
|
/external/openssl/crypto/lhash/ |
num.pl | 13 @a=sort {$a <=> $b } keys %num;
|
/external/oprofile/libpp/ |
symbol_sort.h | 22 // order give sort order if caller doesn't specify one 39 * Sort the given container by the given criteria. 41 void sort(symbol_collection & syms, bool reverse_sort, 45 * Sort the given container by the given criteria. 47 void sort(diff_collection & syms, bool reverse_sort,
|
/external/wpa_supplicant_8/hostapd/logwatch/ |
hostapd | 41 foreach my $iface (sort keys %hostapd) { 43 foreach my $mac (sort keys %{$hostapd{$iface}}) { 45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) { 47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
|
/external/chromium_org/courgette/ |
analyze_mem_test | 21 | sort -n \ 62 | sort -nr \ 64 done | sort -k2 -n > "${metrics_tmp}" 84 | sort -nr \ 86 done | sort -k2 -n > "${metrics_bsdiff_tmp}"
|