Home | History | Annotate | Download | only in tests

Lines Matching defs:out

51 bool ValuesEqual(const unique_ptr<T>& in, const unique_ptr<T>& out) {
52 return *in == *out;
58 const unique_ptr<vector<unique_ptr<String16>>>& out) {
60 return !out;
63 if (!out) {
67 if (in->size() != out->size()) {
73 const unique_ptr<String16>& b = (*out)[i];
98 unique_ptr<T> out;
100 status = (*s.*func)(in, &out);
107 if (!out) {
112 if (!ValuesEqual(in, out)) {
119 status = (*s.*func)(in, &out);
126 if (out) {