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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Misc/
serialized-diags.h 2 // to be used with serialized-diagnostics.c to show
3 // how errors are handled with #includes in serialized
serialized-diags.c 26 #include "serialized-diags.h"
41 // CHECK: {{.*[/\\]}}serialized-diags.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized]
42 // CHECK: Range: {{.*[/\\]}}serialized-diags.c:3:12 {{.*[/\\]}}serialized-diags.c:3:18
43 // CHECK: +-{{.*[/\\]}}serialized-diags.c:2:13: note: initialize the variable 'voodoo' to silence this warning []
44 // CHECK: +-FIXIT: ({{.*[/\\]}}serialized-diags.c:2:13 - {{.*[/\\]}}serialized-diags.c:2:13): " = 0"
45 // CHECK: {{.*[/\\]}}serialized-diags.c:8:22: error: expected ';' after expression []
46 // CHECK: FIXIT: ({{.*[/\\]}}serialized-diags.c:8:22 - {{.*[/\\]}}serialized-diags.c:8:22): ";
    [all...]
serialized-diags-single-issue.c 11 // if we can handle serialized diagnostics that contain only one diagnostic.
13 // CHECK: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized] [Semantic Issue]
14 // CHECK: Range: {{.*}}serialized-diags-single-issue.c:3:12 {{.*}}serialized-diags-single-issue.c:3:18
15 // CHECK: +-{{.*}}serialized-diags-single-issue.c:2:13: note: initialize the variable 'voodoo' to silence this warning []
16 // CHECK: +-Range: {{.*}}serialized-diags-single-issue.c:2:13 {{.*}}serialized-diags-single-issue.c:2:13
17 // CHECK: +-FIXIT: ({{.*}}serialized-diags-single-issue.c:2:13 - {{.*}}serialized-diags-single-issue.c:2:13): " = 0"
24 // CHECK-MULT: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitial (…)
    [all...]
serialized-diags.m 18 // This test checks that serialized diagnostics handle notes with no source location.
20 // CHECK: {{.*[/\\]}}serialized-diags.m:8:4: error: use of undeclared identifier '_self'; did you mean 'self'? [] [Semantic Issue]
21 // CHECK: Range: {{.*[/\\]}}serialized-diags.m:8:4 {{.*[/\\]}}serialized-diags.m:8:9
23 // CHECK: FIXIT: ({{.*[/\\]}}serialized-diags.m:8:4 - {{.*[/\\]}}serialized-diags.m:8:9): "self"
26 // CHECK: {{.*[/\\]}}serialized-diags.m:1:12: warning: class 'Foo' defined without specifying a base class [-Wobjc-root-class] [Semantic Issue]
28 // CHECK: +-{{.*[/\\]}}serialized-diags.m:1:15: note: add a super class to fix this problem [] [Semantic Issue]
serialized-diags-no-category.c 10 // CHECK: {{.*[/\\]}}serialized-diags-no-category.c:1:2: error: foo []
  /external/clang/test/ARCMT/
check-with-serialized-diag.m 42 // CHECK: {{.*}}check-with-serialized-diag.m:32:4: error: [rewriter] it is not safe to remove 'retain' message on an __unsafe_unretained type
44 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:34:4: error: [rewriter] it is not safe to remove 'retain' message on a global variable
46 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:32:4: error: ARC forbids explicit message send of 'retain'
47 // CHECK-NEXT: Range: {{.*}}check-with-serialized-diag.m:32:23 {{.*}}check-with-serialized-diag.m:32:29
49 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:34:4: error: ARC forbids explicit message send of 'retain'
50 // CHECK-NEXT: Range: {{.*}}check-with-serialized-diag.m:34:15 {{.*}}check-with-serialized-diag.m:34:21
52 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:35:4: error: ARC forbids explicit message send of 'retainCount'
53 // CHECK-NEXT: Range: {{.*}}check-with-serialized-diag.m:35:6 {{.*}}check-with-serialized-diag.m:35:1
    [all...]
  /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));
  /external/smack/src/org/apache/harmony/javax/security/sasl/
AuthorizeCallback.java 28 * Serialized field for storing authenticationID.
33 * Serialized field for storing authorizationID.
38 * Serialized field for storing authorizedID.
43 * Store authorized Serialized field.
  /external/webkit/Source/WebKit/chromium/public/
WebPageSerializerClient.h 43 // of serialized data to be saved, so we use values of following enum
45 // content. If current frame is not complete serialized, call
48 // If current frame is complete serialized, call didSerializeDataForFrame
51 // If all frames of page are complete serialized, call
60 // Receive the individual chunks of serialized and encoded data to be saved.
  /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...]
  /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/guava/guava-gwt/src/com/google/common/collect/
GwtSerializationDependencies.java 30 * heuristic for determining which classes might be serialized fails. That
33 * serialized. Those types have their own dependencies -- their fields -- which
37 * serialized but doesn't assume the same about its final fields. To work around
41 * analysis, and it assumes that their fields may be serialized.
57 // None of these classes are instantiated, let alone serialized:
EmptyImmutableSortedSet_CustomFieldSerializer.java 39 * Nothing we can do, but we're already assuming the serialized form is
47 * EmptyImmutableSortedSet before it's serialized. Since
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 46 * returns array of objects to be de/serialized in tests, and the second
56 * serialized objects. This mode should be run on a pure
76 * @return array of objects to be de/serialized in tests.
81 * Tests that data objects can be serialized and deserialized without
170 * Interface to compare (de)serialized objects
180 * @param initial - initial object used for creating serialized form
318 * @param comparator - for comparing (de)serialized objects
355 * @param comparator - for comparing (de)serialized objects
367 * Verifies that object can be smoothly serialized/deserialized.
372 * @param object - to be serialized/deserialize
    [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...]
  /external/guava/guava-testlib/src/com/google/common/testing/
SerializableTester.java 55 * @return the re-serialized object
57 * serialized or deserialized
66 * re-serialized object is equal to the provided object, that the hashcodes
67 * are identical, and that the class of the re-serialized object is identical
88 * @return the re-serialized object
90 * serialized or deserialized
91 * @throws AssertionFailedError if the re-serialized object is not equal to
  /external/icu4c/common/unicode/
ucnvsel.h 39 * A converter selector can be serialized into a buffer and reopened
40 * from the serialized form.
114 * Open a selector from its serialized form.
117 * Using a serialized form from a different machine (endianness/charset) is supported.
119 * @param buffer pointer to the serialized form of a converter selector;
133 * The serialized form is portable to different machines.
137 * serialized form of this converter selector
  /external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.h 41 // A single shared object will be used in the serialized list.
45 // A single shared object will be used for each integer in the serialized list.
49 // A single shared object will be used for each string in the serialized list.
55 // of these strings in the serialized list.
61 // for each identical array in the serialized list. Warning: The integer
69 // A separate object will be used for each of these arrays in the serialized list.
75 // A separate object will be used for each dictionary in the serialized list.
  /libcore/luni/src/main/java/java/util/prefs/
NodeChangeEvent.java 31 * inheritance from {@code EventObject}, this type is not intended to be serialized
81 * because this object cannot be serialized,
89 * because this object cannot be serialized,
  /external/kernel-headers/original/linux/
genetlink.h 85 /* All generic netlink requests are serialized by a global lock. */
  /external/webkit/Source/WebCore/loader/
CachedMetadata.h 41 // Serialized data is NOT portable across architectures. However, reading the
90 // Appends an unsigned value to the end of the serialized data.
98 // Serialized metadata should have non-empty data.
119 // serialized form avoids need for a copy during serialization.
  /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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StreamCorruptedExceptionTest.java 43 fail("Failed to throw StreamCorruptedException for non serialized stream");
62 fail("Failed to throw StreamCorruptedException for non serialized stream");
  /external/chromium/chrome/browser/autofill/
data_driven_test.h 15 // implement the conversion of serialized input data to serialized output data
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
errorrecord.py 30 """Record-keeping struct that can be serialized back from a process.
47 Errors are not able to be serialized (pickled) over processes because of

Completed in 1351 milliseconds

1 2 3 4 5 6 7 8 91011>>