Home
last modified time | relevance | path

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

/external/v8/src/snapshot/
Dcode-serializer.cc139 Handle<Script> script_obj = Handle<Script>::cast(obj); in SerializeObjectImpl() local
140 DCHECK_NE(script_obj->compilation_type(), Script::COMPILATION_TYPE_EVAL); in SerializeObjectImpl()
144 Object context_data = script_obj->context_data(); in SerializeObjectImpl()
147 script_obj->set_context_data(roots.undefined_value()); in SerializeObjectImpl()
151 FixedArray host_options = script_obj->host_defined_options(); in SerializeObjectImpl()
152 script_obj->set_host_defined_options(roots.empty_fixed_array()); in SerializeObjectImpl()
154 script_obj->set_host_defined_options(host_options); in SerializeObjectImpl()
155 script_obj->set_context_data(context_data); in SerializeObjectImpl()
/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()
/external/python/cpython3/Modules/_sqlite/
Dcursor.c623 PyObject* script_obj; in pysqlite_cursor_executescript() local
630 if (!PyArg_ParseTuple(args, "O", &script_obj)) { in pysqlite_cursor_executescript()
640 if (PyUnicode_Check(script_obj)) { in pysqlite_cursor_executescript()
641 script_cstr = PyUnicode_AsUTF8(script_obj); in pysqlite_cursor_executescript()
/external/v8/src/objects/
Dshared-function-info-inl.h748 Object script_obj = script(); in IsUserJavaScript() local
749 if (script_obj.IsUndefined()) return false; in IsUserJavaScript()
750 Script script = Script::cast(script_obj); in IsUserJavaScript()
/external/v8/src/runtime/
Druntime-debug.cc735 Handle<JSArray> script_obj = in RUNTIME_FUNCTION() local
737 JSObject::AddProperty(isolate, script_obj, script_string, in RUNTIME_FUNCTION()
739 scripts_array->set(i, *script_obj); in RUNTIME_FUNCTION()
/external/v8/src/debug/
Ddebug.cc1976 Handle<Object> script_obj = summary.script(); in ShouldBeSkipped() local
1977 if (!script_obj->IsScript()) return false; in ShouldBeSkipped()
1979 Handle<Script> script = Handle<Script>::cast(script_obj); in ShouldBeSkipped()
2144 Handle<Object> script_obj = summary.script(); in PrintBreakLocation() local
2148 if (script_obj->IsScript()) { in PrintBreakLocation()
2149 Handle<Script> script = Handle<Script>::cast(script_obj); in PrintBreakLocation()
/external/v8/src/execution/
Dframes.cc2021 Object script_obj = shared->script(); in Print() local
2022 if (script_obj.IsScript()) { in Print()
2023 Script script = Script::cast(script_obj); in Print()