Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_binop.py26 return isinstance(x, Rat)
28 class Rat(object): class
84 other = Rat(other)
86 return Rat(self.__num*other.__den + other.__num*self.__den,
97 other = Rat(other)
99 return Rat(self.__num*other.__den - other.__num*self.__den,
108 other = Rat(other)
110 return Rat(other.__num*self.__den - self.__num*other.__den,
119 return Rat(self.__num*other.__num, self.__den*other.__den)
121 return Rat(self.__num*other, self.__den)
[all …]
Dtest_long.py541 class Rat: class
583 if not isinstance(other, Rat):
584 other = Rat(other)
611 Rx = Rat(x)
613 Ry = Rat(y)
/third_party/icu/icu4c/source/data/locales/
Dlb.txt198 "Rat",
220 "Rat",
Dar_XB.txt37 "؜‮Rat‬؜",
Dnl.txt2441 "Rat",
2455 "Rat",
2469 "Rat",
3734 "Rat",
3748 "Rat",
3762 "Rat",
Den.txt285 "Rat",
/third_party/skia/third_party/externals/icu/source/data/locales/
Dlb.txt188 "Rat",
210 "Rat",
Dnl.txt2409 "Rat",
2423 "Rat",
2437 "Rat",
3670 "Rat",
3684 "Rat",
3698 "Rat",
Den.txt285 "Rat",
/third_party/icu/icu4c/source/data/lang/
Dmi.txt348 slh{"Ratūti ki te Tonga"}
/third_party/python/Misc/
DHISTORY31480 - Demo/classes/Rat.py completely rewritten by Sjoerd Mullender.
32649 Complex.py and Rat.py show how to implement a numeric type without and
33860 demo/classes/Rat.py for a simple example.