Home
last modified time | relevance | path

Searched refs:new_data (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Drepeated_field_unittest.cc1493 Nested* new_data = new Nested; in TEST_F() local
1494 new_data->set_bb(i); in TEST_F()
1495 data.push_back(new_data); in TEST_F()
1497 new_data = goldenproto.add_repeated_nested_message(); in TEST_F()
1498 new_data->set_bb(i); in TEST_F()
1512 string* new_data = new string; in TEST_F() local
1513 *new_data = "name-" + SimpleItoa(i); in TEST_F()
1514 data.push_back(new_data); in TEST_F()
1516 new_data = goldenproto.add_repeated_string(); in TEST_F()
1517 *new_data = "name-" + SimpleItoa(i); in TEST_F()
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dvalue.cpp214 int SetMutableBufferValue(Value* value, const char* new_data, int size) { in SetMutableBufferValue() argument
215 return SetPtrValue<char, MUTABLE_BUFFER_VALUE_TYPE>(value, new_data, size); in SetMutableBufferValue()
Dvalue.h68 int SetMutableBufferValue(Value* value, const char* new_data, int size);
/frameworks/native/libs/vr/libpdx/private/pdx/
Dutility.h74 void* new_data = data_ ? std::realloc(data_, size) : std::malloc(size); in reserve() local
76 data_ = static_cast<uint8_t*>(new_data); in reserve()