Searched defs:memo (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython2/Modules/
H A D_elementtree.c135 deepcopy(PyObject* object, PyObject* memo) argument
155 Py_INCREF(memo); PyTuple_SET_ITEM(args, 1, (PyObject*) memo);
645 PyObject* memo; local
646 if (!PyArg_ParseTuple(args, "O:__deepcopy__", &memo))
649 tag = deepcopy(self->tag, memo);
654 attrib = deepcopy(self->extra->attrib, memo);
672 text = deepcopy(JOIN_OBJ(self->text), memo);
678 tail = deepcopy(JOIN_OBJ(self->tail), memo);
690 PyObject* child = deepcopy(self->extra->children[i], memo);
[all...]
H A D_sre.c2046 deepcopy(PyObject** object, PyObject* memo) argument
2052 PyTuple_Pack(2, *object, memo)
2610 pattern_deepcopy(PatternObject* self, PyObject* memo) argument
2619 if (!deepcopy(&copy->groupindex, memo) ||
2620 !deepcopy(&copy->indexgroup, memo) ||
2621 !deepcopy(&copy->pattern, memo)) {
3613 match_deepcopy(MatchObject* self, PyObject* memo) argument
3622 if (!deepcopy((PyObject**) &copy->pattern, memo) ||
3623 !deepcopy(&copy->string, memo) ||
3624 !deepcopy(&copy->regs, memo)) {
[all...]
H A DcPickle.c336 PyObject *memo; member in struct:Picklerobject
347 int fast; /* Fast mode doesn't save in memo, don't use if circ ref */
368 PyObject *memo; member in struct:Unpicklerobject
750 if (!( mv = PyDict_GetItem(self->memo, id))) {
759 PyErr_SetString(PicklingError, "no int where int expected in memo");
819 if ((p = PyDict_Size(self->memo)) < 0)
822 /* Make sure memo keys are positive! */
844 if (PyDict_SetItem(self->memo, py_ob_id, t) < 0)
1540 /* id(tuple) isn't in the memo now. If it shows up there after
1543 * its value from the memo
[all...]
/external/libxml2/
H A Dvalid.c6521 xmlValidateMemoPtr memo = (xmlValidateMemoPtr)user; local
6522 xmlValidateRef((xmlRefPtr)data, memo->ctxt, memo->name);
6536 xmlValidateMemo memo; local
6540 memo.ctxt = ctxt;
6541 memo.name = name;
6543 xmlListWalk(ref_list, xmlWalkValidateList, &memo);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 325 milliseconds