HomeSort by relevance Sort by last modified time
    Searched refs:pickle (Results 101 - 125 of 294) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbtables.py 28 import pickle namespace
31 import cPickle as pickle namespace
50 import cPickle as pickle namespace
264 (_table_names_key, pickle.dumps([], 1), txn=txn)
335 pickle.dumps(columns, 1), txn=txn)
338 tablelist = pickle.loads(getattr(self.db, "get_bytes",
344 pickle.dumps(tablelist, 1), txn=txn)
371 return pickle.loads(pickledcolumnlist)
379 return pickle.loads(pickledtablelist)
404 oldcolumnlist = pickle.loads
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 28 import pickle namespace
31 import cPickle as pickle namespace
50 import cPickle as pickle namespace
264 (_table_names_key, pickle.dumps([], 1), txn=txn)
335 pickle.dumps(columns, 1), txn=txn)
338 tablelist = pickle.loads(getattr(self.db, "get_bytes",
344 pickle.dumps(tablelist, 1), txn=txn)
371 return pickle.loads(pickledcolumnlist)
379 return pickle.loads(pickledtablelist)
404 oldcolumnlist = pickle.loads
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 28 import pickle namespace
31 import cPickle as pickle namespace
50 import cPickle as pickle namespace
264 (_table_names_key, pickle.dumps([], 1), txn=txn)
335 pickle.dumps(columns, 1), txn=txn)
338 tablelist = pickle.loads(getattr(self.db, "get_bytes",
344 pickle.dumps(tablelist, 1), txn=txn)
371 return pickle.loads(pickledcolumnlist)
379 return pickle.loads(pickledtablelist)
404 oldcolumnlist = pickle.loads
    [all...]
  /external/libchrome/base/trace_event/
trace_event_argument.cc 44 inline void WriteKeyNameAsRawPtr(Pickle& pickle, const char* ptr) {
45 pickle.WriteBytes(&kTypeCStr, 1);
46 pickle.WriteUInt64(static_cast<uint64_t>(reinterpret_cast<uintptr_t>(ptr)));
49 inline void WriteKeyNameWithCopy(Pickle& pickle, base::StringPiece str) {
50 pickle.WriteBytes(&kTypeString, 1);
51 pickle.WriteString(str);
463 const size_t kPickleHeapAlign = 4096; // Must be == Pickle::kPickleHeapAlign.
  /external/autotest/client/cros/cellular/
labconfig.py 7 import pickle namespace
160 return pickle.dumps(self)
  /external/autotest/site_utils/
log_socket_server.py 14 import pickle namespace
35 followed by the LogRecord in pickle format. Logs the record
57 return pickle.loads(data)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
backward.py 42 import cPickle as pickle namespace
44 import pickle namespace
  /external/libchrome/sandbox/linux/syscall_broker/
broker_host.cc 22 #include "base/pickle.h"
65 base::Pickle* write_pickle,
97 base::Pickle* write_pickle) {
129 base::Pickle write_pickle;
198 base::Pickle pickle(buf, msg_len);
199 base::PickleIterator iter(pickle);
  /external/opencv3/3rdparty/jinja2/
_compat.py 30 import pickle namespace
59 import cPickle as pickle namespace
  /prebuilts/gdb/darwin-x86/lib/python2.7/
copy_reg.py 1 """Helper to provide extensibility for pickle/cPickle.
3 This is only useful to add pickle support for extension types defined in
9 __all__ = ["pickle", "constructor",
14 def pickle(ob_type, pickle_function, constructor_ob=None): function
42 pickle(complex, pickle_complex, complex)
70 raise TypeError, "can't pickle %s objects" % base.__name__
146 # universal, so that the meaning of a pickle does not depend on
  /prebuilts/gdb/linux-x86/lib/python2.7/
copy_reg.py 1 """Helper to provide extensibility for pickle/cPickle.
3 This is only useful to add pickle support for extension types defined in
9 __all__ = ["pickle", "constructor",
14 def pickle(ob_type, pickle_function, constructor_ob=None): function
42 pickle(complex, pickle_complex, complex)
70 raise TypeError, "can't pickle %s objects" % base.__name__
146 # universal, so that the meaning of a pickle does not depend on
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy_reg.py 1 """Helper to provide extensibility for pickle/cPickle.
3 This is only useful to add pickle support for extension types defined in
9 __all__ = ["pickle", "constructor",
14 def pickle(ob_type, pickle_function, constructor_ob=None): function
42 pickle(complex, pickle_complex, complex)
70 raise TypeError, "can't pickle %s objects" % base.__name__
146 # universal, so that the meaning of a pickle does not depend on
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy_reg.py 1 """Helper to provide extensibility for pickle/cPickle.
3 This is only useful to add pickle support for extension types defined in
9 __all__ = ["pickle", "constructor",
14 def pickle(ob_type, pickle_function, constructor_ob=None): function
42 pickle(complex, pickle_complex, complex)
70 raise TypeError, "can't pickle %s objects" % base.__name__
146 # universal, so that the meaning of a pickle does not depend on
  /external/libchrome/base/metrics/
sparse_histogram.h 58 bool SerializeInfoImpl(base::Pickle* pickle) const override;
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_runner.py 4 import pickle namespace
245 for protocol in range(pickle.HIGHEST_PROTOCOL + 1):
246 s = pickle.dumps(runner, protocol=protocol)
247 obj = pickle.loads(s)
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_runner.py 4 import pickle namespace
245 for protocol in range(pickle.HIGHEST_PROTOCOL + 1):
246 s = pickle.dumps(runner, protocol=protocol)
247 obj = pickle.loads(s)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 4 import pickle namespace
245 for protocol in range(pickle.HIGHEST_PROTOCOL + 1):
246 s = pickle.dumps(runner, protocol=protocol)
247 obj = pickle.loads(s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 4 import pickle namespace
245 for protocol in range(pickle.HIGHEST_PROTOCOL + 1):
246 s = pickle.dumps(runner, protocol=protocol)
247 obj = pickle.loads(s)
  /external/chromium-trace/catapult/dashboard/dashboard/
quick_logger.py 23 import cPickle as pickle namespace
112 return pickle.loads(serialized)
127 serialized = pickle.dumps(records, 2)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/docs/
Makefile 22 .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
29 @echo " pickle to make pickle files"
67 pickle:
68 $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
70 @echo "Build finished; now you can process the pickle files."
  /external/chromium-trace/catapult/third_party/html5lib-python/doc/
Makefile 22 .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
29 @echo " pickle to make pickle files"
67 pickle:
68 $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
70 @echo "Build finished; now you can process the pickle files."
make.bat 24 echo. pickle to make pickle files
87 if "%1" == "pickle" (
88 %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
91 echo.Build finished; now you can process the pickle files.
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
util.py 39 import pickle namespace
289 return pickle.dumps(handler)
303 return pickle.loads(serialized_handler)
  /external/v8/build/android/pylib/perf/
test_runner.py 54 import pickle namespace
111 return pickle.loads(f.read())
185 result = pickle.loads(f.read())
253 previous = pickle.loads(f.read())
257 f.write(pickle.dumps(result))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_collections.py 7 import pickle, cPickle, copy namespace
18 TestNT = namedtuple('TestNT', 'x y z') # type used for pickle tests
165 for module in pickle, cPickle:
674 pickle.loads(pickle.dumps(words, 0)),
675 pickle.loads(pickle.dumps(words, 1)),
676 pickle.loads(pickle.dumps(words, 2)),
677 pickle.loads(pickle.dumps(words, -1))
    [all...]

Completed in 429 milliseconds

1 2 3 45 6 7 8 91011>>