Home
last modified time | relevance | path

Searched refs:SortKey (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lld/lib/ReaderWriter/MachO/
DLayoutPass.h34 struct SortKey { struct
35 SortKey(OwningAtomPtr<DefinedAtom> &&atom, in SortKey() function
44 SortKey(SortKey &&key) : _atom(std::move(key._atom)), _root(key._root), in SortKey() argument
49 SortKey &operator=(SortKey &&key) {
58 SortKey(const SortKey &) = delete;
59 void operator=(const SortKey&) = delete; argument
106 std::vector<SortKey> decorate(File::AtomRange<DefinedAtom> &atomRange) const;
109 std::vector<SortKey> &keys) const;
DLayoutPass.cpp28 static bool compareAtoms(const LayoutPass::SortKey &,
29 const LayoutPass::SortKey &,
42 static void checkTransitivity(std::vector<LayoutPass::SortKey> &vec, in checkTransitivity()
175 static bool compareAtomsSub(const LayoutPass::SortKey &lc, in compareAtomsSub()
176 const LayoutPass::SortKey &rc, in compareAtomsSub()
249 static bool compareAtoms(const LayoutPass::SortKey &lc, in compareAtoms()
250 const LayoutPass::SortKey &rc, in compareAtoms()
422 std::vector<LayoutPass::SortKey>
424 std::vector<SortKey> ret; in decorate()
430 ret.push_back(SortKey(std::move(atom), root, override)); in decorate()
[all …]
/external/python/cpython3/Lib/test/
Dtest_pstats.py5 from pstats import SortKey
65 for member in SortKey:
74 SortKey.TIME)
76 SortKey.TIME,
99 self.assertEqual(SortKey.FILENAME, 'filename')
100 self.assertNotEqual(SortKey.FILENAME, SortKey.CALLS)
/external/python/cpython3/Doc/library/
Dprofile.rst145 from pstats import SortKey
155 p.sort_stats(SortKey.NAME)
162 p.sort_stats(SortKey.CUMULATIVE).print_stats(10)
171 p.sort_stats(SortKey.TIME).print_stats(10)
178 p.sort_stats(SortKey.FILENAME).print_stats('__init__')
184 p.sort_stats(SortKey.TIME, SortKey.CUMULATIVE).print_stats(.5, 'init')
257 from pstats import SortKey
263 sortby = SortKey.CUMULATIVE
388 the supplied criteria. The argument can be either a string or a SortKey
390 ``SortKey.TIME`` or ``SortKey.NAME``). The SortKey enums argument have
[all …]
/external/python/cpython3/Lib/
Dpstats.py36 class SortKey(str, Enum): class
257 if isinstance(word, SortKey):
/external/protobuf/src/google/protobuf/
Dwire_format.cc812 static std::vector<MapKey> SortKey(const Message& message, in SortKey() function in google::protobuf::internal::MapKeySorter
902 MapKeySorter::SortKey(message, message_reflection, field); in SerializeFieldWithCachedSizes()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_parser_test.cc1262 "SortKey", in CreateTestCases()