Home
last modified time | relevance | path

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

12345

/aosp_15_r20/external/python/cpython3/Lib/test/test_sqlite3/
Dtest_userfunctions.py189 self.con.create_function("returntext", 0, func_returntext)
190 self.con.create_function("returntextwithnull", 0, func_returntextwithnull)
191 self.con.create_function("returnunicode", 0, func_returnunicode)
192 self.con.create_function("returnint", 0, func_returnint)
193 self.con.create_function("returnfloat", 0, func_returnfloat)
194 self.con.create_function("returnnull", 0, func_returnnull)
195 self.con.create_function("returnblob", 0, func_returnblob)
196 self.con.create_function("returnlonglong", 0, func_returnlonglong)
197 self.con.create_function("returnnan", 0, lambda: float("nan"))
198 self.con.create_function("returntoolargeint", 0, lambda: 1 << 65)
[all …]
Dtest_regression.py455 con.create_function("dup", 1, dup)
468 con.create_function("step", 1, lambda x: steps.append((x,)))
/aosp_15_r20/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 …]
/aosp_15_r20/external/tensorflow/tensorflow/core/util/
H A 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()
/aosp_15_r20/system/nvram/core/tests/
H A Dgtest_stubs.h101 CreateTestInstanceFunction* create_function) in TestDeclarationBase()
102 : name(name), create_function(create_function) { in TestDeclarationBase()
107 CreateTestInstanceFunction* create_function; member
H A Dgtest_stubs.cpp29 TestInstanceBase* instance = decl->create_function(); in RunAllTests()
/aosp_15_r20/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/functions/
H A DBUILD.gn27 "create_function.cc",
28 "create_function.h",
/aosp_15_r20/external/ComputeLibrary/tests/framework/
H A DFramework.h362 using create_function = std::unique_ptr<Instrument>(); variable
363 std::map<InstrumentsDescription, create_function *> _available_instruments{};
/aosp_15_r20/external/python/cpython2/Doc/includes/sqlite3/
Dmd5func.py8 con.create_function("md5", 1, md5sum)
/aosp_15_r20/external/tensorflow/tensorflow/c/
H A 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()
/aosp_15_r20/external/pytorch/torch/csrc/jit/python/
H A Dscript_init.cpp483 module._ivalue()->compilation_unit()->create_function(name, graph); in addFunctionToModule()
1172 auto fn = self._ivalue()->compilation_unit()->create_function( in initJitScriptBindings()
1214 auto fn = self._ivalue()->compilation_unit()->create_function( in initJitScriptBindings()
1411 Function* fn = self->create_function( in initJitScriptBindings()
1664 auto result = cu->create_function( in initJitScriptBindings()
1701 auto result = cu->create_function( in initJitScriptBindings()
2046 auto fn = cu->create_function(std::move(name), std::move(graph)); in initJitScriptBindings()
/aosp_15_r20/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/aosp_15_r20/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/aosp_15_r20/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/aosp_15_r20/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoy.ml27 let the_fpm = PassManager.create_function Codegen.the_module in
/aosp_15_r20/external/pytorch/torchgen/dest/
H A Dlazy_ir.py191 def create_function(self, schema: LazyIrSchema, node_ctor_args: str) -> str: member in GenLazyIR
358 def create_function(self, schema: LazyIrSchema, node_ctor_args: str) -> str: member in GenTSLazyIR
/aosp_15_r20/external/mesa3d/src/amd/vulkan/
H A Dradv_nir_to_llvm.c98 create_function(struct radv_shader_context *ctx, gl_shader_stage stage, bool has_previous_stage) in create_function() function
282 create_function(&ctx, shaders[shader_count - 1]->info.stage, shader_count >= 2); in ac_translate_nir_to_llvm()
/aosp_15_r20/external/llvm/test/Bindings/OCaml/
H A Dpassmgr_builder.ml40 let func_passmgr = PassManager.create_function m in
H A Dscalar_opts.ml44 ignore (PassManager.create_function m
/aosp_15_r20/external/pytorch/test/jit/
H A Dtest_python_bindings.py33 cu.create_function("test_fn", fn.graph)
/aosp_15_r20/prebuilts/vndk/v30/x86/include/external/sqlite/dist/orig/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
396 #define sqlite3_create_function sqlite3_api->create_function
/aosp_15_r20/prebuilts/vndk/v33/x86/include/external/sqlite/dist/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
409 #define sqlite3_create_function sqlite3_api->create_function
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/external/sqlite/dist/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
409 #define sqlite3_create_function sqlite3_api->create_function
/aosp_15_r20/prebuilts/vndk/v32/arm/include/external/sqlite/dist/orig/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
409 #define sqlite3_create_function sqlite3_api->create_function
/aosp_15_r20/prebuilts/vndk/v31/x86/include/external/sqlite/dist/orig/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
409 #define sqlite3_create_function sqlite3_api->create_function

12345