Home
last modified time | relevance | path

Searched refs:_lookup (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Tools/c-analyzer/cpython/
Dknown.py55 _lookup=_common.look_up_variable, argument
66 return _lookup(varid, knownvars)
/external/python/cpython2/Lib/
Dmailbox.py310 os.remove(os.path.join(self._path, self._lookup(key)))
325 old_subpath = self._lookup(key)
327 temp_subpath = self._lookup(temp_key)
352 subpath = self._lookup(key)
370 f = open(os.path.join(self._path, self._lookup(key)), 'r')
378 f = open(os.path.join(self._path, self._lookup(key)), 'rb')
386 self._lookup(key)
537 def _lookup(self, key): member in Maildir
592 self._lookup()
602 self._lookup(key)
[all …]
/external/python/cpython3/Lib/
Dmailbox.py336 os.remove(os.path.join(self._path, self._lookup(key)))
348 old_subpath = self._lookup(key)
350 temp_subpath = self._lookup(temp_key)
375 subpath = self._lookup(key)
390 with open(os.path.join(self._path, self._lookup(key)), 'rb') as f:
395 f = open(os.path.join(self._path, self._lookup(key)), 'rb')
403 self._lookup(key)
550 def _lookup(self, key): member in Maildir
605 self._lookup()
615 self._lookup(key)
[all …]
/external/tensorflow/tensorflow/python/ops/distributions/
Dbijector_impl.py746 mapping = self._lookup(x=x, kwargs=kwargs)
780 mapping = self._lookup(y=y, kwargs=kwargs)
847 mapping = self._lookup(y=y, kwargs=kwargs)
950 mapping = self._lookup(x=x, kwargs=kwargs)
1017 mapping = mapping.merge(mapping=self._lookup(
1025 def _lookup(self, x=None, y=None, kwargs=None): member in Bijector
/external/python/cpython2/Lib/test/
Dtest_mailbox.py733 self.assertRaises(KeyError, lambda: self._box._lookup('foo'))
735 self.assertEqual(self._box._lookup(key0), os.path.join('new', key0))
741 self.assertRaises(KeyError, lambda: self._box._lookup(key0))
784 path = os.path.join(self._path, self._box._lookup(key))
/external/python/cpython3/Lib/test/
Dtest_mailbox.py825 self.assertRaises(KeyError, lambda: self._box._lookup('foo'))
827 self.assertEqual(self._box._lookup(key0), os.path.join('new', key0))
833 self.assertRaises(KeyError, lambda: self._box._lookup(key0))
875 path = os.path.join(self._path, self._box._lookup(key))