OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:second_argument
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.c
465
PyObject*
second_argument
= NULL;
local
483
if (!PyArg_ParseTuple(args, "OO", &operation, &
second_argument
)) {
492
if (PyIter_Check(
second_argument
)) {
494
Py_INCREF(
second_argument
);
495
parameters_iter =
second_argument
;
498
parameters_iter = PyObject_GetIter(
second_argument
);
505
if (!PyArg_ParseTuple(args, "O|O", &operation, &
second_argument
)) {
519
if (
second_argument
== NULL) {
520
second_argument
= PyTuple_New(0);
521
if (!
second_argument
) {
[
all
...]
/external/python/cpython2/Modules/_sqlite/
cursor.c
453
PyObject*
second_argument
= NULL;
local
471
if (!PyArg_ParseTuple(args, "OO", &operation, &
second_argument
)) {
480
if (PyIter_Check(
second_argument
)) {
482
Py_INCREF(
second_argument
);
483
parameters_iter =
second_argument
;
486
parameters_iter = PyObject_GetIter(
second_argument
);
493
if (!PyArg_ParseTuple(args, "O|O", &operation, &
second_argument
)) {
507
if (
second_argument
== NULL) {
508
second_argument
= PyTuple_New(0);
509
if (!
second_argument
) {
[
all
...]
/external/python/cpython3/Modules/_sqlite/
cursor.c
393
PyObject*
second_argument
= NULL;
local
407
if (!PyArg_ParseTuple(args, "OO", &operation, &
second_argument
)) {
416
if (PyIter_Check(
second_argument
)) {
418
Py_INCREF(
second_argument
);
419
parameters_iter =
second_argument
;
422
parameters_iter = PyObject_GetIter(
second_argument
);
429
if (!PyArg_ParseTuple(args, "O|O", &operation, &
second_argument
)) {
443
if (
second_argument
== NULL) {
444
second_argument
= PyTuple_New(0);
445
if (!
second_argument
) {
[
all
...]
Completed in 205 milliseconds