Home
last modified time | relevance | path

Searched refs:script_obj (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/python/cpython2/Modules/_sqlite/
Dcursor.c781 PyObject* script_obj; in pysqlite_cursor_executescript() local
788 if (!PyArg_ParseTuple(args, "O", &script_obj)) { in pysqlite_cursor_executescript()
798 if (PyString_Check(script_obj)) { in pysqlite_cursor_executescript()
799 script_cstr = PyString_AsString(script_obj); in pysqlite_cursor_executescript()
800 } else if (PyUnicode_Check(script_obj)) { in pysqlite_cursor_executescript()
801 script_str = PyUnicode_AsUTF8String(script_obj); in pysqlite_cursor_executescript()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Interpreter/Interfaces/
DScriptedPlatformInterface.h25 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedThreadInterface.h26 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedProcessInterface.h27 StructuredData::Generic *script_obj = nullptr) = 0;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Interpreter/Interfaces/
DScriptedPlatformInterface.h25 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedThreadInterface.h26 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedProcessInterface.h27 StructuredData::Generic *script_obj = nullptr) = 0;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Interpreter/Interfaces/
DScriptedPlatformInterface.h25 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedThreadInterface.h26 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedProcessInterface.h27 StructuredData::Generic *script_obj = nullptr) = 0;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Interpreter/Interfaces/
DScriptedPlatformInterface.h25 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedThreadInterface.h26 StructuredData::Generic *script_obj = nullptr) = 0;
DScriptedProcessInterface.h27 StructuredData::Generic *script_obj = nullptr) = 0;
/aosp_15_r20/external/pytorch/torch/csrc/jit/python/
H A Dpybind_utils.cpp402 if (auto script_obj = as_object(object)) { in toIValue() local
403 return script_obj.value()._ivalue(); in toIValue()
H A Dpybind_utils.h685 if (auto script_obj = as_object(object)) { in toTypeInferredIValue() local
686 auto ptr = script_obj.value()._ivalue(); in toTypeInferredIValue()
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dconnection.c1752 PyObject *script_obj) in pysqlite_connection_executescript() argument
1763 result = PyObject_CallMethodObjArgs(cursor, meth, script_obj, NULL); in pysqlite_connection_executescript()