Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_pstats.py5 from pstats import SortKey
67 SortKey.TIME)
69 SortKey.TIME,
92 self.assertEqual(SortKey.FILENAME, 'filename')
93 self.assertNotEqual(SortKey.FILENAME, SortKey.CALLS)
/third_party/skia/experimental/sorttoy/
DSortKey.h15 class SortKey {
45 SortKey() : fKey((kMaxDepth - 1) << kMaterialShift) {} in SortKey() function
46 explicit SortKey(bool transparent, uint32_t depth, uint32_t material) { in SortKey() function
99 bool operator>(const SortKey& other) const { return fKey > other.fKey; }
100 bool operator<(const SortKey& other) const { return fKey < other.fKey; }
DCmds.h11 class SortKey; variable
29 virtual SortKey getKey() = 0;
52 SortKey getKey() override;
75 SortKey getKey() override;
102 SortKey getKey() override;
139 SortKey getKey() override;
DCmds.cpp17 SortKey SaveCmd::getKey() { in getKey()
31 SortKey RestoreCmd::getKey() { in getKey()
98 SortKey DrawCmd::getKey() { in getKey()
99 return SortKey(fPaint.isTransparent(), this->getSortZ(), fPaint.toID()); in getKey()
215 SortKey ClipCmd::getKey() { in getKey()
216 return SortKey(false, this->getSortZ(), kInvalidMat); in getKey()
Dsorttoy.cpp117 SortKey k; in key_test()
123 SortKey k1(false, 1, 3); in key_test()
129 SortKey k2(true, 2, 1); in key_test()
/third_party/skia/experimental/graphite/src/
DDrawPass.cpp75 class DrawPass::SortKey { class in skgpu::DrawPass
77 SortKey(const DrawList::Draw* draw, in SortKey() function in skgpu::DrawPass::SortKey
90 bool operator<(const SortKey& k) const { in operator <()
174 static_assert(sizeof(DrawPass::SortKey) == 16 + sizeof(void*)); in Make()
180 std::vector<SortKey> keys; in Make()
247 for (const SortKey& key : keys) { in Make()
DDrawPass.h76 class SortKey;
/third_party/python/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 …]
/third_party/python/Lib/
Dpstats.py36 class SortKey(str, Enum): class
257 if isinstance(word, SortKey):
/third_party/protobuf/src/google/protobuf/
Dwire_format.cc1144 static std::vector<MapKey> SortKey(const Message& message, in SortKey() function in google::protobuf::internal::MapKeySorter
1237 MapKeySorter::SortKey(message, message_reflection, field); in InternalSerializeField()
/third_party/skia/
DBUILD.gn2285 "experimental/sorttoy/SortKey.h",