Searched refs:SortKey (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | LayoutPass.h | 34 struct SortKey { struct 35 SortKey(OwningAtomPtr<DefinedAtom> &&atom, in SortKey() argument 44 SortKey(SortKey &&key) : _atom(std::move(key._atom)), _root(key._root), in SortKey() function 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;
|
D | LayoutPass.cpp | 28 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/ |
D | test_pstats.py | 5 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/ |
D | profile.rst | 145 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/ |
D | pstats.py | 36 class SortKey(str, Enum): class 257 if isinstance(word, SortKey):
|
/external/protobuf/src/google/protobuf/ |
D | wire_format.cc | 812 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/ |
D | hlo_parser_test.cc | 1262 "SortKey", in CreateTestCases()
|