HomeSort by relevance Sort by last modified time
    Searched defs:tuple (Results 151 - 175 of 253) sorted by null

1 2 3 4 5 67 8 91011

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
parsermodule.c 18 * produced by Python code as a tuple to the compiler is enabled by
194 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
327 * This provides conversion from a node* to a tuple object that can be
363 * Convert ST into a tuple representation. Use Guido's function,
418 * Convert ST into a tuple representation. Use Guido's function,
615 /* This is the messy part of the code. Conversion from a tuple to an ST
616 * object requires that the input tuple be valid without having to rely on
624 * the tuple passed in, and verifying that it is indeed valid. It may be
632 static node* build_node_tree(PyObject *tuple);
640 * single tuple object from the caller, and creates an ST object if the
655 PyObject *tuple; local
3363 PyObject *tuple; local
    [all...]
cPickle.c 70 #define TUPLE 't'
80 #define TUPLE1 '\x85' /* build 1-tuple from stack top */
81 #define TUPLE2 '\x86' /* build 2-tuple from two topmost stack items */
82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */
113 /* As the name says, an empty tuple. */
1514 static char tuple = TUPLE; local
    [all...]
datetimemodule.c 1558 PyObject *tuple = NULL; local
2527 PyObject *tuple; local
2645 PyObject *tuple; local
3304 PyObject *tuple; local
3445 PyObject *tuple; local
4388 PyObject *tuple; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 395 PyObject *tuple, *item = PyInt_FromLong(i); local
402 tuple = PyTuple_Pack(2, k, k->ob_type);
403 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
407 Py_XDECREF(tuple);
411 Py_DECREF(tuple);
953 /* all we need is to make the tuple different in either the 0.0
3785 PyObject *tuple, *k, *v; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
parsermodule.c 18 * produced by Python code as a tuple to the compiler is enabled by
296 * This provides conversion from a node* to a tuple object that can be
328 * Convert ST into a tuple representation. Use Guido's function,
379 * Convert ST into a tuple representation. Use Guido's function,
510 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
595 /* This is the messy part of the code. Conversion from a tuple to an ST
596 * object requires that the input tuple be valid without having to rely on
604 * the tuple passed in, and verifying that it is indeed valid. It may be
612 static node* build_node_tree(PyObject *tuple);
620 * single tuple object from the caller, and creates an ST object if the
635 PyObject *tuple; local
3334 PyObject *tuple; local
    [all...]
cPickle.c 70 #define TUPLE 't'
80 #define TUPLE1 '\x85' /* build 1-tuple from stack top */
81 #define TUPLE2 '\x86' /* build 2-tuple from two topmost stack items */
82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */
113 /* As the name says, an empty tuple. */
1483 static char tuple = TUPLE; local
    [all...]
datetimemodule.c 1558 PyObject *tuple = NULL; local
2527 PyObject *tuple; local
2645 PyObject *tuple; local
3304 PyObject *tuple; local
3445 PyObject *tuple; local
4388 PyObject *tuple; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 375 PyObject *tuple, *item = PyInt_FromLong(i); local
381 tuple = PyTuple_Pack(2, k, k->ob_type);
382 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
385 Py_XDECREF(tuple);
389 Py_DECREF(tuple);
930 /* all we need is to make the tuple different in either the 0.0
3761 PyObject *tuple, *k, *v; local
    [all...]
  /external/python/cpython2/Modules/
_tkinter.c 417 PyErr_SetString(PyExc_OverflowError, "tuple is too long");
574 lists. SplitObj walks through a nested tuple, finding string objects that
586 /* Recursively invoke SplitObj for all tuple items.
1148 PyErr_SetString(PyExc_OverflowError, "tuple is too long");
3315 PyObject* tuple; member in struct:__anon32762
    [all...]
parsermodule.c 18 * produced by Python code as a tuple to the compiler is enabled by
194 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
327 * This provides conversion from a node* to a tuple object that can be
363 * Convert ST into a tuple representation. Use Guido's function,
418 * Convert ST into a tuple representation. Use Guido's function,
615 /* This is the messy part of the code. Conversion from a tuple to an ST
616 * object requires that the input tuple be valid without having to rely on
624 * the tuple passed in, and verifying that it is indeed valid. It may be
632 static node* build_node_tree(PyObject *tuple);
640 * single tuple object from the caller, and creates an ST object if th
655 PyObject *tuple; local
3363 PyObject *tuple; local
    [all...]
cPickle.c 70 #define TUPLE 't'
80 #define TUPLE1 '\x85' /* build 1-tuple from stack top */
81 #define TUPLE2 '\x86' /* build 2-tuple from two topmost stack items */
82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */
113 /* As the name says, an empty tuple. */
1512 static char tuple = TUPLE; local
    [all...]
datetimemodule.c 1558 PyObject *tuple = NULL; local
2527 PyObject *tuple; local
2645 PyObject *tuple; local
3304 PyObject *tuple; local
3445 PyObject *tuple; local
4388 PyObject *tuple; local
    [all...]
  /external/python/cpython2/Python/
compile.c 395 PyObject *tuple, *item = PyInt_FromLong(i); local
402 tuple = _PyCode_ConstantKey(k);
403 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
407 Py_XDECREF(tuple);
411 Py_DECREF(tuple);
3746 PyObject *tuple, *k, *v; local
    [all...]
  /external/python/cpython3/Modules/
_tkinter.c 473 be lists. SplitObj walks through a nested tuple, finding string
485 /* Recursively invoke SplitObj for all tuple items.
1088 PyTuple_Check(value) ? "tuple is too long" :
3104 PyObject* tuple; member in struct:__anon33397
    [all...]
_testcapimodule.c 855 PyObject *tuple, *num; local
858 tuple = PyTuple_New(1);
859 if (tuple == NULL)
866 PyTuple_SET_ITEM(tuple, 0, num);
869 if (PyArg_ParseTuple(tuple, "L:test_L_code", &value) < 0)
880 PyTuple_SET_ITEM(tuple, 0, num);
883 if (PyArg_ParseTuple(tuple, "L:test_L_code", &value) < 0)
889 Py_DECREF(tuple);
1008 /* Test tuple argument processing */
1181 PyObject *tuple, *num; local
1542 PyObject *tuple, *obj; local
1645 PyObject *tuple, *obj; local
1687 PyObject *tuple, *obj; local
2021 PyObject *tuple, *dict = NULL; local
2118 PyObject *tuple = PyTuple_Pack(2, o1, o2); local
    [all...]
socketmodule.c 53 - an AF_PACKET socket address is a tuple containing a string
56 ("eth0",0x1234). Optional 3rd,4th,5th elements in the tuple
3446 PyObject *bytes, *tuple; local
    [all...]
_datetimemodule.c 1554 PyObject *tuple = NULL; local
2729 PyObject *tuple; local
2822 PyObject *tuple; local
3753 PyObject *tuple; local
3917 PyObject *tuple; local
5006 PyObject *tuple; local
    [all...]
_pickle.c 62 TUPLE = 't',
495 PyObject *tuple; local
503 tuple = PyTuple_New(len);
504 if (tuple == NULL)
507 PyTuple_SET_ITEM(tuple, j, self->data[i]);
510 return tuple;
5037 PyObject *tuple; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 405 PyObject* tuple; local
406 tuple = PyTuple_Pack(2, subclass, old_mro);
408 if (!tuple)
410 if (PyList_Append(temp, tuple) < 0)
412 Py_DECREF(tuple);
441 "can only assign tuple to %s.__bases__, not %s",
447 "can only assign non-empty tuple to %s.__bases__, not ()",
456 "%s.__bases__ must be tuple of old- or new-style classes, not '%s'",
1632 PyObject *mro, *result, *tuple; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 399 PyObject* tuple; local
400 tuple = PyTuple_Pack(2, subclass, old_mro);
402 if (!tuple)
404 if (PyList_Append(temp, tuple) < 0)
406 Py_DECREF(tuple);
435 "can only assign tuple to %s.__bases__, not %s",
441 "can only assign non-empty tuple to %s.__bases__, not ()",
450 "%s.__bases__ must be tuple of old- or new-style classes, not '%s'",
1614 PyObject *mro, *result, *tuple; local
    [all...]
  /external/ImageMagick/MagickCore/
xwindow.c 7097 tuple[MagickPathExtent]; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
numfmtst.cpp 69 const NumberFormatTestTuple &tuple,
73 const NumberFormatTestTuple &tuple,
77 const NumberFormatTestTuple &tuple,
81 const NumberFormatTestTuple &tuple,
137 const NumberFormatTestTuple &tuple,
140 if (tuple.minIntegerDigitsFlag) {
141 fmt.setMinimumIntegerDigits(tuple.minIntegerDigits);
143 if (tuple.maxIntegerDigitsFlag) {
144 fmt.setMaximumIntegerDigits(tuple.maxIntegerDigits);
146 if (tuple.minFractionDigitsFlag)
8280 NumberFormatTestTuple tuple; local
    [all...]
  /external/python/cpython3/Python/
compile.c 462 PyObject *tuple, *item = PyLong_FromSsize_t(i); local
469 tuple = _PyCode_ConstantKey(k);
470 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
474 Py_XDECREF(tuple);
478 Py_DECREF(tuple);
564 PyObject *tuple, *name, *zero; local
573 tuple = _PyCode_ConstantKey(name);
574 if (!tuple) {
580 Py_DECREF(tuple);
5147 PyObject *tuple, *k, *v; local
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 154 // This container maps an <class, group number for ivar> tuple to the type
3812 std::pair<const ObjCInterfaceDecl*, unsigned> tuple = std::make_pair(CDecl, GroupNo); local
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 425 PyObject* tuple; local
426 tuple = PyTuple_Pack(2, subclass, old_mro);
428 if (!tuple)
430 if (PyList_Append(temp, tuple) < 0)
432 Py_DECREF(tuple);
461 "can only assign tuple to %s.__bases__, not %s",
467 "can only assign non-empty tuple to %s.__bases__, not ()",
476 "%s.__bases__ must be tuple of old- or new-style classes, not '%s'",
1656 PyObject *mro, *result, *tuple; local
    [all...]

Completed in 2101 milliseconds

1 2 3 4 5 67 8 91011