Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_binop.py25 return isinstance(x, Rat)
27 class Rat(object): class
89 other = Rat(other)
91 return Rat(self.__num*other.__den + other.__num*self.__den,
102 other = Rat(other)
104 return Rat(self.__num*other.__den - other.__num*self.__den,
113 other = Rat(other)
115 return Rat(other.__num*self.__den - self.__num*other.__den,
124 return Rat(self.__num*other.__num, self.__den*other.__den)
126 return Rat(self.__num*other, self.__den)
[all …]
Dtest_long.py831 class Rat: class
873 if not isinstance(other, Rat):
874 other = Rat(other)
890 Rx = Rat(x)
892 Ry = Rat(y)
/external/icu/icu4c/source/data/locales/
Dlb.txt187 "Rat",
209 "Rat",
Dar_XB.txt34 "‮Rat‬",
Den.txt267 "Rat",
Dnl.txt466 "Rat",
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/fr-FR/
Dfr-FR_lexpos.utf3678 V_AUX_SG "sera-t-elle" "s@Rat'El(@)"
3679 V_AUX_SG "sera-t-il" "s@Rat'il"
/external/python/cpython2/Misc/
DHISTORY14101 - Demo/classes/Rat.py completely rewritten by Sjoerd Mullender.
15270 Complex.py and Rat.py show how to implement a numeric type without and
16481 demo/classes/Rat.py for a simple example.