HomeSort by relevance Sort by last modified time
    Searched refs:memo (Results 51 - 75 of 111) sorted by null

1 23 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pickletester.py     [all...]
test_copy.py 202 def __deepcopy__(self, memo=None):
313 memo = {}
315 y = copy.deepcopy(x, memo)
316 self.assertTrue(memo[id(x)] is x)
333 def __deepcopy__(self, memo):
334 return C(copy.deepcopy(self.foo, memo))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 31 # 2001-10-01 fl Remove containers from memo cache when done with them
604 self.memo = {}
708 if i in self.memo:
710 self.memo[i] = None
716 del self.memo[i]
722 if i in self.memo:
724 self.memo[i] = None
738 del self.memo[i]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pickletester.py     [all...]
test_copy.py 202 def __deepcopy__(self, memo=None):
313 memo = {}
315 y = copy.deepcopy(x, memo)
316 self.assertTrue(memo[id(x)] is x)
333 def __deepcopy__(self, memo):
334 return C(copy.deepcopy(self.foo, memo))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 31 # 2001-10-01 fl Remove containers from memo cache when done with them
604 self.memo = {}
708 if i in self.memo:
710 self.memo[i] = None
716 del self.memo[i]
722 if i in self.memo:
724 self.memo[i] = None
738 del self.memo[i]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_copy.py 202 def __deepcopy__(self, memo=None):
313 memo = {}
315 y = copy.deepcopy(x, memo)
316 self.assertTrue(memo[id(x)] is x)
333 def __deepcopy__(self, memo):
334 return C(copy.deepcopy(self.foo, memo))
  /external/python/cpython2/Lib/test/
test_copy.py 248 def __deepcopy__(self, memo=None):
359 memo = {}
361 y = copy.deepcopy(x, memo)
362 self.assertTrue(memo[id(x)] is x)
379 def __deepcopy__(self, memo):
380 return C(copy.deepcopy(self.foo, memo))
pickletester.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_copy.py 202 def __deepcopy__(self, memo=None):
313 memo = {}
315 y = copy.deepcopy(x, memo)
316 self.assertTrue(memo[id(x)] is x)
333 def __deepcopy__(self, memo):
334 return C(copy.deepcopy(self.foo, memo))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_copy.py 202 def __deepcopy__(self, memo=None):
313 memo = {}
315 y = copy.deepcopy(x, memo)
316 self.assertTrue(memo[id(x)] is x)
333 def __deepcopy__(self, memo):
334 return C(copy.deepcopy(self.foo, memo))
  /prebuilts/go/darwin-x86/src/cmd/vet/
lostcancel.go 193 memo := make(map[*cfg.Block]bool)
195 res, ok := memo[b]
198 memo[b] = res
  /prebuilts/go/linux-x86/src/cmd/vet/
lostcancel.go 193 memo := make(map[*cfg.Block]bool)
195 res, ok := memo[b]
198 memo[b] = res
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
permmap.py 63 def __deepcopy__(self, memo):
68 memo[id(self)] = newobj
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 135 deepcopy(PyObject* object, PyObject* memo)
155 Py_INCREF(memo); PyTuple_SET_ITEM(args, 1, (PyObject*) memo);
638 PyObject* memo; local
639 if (!PyArg_ParseTuple(args, "O:__deepcopy__", &memo))
642 tag = deepcopy(self->tag, memo);
647 attrib = deepcopy(self->extra->attrib, memo);
665 text = deepcopy(JOIN_OBJ(self->text), memo);
671 tail = deepcopy(JOIN_OBJ(self->tail), memo);
683 PyObject* child = deepcopy(self->extra->children[i], memo);
    [all...]
_sre.c     [all...]
  /external/python/cpython2/Modules/
_elementtree.c 135 deepcopy(PyObject* object, PyObject* memo)
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...]
_sre.c     [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
CodeGenTreeWalker.g 467 String memo = (String)grammar.getBlockOption($start,"memoize");
468 if ( memo==null )
470 memo = (String)grammar.getOption("memoize");
472 if ( memo!=null && memo.equals("true") &&
475 $code.add("memoize", memo!=null && memo.equals("true"));
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
__init__.py 105 def __deepcopy__(self, memo):
110 memo[id(self)] = newobj
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
_sre.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
_sre.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fractions.py 602 def __deepcopy__(self, memo):
  /external/python/cpython2/Lib/
fractions.py 602 def __deepcopy__(self, memo):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fractions.py 602 def __deepcopy__(self, memo):

Completed in 760 milliseconds

1 23 4 5