Searched refs:roundFunc (Results 1 – 7 of 7) sorted by relevance
/external/fonttools/Lib/fontTools/pens/ |
D | roundingPen.py | 31 def __init__(self, outPen, roundFunc=otRound): argument 33 self.roundFunc = roundFunc 36 self._outPen.moveTo((self.roundFunc(pt[0]), self.roundFunc(pt[1]))) 39 self._outPen.lineTo((self.roundFunc(pt[0]), self.roundFunc(pt[1]))) 43 *((self.roundFunc(x), self.roundFunc(y)) for x, y in points) 48 *((self.roundFunc(x), self.roundFunc(y)) for x, y in points) 56 self.roundFunc(transformation[4]), 57 self.roundFunc(transformation[5]), 90 def __init__(self, outPen, roundFunc=otRound): argument 92 self.roundFunc = roundFunc [all …]
|
D | t2CharStringPen.py | 4 from fontTools.misc.roundTools import otRound, roundFunc 23 self.round = roundFunc(roundTolerance)
|
/external/fonttools/Lib/fontTools/misc/ |
D | roundTools.py | 48 def roundFunc(tolerance, round=otRound): function
|
/external/fonttools/Lib/fontTools/varLib/ |
D | cff.py | 20 from fontTools.misc.roundTools import roundFunc 515 self.round = roundFunc(roundTolerance, round=round)
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 117444 static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ 119027 FUNCTION(round, 1, 0, 0, roundFunc ), 119028 FUNCTION(round, 2, 0, 0, roundFunc ),
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 117125 static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ 118708 FUNCTION(round, 1, 0, 0, roundFunc ), 118709 FUNCTION(round, 2, 0, 0, roundFunc ),
|
/external/sqlite/dist/ |
D | sqlite3.c | 117141 static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ 118724 FUNCTION(round, 1, 0, 0, roundFunc ), 118725 FUNCTION(round, 2, 0, 0, roundFunc ),
|