HomeSort by relevance Sort by last modified time
    Searched refs:serialized (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium/chrome/browser/sync/util/
protobuf_unittest.cc 24 std::string serialized; local
25 ASSERT_TRUE(b.SerializeToString(&serialized));
26 ASSERT_TRUE(a.ParseFromString(serialized));
cryptographer.cc 49 std::string serialized; local
50 if (!message.SerializeToString(&serialized)) {
56 if (!default_nigori_->second->Encrypt(serialized,
  /libcore/luni/src/test/java/libcore/xml/
NamespacedAttributesLookupTest.java 108 StringBuilder serialized = new StringBuilder();
114 serialized.append(uri).append(",");
115 serialized.append(localName);
117 serialized.append(qName);
120 serialized.append("\n ");
122 serialized.append(attributes.getURI(i)).append(",");
123 serialized.append(attributes.getLocalName(i));
125 serialized.append(attributes.getQName(i));
128 serialized.append("\n http://bar+c=")
133 result.add(serialized.toString())
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
SealedObject.java 84 * the serialized data is not a multiple of the ciphers block
168 byte[] serialized = cipher.doFinal(encryptedContent);
171 new ByteArrayInputStream(serialized));
208 * the serialized data is not a multiple of the ciphers block
219 byte[] serialized = c.doFinal(encryptedContent);
222 new ByteArrayInputStream(serialized));
263 byte[] serialized = cipher.doFinal(encryptedContent);
266 new ByteArrayInputStream(serialized));
  /external/protobuf/python/google/protobuf/
message.py 135 def MergeFromString(self, serialized):
136 """Merges serialized protocol buffer data into this message.
138 When we find a field in |serialized| that is already present
148 serialized: Any object that allows us to call buffer(serialized)
154 The number of bytes read from |serialized|.
155 For non-group messages, this will always be len(serialized),
157 generally be less than len(serialized), since we must
165 def ParseFromString(self, serialized):
168 self.MergeFromString(serialized)
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
malware_details_unittest.cc 143 virtual void SendSerializedMalwareDetails(const std::string& serialized) {
149 serialized_ = serialized;
297 std::string serialized = WaitForSerializedReport(report); local
300 actual.ParseFromString(serialized);
329 std::string serialized = WaitForSerializedReport(report); local
332 actual.ParseFromString(serialized);
382 std::string serialized = WaitForSerializedReport(report); local
384 actual.ParseFromString(serialized);
421 std::string serialized = WaitForSerializedReport(report); local
423 actual.ParseFromString(serialized);
452 std::string serialized = WaitForSerializedReport(report); local
509 std::string serialized = WaitForSerializedReport(report); local
576 std::string serialized = WaitForSerializedReport(report); local
    [all...]
malware_details.cc 268 std::string serialized; local
269 if (!report_->SerializeToString(&serialized)) {
274 sb_service_->SendSerializedMalwareDetails(serialized);
safe_browsing_blocking_page_test.cc 63 virtual void SendSerializedMalwareDetails(const std::string& serialized) {
64 reports_.push_back(serialized);
336 std::string serialized = service->GetReport(); local
339 ASSERT_TRUE(report.ParseFromString(serialized));
safe_browsing_blocking_page_unittest.cc 42 virtual void SendSerializedMalwareDetails(const std::string& serialized) {
43 details_.push_back(serialized);
safe_browsing_service.h 246 // Called on the IO thread by the MalwareDetails with the serialized
248 virtual void SendSerializedMalwareDetails(const std::string& serialized);
  /external/v8/test/mjsunit/
mirror-object.js 113 // Check that serialized handle is correct.
114 assertEquals(properties[i].value().handle(), fromJSON.properties[i].ref, 'Unexpected serialized handle');
116 // Check that serialized name is correct.
117 assertEquals(properties[i].name(), fromJSON.properties[i].name, 'Unexpected serialized name');
119 // If property type is normal property type is not serialized.
121 assertEquals(properties[i].propertyType(), fromJSON.properties[i].propertyType, 'Unexpected serialized property type');
123 assertTrue(typeof(fromJSON.properties[i].propertyType) === 'undefined', 'Unexpected serialized property type');
126 // If there are no attributes attributes are not serialized.
128 assertEquals(properties[i].attributes(), fromJSON.properties[i].attributes, 'Unexpected serialized attributes');
130 assertTrue(typeof(fromJSON.properties[i].attributes) === 'undefined', 'Unexpected serialized attributes')
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGColor.cpp 140 return m_color.serialized();
143 return m_color.serialized();
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_unittest.cc 220 std::string serialized; local
221 ASSERT_TRUE(fake_policy.SerializeToString(&serialized));
595 std::string serialized; local
598 &serialized);
635 std::string serialized = in_pol.SerializeAsString(); local
637 em::PolicyFetchResponse signed_policy = BuildProto(serialized,
669 std::string serialized; local
672 &serialized);
682 std::string serialized = in_pol.SerializeAsString(); local
684 em::PolicyFetchResponse signed_policy = BuildProto(serialized,
734 std::string serialized; local
751 std::string serialized; local
    [all...]
signed_settings.cc 749 std::string serialized; local
751 !pol.device_proxy_settings().SerializeToString(&serialized))
753 return serialized;
835 std::string serialized; local
836 if (policy_->SerializeToString(&serialized)) {
838 serialized,
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 84 final int serialized = getSerializedSize(); local
86 CodedOutputStream.computeRawVarint32Size(serialized) + serialized);
89 codedOutput.writeRawVarint32(serialized);
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py 65 But a couple tests in this file used it to check that the serialized form of
    [all...]
  /packages/apps/Email/src/com/android/email/
Preferences.java 253 HashSet<String> parseEmailSet(String serialized) throws JSONException {
255 if (!TextUtils.isEmpty(serialized)) {
256 JSONArray arr = new JSONArray(serialized);
  /external/chromium/chrome/browser/sync/glue/
preference_model_associator.cc 243 std::string serialized; local
244 JSONStringValueSerializer json(&serialized);
252 preference.set_value(serialized);
  /external/protobuf/src/google/protobuf/
test_util.h 100 static void ExpectAllFieldsAndExtensionsInOrder(const string& serialized);
  /external/webkit/Source/WebCore/html/canvas/
CanvasStyle.h 57 String color() const { ASSERT(m_type == RGBA || m_type == CMYKA); return Color(m_rgba).serialized(); }
  /external/webkit/Source/WebCore/platform/graphics/
Color.h 95 // Returns the color serialized according to HTML5
97 String serialized() const;
99 // Returns the color serialized as either #RRGGBB or #RRGGBBAA
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLAppletElement11.js 78 The object attribute specifies the serialized applet file.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLAppletElement11.js 78 The object attribute specifies the serialized applet file.
  /external/chromium/chrome/browser/sync/
profile_sync_service_preference_unittest.cc 170 std::string serialized; local
171 JSONStringValueSerializer json(&serialized);
173 return serialized;
  /frameworks/base/core/java/android/content/
IntentSender.java 118 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {

Completed in 1035 milliseconds

1 2