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

1 2 3 4 5 6 7

  /frameworks/rs/rsov/compiler/spirit/
entity.cpp 26 void Entity::Serialize(OutputWordStream &OS) const {
28 [&OS](Instruction *inst) -> void { inst->Serialize(OS); }));
entity.h 40 virtual void Serialize(OutputWordStream &OS) const;
70 std::vector<uint32_t> Serialize(T* e) {
72 e->Serialize(*OS);
pass.cpp 45 return Serialize<Module>(m1);
transformer.cpp 33 // and serialize the function definitions first.
42 // After the functions are transformed, serialize the other sections to
67 inst->Serialize(*mStream);
  /external/google-breakpad/src/processor/
map_serializers.h 69 char* Serialize(const std::map<Key, Value> &m, unsigned int *size) const;
97 char* Serialize(const AddressMap<Addr, Entry> &m, unsigned int *size) const {
98 return std_map_serializer_.Serialize(m.map_, size);
124 char* Serialize(const RangeMap<Address, Entry> &m, unsigned int *size) const;
154 char* Serialize(const ContainedRangeMap<AddrType, EntryType> *m,
map_serializers_unittest.cc 74 serialized_data_ = serializer_.Serialize(std_map_, &serialized_size_);
96 serialized_data_ = serializer_.Serialize(std_map_, &serialized_size_);
118 serialized_data_ = serializer_.Serialize(std_map_, &serialized_size_);
146 serialized_data_ = serializer_.Serialize(address_map_, &serialized_size_);
168 serialized_data_ = serializer_.Serialize(address_map_, &serialized_size_);
192 serialized_data_ = serializer_.Serialize(address_map_, &serialized_size_);
221 serialized_data_ = serializer_.Serialize(range_map_, &serialized_size_);
242 serialized_data_ = serializer_.Serialize(range_map_, &serialized_size_);
265 serialized_data_ = serializer_.Serialize(range_map_, &serialized_size_);
299 serialized_data_ = serializer_.Serialize(&crm_map_, &serialized_size_)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 0 // Serialize example
18 void Serialize(Writer& writer) const {
43 void Serialize(Writer& writer) const {
79 void Serialize(Writer& writer) const {
82 Person::Serialize(writer);
86 education_->Serialize(writer);
112 void Serialize(Writer& writer) const {
115 Person::Serialize(writer);
123 dependentItr->Serialize(writer);
151 employeeItr->Serialize(writer);
    [all...]
  /system/keymaster/
android_keymaster_messages.cpp 60 uint8_t* KeymasterResponse::Serialize(uint8_t* buf, const uint8_t* end) const {
85 buf = enforced.Serialize(buf, end);
86 return unenforced.Serialize(buf, end);
106 uint8_t* GetKeyCharacteristicsRequest::Serialize(uint8_t* buf, const uint8_t* end) const {
108 return additional_params.Serialize(buf, end);
121 buf = enforced.Serialize(buf, end);
122 return unenforced.Serialize(buf, end);
139 uint8_t* BeginOperationRequest::Serialize(uint8_t* buf, const uint8_t* end) const {
142 return additional_params.Serialize(buf, end);
161 buf = output_params.Serialize(buf, end)
    [all...]
auth_encrypted_key_blob.cpp 46 buf = nonce.Serialize(buf, end);
47 buf = encrypted_key_material.Serialize(buf, end);
48 buf = tag.Serialize(buf, end);
49 buf = hw_enforced.Serialize(buf, end);
50 buf = sw_enforced.Serialize(buf, end);
key_blob_test.cpp 77 keymaster_error_t Serialize() {
101 ASSERT_EQ(KM_ERROR_OK, Serialize());
129 ASSERT_EQ(KM_ERROR_OK, Serialize());
139 ASSERT_EQ(KM_ERROR_OK, Serialize());
156 ASSERT_EQ(KM_ERROR_OK, Serialize());
173 ASSERT_EQ(KM_ERROR_OK, Serialize());
190 ASSERT_EQ(KM_ERROR_OK, Serialize());
204 ASSERT_EQ(KM_ERROR_OK, Serialize());
209 hw_enforced_.Serialize(hw_enforced_data.get(), hw_enforced_data.get() + hw_enforced_size);
227 ASSERT_EQ(KM_ERROR_OK, Serialize());
    [all...]
integrity_assured_key_blob.cpp 58 hidden.Serialize(hidden_bytes.get(), hidden_bytes.get() + hidden_bytes_size);
96 p = key_material.Serialize(p, key_blob->end());
97 p = hw_enforced.Serialize(p, key_blob->end());
98 p = sw_enforced.Serialize(p, key_blob->end());
  /external/v8/src/snapshot/
partial-serializer.h 23 // Serialize the objects reachable from a single object pointer.
24 void Serialize(Object** o);
  /frameworks/native/libs/vr/libpdx/
serialization_tests.cpp 100 Serialize(element.first, writer);
101 Serialize(element.second, writer);
122 Serialize(value, &result);
129 Serialize(value, &result);
142 Serialize(value, &result);
149 Serialize(value, &result);
156 Serialize(value, &result);
163 Serialize(value, &result);
176 Serialize(value, &result);
183 Serialize(value, &result)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
native_enum_serialization.h 27 // IPC_ENUM_TRAITS* macros serialize enum as int, make sure that fits into
32 static void Serialize(UserType input, int32_t* output) {
58 static void Serialize(NativeEnum input, int32_t* output) {
native_struct_serialization.cc 22 void UnmappedNativeStructSerializerImpl::Serialize(
34 internal::Serialize<Array<uint8_t>>(input->data, buffer, &data, &params,
handle_interface_serialization.h 24 static void Serialize(AssociatedInterfacePtrInfo<T>& input,
47 static void Serialize(AssociatedInterfaceRequest<T>& input,
67 static void Serialize(InterfacePtr<T>& input,
87 static void Serialize(InterfaceRequest<T>& input,
103 static void Serialize(ScopedHandleBase<T>& input,
serialization_forward.h 35 // PrepareToSerialize() must be matched by a Serialize() for the same input
37 // is called for |input_1|, ..., |input_n|, Serialize() must be called for
56 void Serialize(InputUserType&& input, Args&&... args) {
58 Serialize(std::forward<InputUserType>(input),
91 void Serialize(InputUserType&& input,
99 Serialize<MojomType>(*input, buffer, output, std::forward<Args>(args)...);
  /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/libchrome/base/json/
json_string_value_serializer.cc 20 bool JSONStringValueSerializer::Serialize(const Value& root) {
json_string_value_serializer.h 25 // Attempt to serialize the data structure represented by Value into
28 bool Serialize(const base::Value& root) override;
30 // Equivalent to Serialize(root) except binary values are omitted from the
json_file_value_serializer.cc 27 bool JSONFileValueSerializer::Serialize(const base::Value& root) {
43 serializer.Serialize(root);
  /external/webrtc/talk/app/webrtc/
jsepsessiondescription_unittest.cc 113 std::string Serialize(const SessionDescriptionInterface* desc) {
218 // Test that we can serialize a JsepSessionDescription and deserialize it again.
220 std::string sdp = Serialize(jsep_desc_.get());
225 std::string parsed_sdp = Serialize(parsed_jsep_desc.get());
229 // Tests that we can serialize and deserialize a JsepSesssionDescription
232 std::string sdp = Serialize(jsep_desc_.get());
237 std::string sdp_with_candidate = Serialize(jsep_desc_.get());
242 std::string parsed_sdp_with_candidate = Serialize(parsed_jsep_desc.get());
  /system/gatekeeper/tests/
gatekeeper_messages_test.cpp 53 // create request, serialize, deserialize, and validate
56 msg.Serialize(serialized_msg.buffer.get(), serialized_msg.buffer.get() + serialized_msg.length);
82 // create request, serialize, deserialize, and validate
85 msg.Serialize(serialized_msg.buffer.get(), serialized_msg.buffer.get() + serialized_msg.length);
113 // create request, serialize, deserialize, and validate
116 msg.Serialize(serialized_msg.buffer.get(), serialized_msg.buffer.get() + serialized_msg.length);
145 // create request, serialize, deserialize, and validate
148 msg.Serialize(serialized_msg.buffer.get(), serialized_msg.buffer.get() + serialized_msg.length);
169 // create request, serialize, deserialize, and validate
172 msg.Serialize(serialized_msg.buffer.get(), serialized_msg.buffer.get() + serialized_msg.length)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
struct_unittest.cc 60 mojo::internal::Serialize<T>(input, &buf, &data, &context);
139 mojo::internal::Serialize<RectPtr>(rect, &buf, &data, nullptr);
172 mojo::internal::Serialize<RectPairPtr>(pair, &buf, &data, nullptr);
204 mojo::internal::Serialize<NamedRegionPtr>(region, &buf, &data, nullptr);
231 mojo::internal::Serialize<NamedRegionPtr>(region, &buf, &data, nullptr);
429 mojo::internal::Serialize<NativeStructPtr>(std::move(native), &buf, &data,
448 mojo::internal::Serialize<NativeStructPtr>(std::move(native), &buf, &data,
470 mojo::internal::Serialize<NativeStructPtr>(std::move(native), &buf, &data,
489 mojo::Array<uint8_t> data = Rect::Serialize(&null_struct);
501 mojo::Array<uint8_t> data = EmptyStruct::Serialize(&empty_struct)
    [all...]
union_unittest.cc 132 mojo::internal::Serialize<PodUnionPtr>(pod1, &buf, &data, false, &context);
152 mojo::internal::Serialize<PodUnionPtr>(pod1, &buf, &data, false, nullptr);
172 mojo::internal::Serialize<PodUnionPtr>(pod, &buf, &data, false, nullptr);
189 mojo::internal::Serialize<PodUnionPtr>(pod, &buf, &data, false, nullptr);
206 mojo::internal::Serialize<PodUnionPtr>(pod, &buf, &data, true, nullptr);
221 mojo::internal::Serialize<PodUnionPtr>(pod, &buf, &data, false, nullptr);
283 mojo::internal::Serialize<PodUnionPtr>(pod, &buf, &data, false, nullptr);
303 mojo::internal::Serialize<PodUnionPtr>(pod, &buf, &data, false, nullptr);
356 mojo::internal::Serialize<ObjectUnionPtr>(pod1, &buf, &data, false, nullptr);
443 mojo::internal::Serialize<Array<PodUnionPtr>>(array, &buf, &data
    [all...]

Completed in 1146 milliseconds

1 2 3 4 5 6 7