Searched defs:sourceline (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Python/
H A D_warnings.c244 *category, PyObject *sourceline)
273 if (sourceline) {
274 char *source_line_str = PyString_AS_STRING(sourceline);
291 PyObject *module, PyObject *registry, PyObject *sourceline)
402 show_warning(filename, lineno, text, category, sourceline);
243 show_warning(PyObject *filename, int lineno, PyObject *text, PyObject *category, PyObject *sourceline) argument
289 warn_explicit(PyObject *category, PyObject *message, PyObject *filename, int lineno, PyObject *module, PyObject *registry, PyObject *sourceline) argument
/external/python/cpython3/Python/
H A D_warnings.c309 PyObject *category, PyObject *sourceline)
344 if (sourceline) {
351 if (PyUnicode_READY(sourceline) < 1)
354 kind = PyUnicode_KIND(sourceline);
355 data = PyUnicode_DATA(sourceline);
356 len = PyUnicode_GET_LENGTH(sourceline);
363 truncated = PyUnicode_Substring(sourceline, i, len);
367 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW);
383 PyObject *sourceline, PyObject *source)
394 show_warning(filename, lineno, text, category, sourceline);
308 show_warning(PyObject *filename, int lineno, PyObject *text, PyObject *category, PyObject *sourceline) argument
381 call_show_warning(PyObject *category, PyObject *text, PyObject *message, PyObject *filename, int lineno, PyObject *lineno_obj, PyObject *sourceline, PyObject *source) argument
434 warn_explicit(PyObject *category, PyObject *message, PyObject *filename, int lineno, PyObject *module, PyObject *registry, PyObject *sourceline, PyObject *source) argument
[all...]
/external/v8/src/
H A Dd8.cc1284 Local<String> sourceline; local
1285 if (message->GetSourceLine(context).ToLocal(&sourceline)) {
1287 v8::String::Utf8Value sourcelinevalue(sourceline);

Completed in 137 milliseconds