Home
last modified time | relevance | path

Searched refs:create_function (Results 1 – 25 of 44) sorted by relevance

12

/external/python/cpython3/Lib/sqlite3/test/
Duserfunctions.py142 self.con.create_function("returntext", 0, func_returntext)
143 self.con.create_function("returntextwithnull", 0, func_returntextwithnull)
144 self.con.create_function("returnunicode", 0, func_returnunicode)
145 self.con.create_function("returnint", 0, func_returnint)
146 self.con.create_function("returnfloat", 0, func_returnfloat)
147 self.con.create_function("returnnull", 0, func_returnnull)
148 self.con.create_function("returnblob", 0, func_returnblob)
149 self.con.create_function("returnlonglong", 0, func_returnlonglong)
150 self.con.create_function("returnnan", 0, lambda: float("nan"))
151 self.con.create_function("returntoolargeint", 0, lambda: 1 << 65)
[all …]
/external/python/cpython2/Lib/sqlite3/test/
Duserfunctions.py129 self.con.create_function("returntext", 0, func_returntext)
130 self.con.create_function("returnunicode", 0, func_returnunicode)
131 self.con.create_function("returnint", 0, func_returnint)
132 self.con.create_function("returnfloat", 0, func_returnfloat)
133 self.con.create_function("returnnull", 0, func_returnnull)
134 self.con.create_function("returnblob", 0, func_returnblob)
135 self.con.create_function("returnlonglong", 0, func_returnlonglong)
136 self.con.create_function("raiseexception", 0, func_raiseexception)
138 self.con.create_function("isstring", 1, func_isstring)
139 self.con.create_function("isint", 1, func_isint)
[all …]
Dregression.py262 self.assertRaises(TypeError, self.con.create_function, var)
/external/tensorflow/tensorflow/core/util/
Dtensor_slice_reader_test.cc62 const TensorSliceWriter::CreateBuilderFunction& create_function, in SimpleFloatHelper() argument
76 TensorSliceWriter writer(fname, create_function); in SimpleFloatHelper()
98 TensorSliceWriter writer(fname, create_function); in SimpleFloatHelper()
186 const TensorSliceWriter::CreateBuilderFunction& create_function, in SimpleIntXHelper() argument
201 TensorSliceWriter writer(fname, create_function); in SimpleIntXHelper()
223 TensorSliceWriter writer(fname, create_function); in SimpleIntXHelper()
490 const TensorSliceWriter::CreateBuilderFunction& create_function, in CachedTensorSliceReaderTesterHelper() argument
504 TensorSliceWriter writer(fname, create_function); in CachedTensorSliceReaderTesterHelper()
526 TensorSliceWriter writer(fname, create_function); in CachedTensorSliceReaderTesterHelper()
/external/perfetto/src/trace_processor/prelude/functions/
DBUILD.gn22 "create_function.cc",
23 "create_function.h",
/external/python/cpython2/Doc/includes/sqlite3/
Dmd5func.py8 con.create_function("md5", 1, md5sum)
/external/python/cpython3/Doc/includes/sqlite3/
Dmd5func.py8 con.create_function("md5", 1, md5sum)
/external/ComputeLibrary/tests/framework/
DFramework.h362 using create_function = std::unique_ptr<Instrument>(); variable
363 std::map<InstrumentsDescription, create_function *> _available_instruments{};
/external/mesa3d/src/mapi/glapi/gen/
Dmarshal_XML.py33 def create_function(self, element, context): member in marshal_item_factory
Dgl_XML.py834 def create_function(self, element, context): member in gl_item_factory
910 func = self.factory.create_function( child, self )
DglX_XML.py35 def create_function(self, element, context): member in glx_item_factory
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dtoy.ml27 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/test/Bindings/OCaml/
Dpassmgr_builder.ml40 let func_passmgr = PassManager.create_function m in
Dscalar_opts.ml44 ignore (PassManager.create_function m
/external/tensorflow/tensorflow/c/
Dkernels.cc47 void* (*create_function)(TF_OpKernelConstruction*); member
60 result->create_function = create_func; in TF_NewKernelBuilder()
183 return new ::tensorflow::COpKernel(context, builder_->create_function, in Create()
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
411 #define sqlite3_create_function sqlite3_api->create_function
/external/sqlite/dist/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
431 #define sqlite3_create_function sqlite3_api->create_function
/external/sqlite/dist/orig/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
431 #define sqlite3_create_function sqlite3_api->create_function
/external/python/cpython2/Lib/test/
Dtest_weakref.py28 def create_function(): function
99 self.check_basic_ref(create_function)
114 self.check_basic_callback(create_function)
/external/javasqlite/src/main/java/SQLite/
DDatabase.java466 public void create_function(String name, int nargs, Function f) { in create_function() method in Database
/external/python/cpython3/Lib/test/
Dtest_weakref.py36 def create_function(): function
105 self.check_basic_ref(create_function)
119 self.check_basic_callback(create_function)
/external/mesa3d/src/compiler/glsl/
Dglsl_to_nir.cpp82 void create_function(ir_function_signature *ir);
688 visitor->create_function(sig); in visit_enter()
694 nir_visitor::create_function(ir_function_signature *ir) in create_function() function in nir_visitor

12