Searched refs:MyIndex (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceTimerTree.cpp | 92 TTindex MyIndex = findPath(MyPath); in mergeFrom() local 93 Nodes[MyIndex].Time += SrcNode.Time; in mergeFrom() 94 Nodes[MyIndex].UpdateCount += SrcNode.UpdateCount; in mergeFrom()
|
/external/python/cpython3/Lib/test/ |
D | test_complex.py | 370 class MyIndex: class 376 self.assertAlmostEqual(complex(MyIndex(42)), 42.0+0.0j) 377 self.assertAlmostEqual(complex(123, MyIndex(42)), 123.0+42.0j) 378 self.assertRaises(OverflowError, complex, MyIndex(2**2000)) 379 self.assertRaises(OverflowError, complex, 123, MyIndex(2**2000))
|
D | test_int.py | 430 class MyIndex(int): class 438 my_int = MyIndex(7)
|
D | test_float.py | 226 class MyIndex: class 232 self.assertEqual(float(MyIndex(42)), 42.0) 233 self.assertRaises(OverflowError, float, MyIndex(2**2000))
|
/external/llvm-project/clang/lib/Basic/ |
D | DiagnosticIDs.cpp | 129 size_t MyIndex = this - &StaticDiagInfo[0]; in getDescription() local 130 uint32_t StringOffset = StaticDiagInfoDescriptionOffsets[MyIndex]; in getDescription()
|
/external/python/cpython2/Lib/test/ |
D | test_float.py | 754 class MyIndex(object): class 756 self.assertAlmostEqual(round(-0.123456, MyIndex()), -0.1235)
|