Home
last modified time | relevance | path

Searched defs:Less (Results 1 – 25 of 115) sorted by relevance

12345

/prebuilts/go/linux-x86/src/sort/
Dsort.go33 Less(i, j int) bool methodSpec
81 Less func(i, j int) bool member
92 func (r reverse) Less(i, j int) bool { func
121 func (x IntSlice) Less(i, j int) bool { return x[i] < x[j] } func
139 func (x Float64Slice) Less(i, j int) bool { return x[i] < x[j] || (isNaN(x[i]) && !isNaN(x[j])) } func
154 func (x StringSlice) Less(i, j int) bool { return x[i] < x[j] } func
Dexample_wrapper_test.go30 func (s ByName) Less(i, j int) bool { return s.Organs[i].Name < s.Organs[j].Name } func
36 func (s ByWeight) Less(i, j int) bool { return s.Organs[i].Weight < s.Organs[j].Weight } func
Dexample_interface_test.go27 func (a ByAge) Less(i, j int) bool { return a[i].Age < a[j].Age } func
Dsort_test.go179 func (t *nonDeterministicTestingData) Less(i, j int) bool { func
406 func (d *testingData) Less(i, j int) bool { func
548 func (d *adversaryTestingData) Less(i, j int) bool { func
615 func (d intPairs) Less(i, j int) bool { return d[i].a < d[j].a } func
/prebuilts/go/linux-x86/src/cmd/compile/internal/types/
Dsort.go12 func (x MethodsByName) Less(i, j int) bool { return x[i].Sym.Less(x[j].Sym) } func
19 func (x EmbeddedsByName) Less(i, j int) bool { return x[i].Type.Sym().Less(x[j].Type.Sym()) } func
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
Dcse.go334 func (sv sortvalues) Less(i, j int) bool { func
352 func (sv partitionByDom) Less(i, j int) bool { func
365 func (sv partitionByArgClass) Less(i, j int) bool { func
Dschedule.go49 func (h ValHeap) Less(i, j int) bool { func
575 func (s bySourcePos) Less(i, j int) bool { return s[i].Pos.Before(s[j].Pos) } func
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/cover/
Dprofile.go38 func (p byFileName) Less(i, j int) bool { return p[i].FileName < p[j].FileName } func
189 func (b blocksByStart) Less(i, j int) bool { func
259 func (b boundariesByPos) Less(i, j int) bool { func
/prebuilts/go/linux-x86/src/net/rpc/
Ddebug.go61 func (s serviceArray) Less(i, j int) bool { return s[i].Name < s[j].Name } func
65 func (m methodArray) Less(i, j int) bool { return m[i].Name < m[j].Name } func
/prebuilts/go/linux-x86/test/fixedbugs/
Dbug151.go13 func (v S) Less(e Empty) bool { func
/prebuilts/go/linux-x86/src/cmd/compile/internal/test/testdata/
Dptrsort.go16 func (a *MyString) Less(b *MyString) bool { func
/prebuilts/go/linux-x86/src/cmd/compile/internal/dwarfgen/
Dscope.go108 func (v varsByScopeAndOffset) Less(i, j int) bool { func
129 func (v varsByScope) Less(i, j int) bool { func
/prebuilts/go/linux-x86/src/cmp/
Dcmp.go28 func Less[T Ordered](x, y T) bool { func
/prebuilts/go/linux-x86/src/cmd/compile/internal/test/testdata/mysort/
Dmysort.go31 func (a *MyInt) Less(b *MyInt) bool { func
/prebuilts/go/linux-x86/src/container/heap/
Dexample_intheap_test.go17 func (h IntHeap) Less(i, j int) bool { return h[i] < h[j] } func
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/text/internal/
Dinternal.go30 func (s sorter) Less(i, j int) bool { func
/prebuilts/go/linux-x86/src/cmd/link/internal/ld/
Dtypelink.go21 func (s byTypeStr) Less(i, j int) bool { return s[i].TypeStr < s[j].TypeStr } func
/prebuilts/go/linux-x86/src/runtime/pprof/
Dlabel_test.go28 func (s labelSorter) Less(i, j int) bool { return s[i].key < s[j].key } func
/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Basic/
DThunk.h62 bool Less(const VirtualAdjustment &RHS) const { in Less() function
129 bool Less(const VirtualAdjustment &RHS) const { in Less() function
/prebuilts/go/linux-x86/src/cmd/fix/
Dfix.go28 func (f byName) Less(i, j int) bool { return f[i].name < f[j].name } func
35 func (f byDate) Less(i, j int) bool { return f[i].date < f[j].date } func
/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Basic/
DThunk.h62 bool Less(const VirtualAdjustment &RHS) const { in Less() function
129 bool Less(const VirtualAdjustment &RHS) const { in Less() function
/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Basic/
DThunk.h62 bool Less(const VirtualAdjustment &RHS) const { in Less() function
129 bool Less(const VirtualAdjustment &RHS) const { in Less() function
/prebuilts/clang/host/linux-x86/clang-r547379/include/clang/Basic/
DThunk.h63 bool Less(const VirtualAdjustment &RHS) const { in Less() function
130 bool Less(const VirtualAdjustment &RHS) const { in Less() function
/prebuilts/go/linux-x86/src/compress/flate/
Dhuffman_code.go319 func (s byLiteral) Less(i, j int) bool { func
334 func (s byFreq) Less(i, j int) bool { func
/prebuilts/go/linux-x86/src/cmd/compile/internal/importer/
Dgcimporter.go253 func (a byPath) Less(i, j int) bool { return a[i].Path() < a[j].Path() } func

12345