Home
last modified time | relevance | path

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

/system/bt/osi/test/
Dproperties_test.cc47 int32_t rvalue = osi_property_get_int32("very.useful.test", value); in TEST_F() local
48 ASSERT_EQ(rvalue, value); in TEST_F()
/system/tools/aidl/
Dast_java.h161 std::shared_ptr<Expression> rvalue; member
164 Assignment(std::shared_ptr<Variable> lvalue, std::shared_ptr<Expression> rvalue);
165 Assignment(std::shared_ptr<Variable> lvalue, std::shared_ptr<Expression> rvalue,
192 std::shared_ptr<Expression> rvalue; member
195 std::shared_ptr<Expression> rvalue);
231 std::shared_ptr<Expression> rvalue = nullptr; member
234 VariableDeclaration(std::shared_ptr<Variable> lvalue, std::shared_ptr<Expression> rvalue);
Dast_java.cpp168 : lvalue(l), rvalue(r) {} in Assignment()
171 : lvalue(l), rvalue(r), cast(c) {} in Assignment()
179 this->rvalue->Write(to); in Write()
214 : lvalue(l), op(o), rvalue(r) {} in Comparison()
220 this->rvalue->Write(to); in Write()
254 : lvalue(l), rvalue(r) {} in VariableDeclaration()
260 if (this->rvalue != nullptr) { in Write()
262 this->rvalue->Write(to); in Write()
/system/extras/libjsonpb/verify/
Dtest.cpp218 Json::Value rvalue; in IsJsonEq() local
219 if (!reader->parse(&*r.begin(), &*r.end(), &rvalue, &errorMessage)) in IsJsonEq()
222 return lvalue == rvalue in IsJsonEq()
227 << Json::writeString(factory, rvalue)); in IsJsonEq()