HomeSort by relevance Sort by last modified time
    Searched refs:create_aggregate (Results 1 - 17 of 17) sorted by null

  /external/python/cpython2/Doc/includes/sqlite3/
mysumaggr.py 14 con.create_aggregate("mysum", 1, MySum)
  /external/python/cpython2/Lib/sqlite3/test/
userfunctions.py 280 self.con.create_aggregate("nostep", 1, AggrNoStep)
281 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
282 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
283 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
284 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
285 self.con.create_aggregate("checkType", 2, AggrCheckType)
286 self.con.create_aggregate("mysum", 1, AggrSum)
regression.py 258 self.assertRaises(TypeError, self.con.create_aggregate, var)
dbapi.py 802 con.create_aggregate("foo", 1, Agg)
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
userfunctions.py 275 self.con.create_aggregate("nostep", 1, AggrNoStep)
276 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
277 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
278 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
279 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
280 self.con.create_aggregate("checkType", 2, AggrCheckType)
281 self.con.create_aggregate("mysum", 1, AggrSum)
regression.py 256 self.assertRaises(TypeError, self.con.create_aggregate, var)
dbapi.py 800 con.create_aggregate("foo", 1, Agg)
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
userfunctions.py 275 self.con.create_aggregate("nostep", 1, AggrNoStep)
276 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
277 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
278 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
279 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
280 self.con.create_aggregate("checkType", 2, AggrCheckType)
281 self.con.create_aggregate("mysum", 1, AggrSum)
regression.py 256 self.assertRaises(TypeError, self.con.create_aggregate, var)
dbapi.py 800 con.create_aggregate("foo", 1, Agg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 275 self.con.create_aggregate("nostep", 1, AggrNoStep)
276 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
277 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
278 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
279 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
280 self.con.create_aggregate("checkType", 2, AggrCheckType)
281 self.con.create_aggregate("mysum", 1, AggrSum)
regression.py 256 self.assertRaises(TypeError, self.con.create_aggregate, var)
dbapi.py 800 con.create_aggregate("foo", 1, Agg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 275 self.con.create_aggregate("nostep", 1, AggrNoStep)
276 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
277 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
278 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
279 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
280 self.con.create_aggregate("checkType", 2, AggrCheckType)
281 self.con.create_aggregate("mysum", 1, AggrSum)
regression.py 256 self.assertRaises(TypeError, self.con.create_aggregate, var)
dbapi.py 800 con.create_aggregate("foo", 1, Agg)
  /external/javasqlite/src/main/java/SQLite/
Database.java 482 public void create_aggregate(String name, int nargs, Function f) { method in class:Database

Completed in 893 milliseconds