Home
last modified time | relevance | path

Searched refs:lvalue (Results 1 – 3 of 3) sorted by relevance

/system/tools/aidl/
Dast_java.h160 std::shared_ptr<Variable> lvalue; 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,
190 std::shared_ptr<Expression> lvalue; member
194 Comparison(std::shared_ptr<Expression> lvalue, const std::string& op,
221 std::shared_ptr<Variable> lvalue = nullptr; member
224 explicit VariableDeclaration(std::shared_ptr<Variable> lvalue);
225 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()
174 this->lvalue->Write(to); in Write()
214 : lvalue(l), op(o), rvalue(r) {} in Comparison()
218 this->lvalue->Write(to); in Write()
245 : lvalue(l), rvalue(r) {} in VariableDeclaration()
247 VariableDeclaration::VariableDeclaration(std::shared_ptr<Variable> l) : lvalue(l) {} in VariableDeclaration()
250 this->lvalue->WriteDeclaration(to); in Write()
/system/extras/libjsonpb/verify/
Dtest.cpp214 Json::Value lvalue; in IsJsonEq() local
216 if (!reader->parse(&*l.begin(), &*l.end(), &lvalue, &errorMessage)) in IsJsonEq()
222 return lvalue == rvalue in IsJsonEq()
224 << Json::writeString(factory, lvalue)) in IsJsonEq()
225 : (::testing::AssertionFailure() << Json::writeString(factory, lvalue) in IsJsonEq()