OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Serialize
(Results
1 - 25
of
209
) sorted by null
1
2
3
4
5
6
7
8
9
/external/chromium_org/tools/telemetry/telemetry/core/
trace_result.py
9
def
Serialize
(self, f):
11
return self._impl.
Serialize
(f)
/external/chromium_org/net/server/
http_server_response_info_unittest.cc
14
ASSERT_EQ("HTTP/1.1 200 OK\r\n\r\n", response.
Serialize
());
21
ASSERT_EQ("HTTP/1.1 200 OK\r\nA:1\r\nA:2\r\n\r\n", response.
Serialize
());
31
response.
Serialize
());
39
response.
Serialize
());
48
response.
Serialize
());
/external/chromium_org/content/common/
clipboard_messages.cc
13
m->WriteString(p.
Serialize
());
27
*l = p.
Serialize
();
/external/chromium_org/crypto/
secure_hash.h
30
//
Serialize
the context, so it can be restored at a later time.
33
virtual bool
Serialize
(Pickle* pickle) = 0;
secure_hash_default.cc
40
virtual bool
Serialize
(Pickle* pickle) OVERRIDE;
47
bool SecureHashSHA256NSS::
Serialize
(Pickle* pickle) {
secure_hash_openssl.cc
43
virtual bool
Serialize
(Pickle* pickle) OVERRIDE;
50
bool SecureHashSHA256OpenSSL::
Serialize
(Pickle* pickle) {
/external/chromium_org/chrome/browser/spellchecker/
spellcheck_action.h
63
base::DictionaryValue*
Serialize
() const;
misspelling.h
10
// The object can
serialize
itself.
30
// Process(misspelling.
Serialize
());
43
base::DictionaryValue*
Serialize
() const;
misspelling.cc
28
result->Append(action.
Serialize
());
54
base::DictionaryValue* Misspelling::
Serialize
() const {
/external/chromium_org/courgette/
adjustment_method_unittest.cc
60
std::string
Serialize
(courgette::AssemblyProgram *program) const {
87
std::string s1 =
Serialize
(prog1);
88
std::string s2 =
Serialize
(prog2);
97
std::string s5 =
Serialize
(prog5);
98
std::string s6 =
Serialize
(prog6);
/external/chromium_org/chrome/browser/extensions/activity_log/
activity_log_policy_unittest.cc
57
ActivityLogPolicy::Util::
Serialize
(action->other()));
74
ASSERT_EQ("[\"woof\"]", ActivityLogPolicy::Util::
Serialize
(action->args()));
81
ASSERT_EQ("", ActivityLogPolicy::Util::
Serialize
(action->args()));
activity_actions.cc
29
std::string
Serialize
(const base::Value* value) {
170
result->args.reset(new std::string(
Serialize
(args())));
191
ActivityLogPolicy::Util::
Serialize
(web_request)));
264
result += " ARGS=" +
Serialize
(args_.get());
274
result += " PAGE_TITLE=" +
Serialize
(&title);
283
result += " OTHER=" +
Serialize
(other_.get());
316
std::string lhs_args = ActivityLogPolicy::Util::
Serialize
(lhs->args());
317
std::string rhs_args = ActivityLogPolicy::Util::
Serialize
(rhs->args());
342
std::string lhs_other = ActivityLogPolicy::Util::
Serialize
(lhs->other());
343
std::string rhs_other = ActivityLogPolicy::Util::
Serialize
(rhs->other())
[
all
...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
font_data_table.h
110
virtual int32_t
Serialize
(OutputStream* os);
113
virtual int32_t
Serialize
(WritableFontData* data);
/external/sfntly/cpp/src/sfntly/table/
font_data_table.h
110
virtual int32_t
Serialize
(OutputStream* os);
113
virtual int32_t
Serialize
(WritableFontData* data);
/external/chromium_org/content/browser/devtools/
devtools_browser_target.cc
55
Respond(command->NoSuchMethodErrorResponse()->
Serialize
());
68
Respond(response->
Serialize
());
70
Respond(command->NoSuchMethodErrorResponse()->
Serialize
());
117
RespondFromUIThread(response->
Serialize
());
119
RespondFromUIThread(command->NoSuchMethodErrorResponse()->
Serialize
());
devtools_protocol.h
33
virtual std::string
Serialize
() = 0;
53
virtual std::string
Serialize
() OVERRIDE;
85
std::string
Serialize
();
110
virtual std::string
Serialize
() OVERRIDE;
/external/chromium_org/ppapi/proxy/
resource_message_params.h
75
virtual void
Serialize
(IPC::Message* msg) const;
147
virtual void
Serialize
(IPC::Message* msg) const OVERRIDE;
166
virtual void
Serialize
(IPC::Message* msg) const OVERRIDE;
187
p.
Serialize
(m);
200
p.
Serialize
(m);
/external/chromium_org/net/disk_cache/simple/
simple_index_file.h
46
// see SimpleIndexFile::
Serialize
() and SeeSimpleIndexFile::LoadFromDisk()
60
void
Serialize
(Pickle* pickle) const;
69
FRIEND_TEST_ALL_PREFIXES(IndexMetadataTest,
Serialize
);
120
static scoped_ptr<Pickle>
Serialize
(
/external/chromium/chrome/browser/net/
referrer.h
118
Value*
Serialize
() const;
/external/chromium_org/base/json/
json_file_value_serializer.h
28
// We should never
serialize
directly to a file since this will block the
29
// thread. Instead,
serialize
to a string and write to the file you want on
32
// Attempt to
serialize
the data structure represented by Value into
35
virtual bool
Serialize
(const base::Value& root) OVERRIDE;
37
// Equivalent to
Serialize
(root) except binary values are omitted from the
json_string_value_serializer.cc
15
bool JSONStringValueSerializer::
Serialize
(const Value& root) {
json_string_value_serializer.h
38
// Attempt to
serialize
the data structure represented by Value into
41
virtual bool
Serialize
(const base::Value& root) OVERRIDE;
43
// Equivalent to
Serialize
(root) except binary values are omitted from the
/external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_test_util.cc
45
ASSERT_TRUE(serializer.
Serialize
(*manifest));
/external/chromium_org/chrome/browser/net/
referrer.h
118
base::Value*
Serialize
() const;
/external/chromium_org/components/nacl/browser/
nacl_validation_cache.h
34
void
Serialize
(Pickle* pickle) const;
Completed in 1480 milliseconds
1
2
3
4
5
6
7
8
9