HomeSort by relevance Sort by last modified time
    Searched defs:pickle (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /external/chromium_org/components/autofill/core/common/
form_field_data_unittest.cc 8 #include "base/pickle.h"
33 Pickle pickle; local
34 SerializeFormFieldData(data, &pickle);
36 PickleIterator iter(pickle);
form_data_unittest.cc 7 #include "base/pickle.h"
47 Pickle pickle; local
48 SerializeFormData(data, &pickle);
50 PickleIterator iter(pickle);
  /external/chromium_org/crypto/
secure_hash_unittest.cc 9 #include "base/pickle.h"
54 Pickle pickle; local
59 EXPECT_TRUE(ctx1->Serialize(&pickle));
65 PickleIterator data_iterator(pickle);
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_drag_data_unittest.cc 5 #include "base/pickle.h"
42 Pickle pickle; local
43 pickle.WriteBytes(&profile_ptr, sizeof(&profile));
44 pickle.WriteString(extension_id);
45 pickle.WriteUInt64(42);
49 pickle); local
  /external/chromium_org/content/common/
ssl_status_serialization.cc 8 #include "base/pickle.h"
19 Pickle pickle; local
20 pickle.WriteInt(cert_id);
21 pickle.WriteUInt32(cert_status);
22 pickle.WriteInt(security_bits);
23 pickle.WriteInt(ssl_connection_status);
24 pickle.WriteInt(signed_certificate_timestamp_ids.size());
28 pickle.WriteInt(iter->id);
29 pickle.WriteUInt16(iter->status)
    [all...]
  /external/chromium_org/extensions/common/
user_script_unittest.cc 7 #include "base/pickle.h"
163 TEST(ExtensionUserScriptTest, Pickle) {
198 Pickle pickle; local
199 script1.Pickle(&pickle);
201 PickleIterator iter(pickle);
203 script2.Unpickle(pickle, &iter);
  /external/chromium_org/net/cert/
signed_certificate_timestamp_unittest.cc 9 #include "base/pickle.h"
34 Pickle pickle; local
36 sample_sct_->Persist(&pickle);
37 PickleIterator iter(pickle);
  /external/chromium_org/android_webview/native/
state_serializer_unittest.cc 10 #include "base/pickle.h"
25 Pickle pickle; local
26 bool result = internal::WriteHeaderToPickle(&pickle);
29 PickleIterator iterator(pickle);
71 Pickle pickle; local
72 bool result = internal::WriteNavigationEntryToPickle(*entry, &pickle);
76 PickleIterator iterator(pickle);
  /external/chromium_org/base/metrics/
histogram_base_unittest.cc 11 #include "base/pickle.h"
44 Pickle pickle; local
45 ASSERT_TRUE(histogram->SerializeInfo(&pickle));
47 PickleIterator iter(pickle);
53 PickleIterator iter2(pickle);
69 Pickle pickle; local
70 ASSERT_TRUE(histogram->SerializeInfo(&pickle));
72 PickleIterator iter(pickle);
91 Pickle pickle; local
118 Pickle pickle; local
140 Pickle pickle; local
    [all...]
histogram_delta_serialization.cc 11 #include "base/pickle.h"
18 // Create or find existing histogram and add the samples from pickle.
19 // Silently returns when seeing any data problem in the pickle.
78 Pickle pickle(it->data(), checked_cast<int>(it->size()));
79 PickleIterator iter(pickle);
89 Pickle pickle; local
90 histogram.SerializeInfo(&pickle);
91 snapshot.Serialize(&pickle);
    [all...]
sparse_histogram_unittest.cc 13 #include "base/pickle.h"
123 Pickle pickle; local
124 histogram->SerializeInfo(&pickle);
126 PickleIterator iter(pickle);
140 // No more data in the pickle.
  /external/chromium_org/components/nacl/browser/
nacl_validation_cache_unittest.cc 5 #include "base/pickle.h"
147 Pickle pickle; local
148 cache1.Serialize(&pickle);
149 ASSERT_TRUE(cache2.Deserialize(&pickle));
160 Pickle pickle; local
161 cache1.Serialize(&pickle);
162 Pickle truncated(static_cast<const char*>(pickle.data()), pickle.size()-20)
173 Pickle pickle; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_global_objects.py 17 import cPickle as pickle namespace
29 usage = 'Usage: %prog [options] [GlobalObjectsComponent.pickle]... [GlobalObjects.pickle]'
42 parser.error('Must specify an output pickle filename as argument, '
43 'optionally preceeded by input pickle filenames.')
compute_interfaces_info_overall.py 34 output (concretely, exported as a pickle). This is then used by the IDL compiler
38 The |interfaces_info| pickle is a *global* dependency: any changes cause a full
80 import cPickle as pickle namespace
111 usage = 'Usage: %prog [InfoIndividual.pickle]... [Info.pickle]'
idl_compiler.py 38 import cPickle as pickle namespace
97 interfaces_info = pickle.load(interfaces_info_file)
utilities.py 11 import cPickle as pickle namespace
44 yield pickle.load(pickle_file)
60 if pickle.load(pickle_file) == data:
62 except (EOFError, pickle.UnpicklingError):
66 pickle.dump(data, pickle_file)
  /external/chromium_org/ui/base/clipboard/
custom_data_helper_unittest.cc 9 #include "base/pickle.h"
19 void PrepareEmptyTestData(Pickle* pickle) {
21 WriteCustomDataToPickle(data, pickle);
24 void PrepareTestData(Pickle* pickle) {
29 WriteCustomDataToPickle(data, pickle);
33 Pickle pickle; local
34 PrepareEmptyTestData(&pickle);
42 Pickle pickle; local
54 Pickle pickle; local
63 Pickle pickle; local
77 Pickle pickle; local
101 Pickle pickle; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 16 import pickle namespace
31 The load() method reads the tables from a pickle file, which is
32 much faster than the other ways offered by subclasses. The pickle
88 """Dump the grammar tables to a pickle file."""
90 pickle.dump(self.__dict__, f, 2)
94 """Load the grammar tables from a pickle file."""
96 d = pickle.load(f)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pickletools.py 1 import pickle namespace
10 return pickletools.optimize(pickle.dumps(arg, proto))
13 return pickle.loads(buf)
15 module = pickle
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 16 import pickle namespace
31 The load() method reads the tables from a pickle file, which is
32 much faster than the other ways offered by subclasses. The pickle
88 """Dump the grammar tables to a pickle file."""
90 pickle.dump(self.__dict__, f, 2)
94 """Load the grammar tables from a pickle file."""
96 d = pickle.load(f)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pickletools.py 1 import pickle namespace
10 return pickletools.optimize(pickle.dumps(arg, proto))
13 return pickle.loads(buf)
15 module = pickle
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
backward.py 42 import cPickle as pickle namespace
44 import pickle namespace
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_profiling_helper_unittest.py 6 import pickle namespace
71 vtune_db_output = pickle.load(f)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_pickle.py 3 import pickle namespace
34 def _base_test_pickle_DBError(self, pickle):
44 pickledEgg = pickle.dumps(egg)
46 rottenEgg = pickle.loads(pickledEgg)
56 self._base_test_pickle_DBError(pickle=pickle)
60 self._base_test_pickle_DBError(pickle=cPickle)
  /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

Completed in 603 milliseconds

1 2 3 4 5 6