Home
last modified time | relevance | path

Searched refs:lvalue (Results 1 – 4 of 4) 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,
230 std::shared_ptr<Variable> lvalue = nullptr; member
233 explicit VariableDeclaration(std::shared_ptr<Variable> lvalue);
234 VariableDeclaration(std::shared_ptr<Variable> lvalue, std::shared_ptr<Expression> rvalue);
Dast_java.cpp165 : lvalue(l), rvalue(r) {} in Assignment()
168 : lvalue(l), rvalue(r), cast(c) {} in Assignment()
171 this->lvalue->Write(to); in Write()
211 : lvalue(l), op(o), rvalue(r) {} in Comparison()
215 this->lvalue->Write(to); in Write()
251 : lvalue(l), rvalue(r) {} in VariableDeclaration()
253 VariableDeclaration::VariableDeclaration(std::shared_ptr<Variable> l) : lvalue(l) {} in VariableDeclaration()
256 this->lvalue->WriteDeclaration(to); in Write()
/system/extras/libjsonpb/verify/
Dtest.cpp221 Json::Value lvalue; in IsJsonEq() local
222 if (!reader.parse(l, lvalue)) in IsJsonEq()
230 return lvalue == rvalue in IsJsonEq()
232 << writer.write(lvalue)) in IsJsonEq()
234 << writer.write(lvalue) << "\n does not equal \n" in IsJsonEq()
/system/bt/btif/src/
Dbtif_storage.cc1565 uint64_t lvalue; in btif_storage_load_bonded_hearing_aids() local
1567 if (btif_config_get_uint64(name, HEARING_AID_SYNC_ID, &lvalue)) in btif_storage_load_bonded_hearing_aids()
1568 hi_sync_id = lvalue; in btif_storage_load_bonded_hearing_aids()
1653 uint64_t lvalue; in btif_storage_get_hearing_aid_prop() local
1654 if (btif_config_get_uint64(addrstr, HEARING_AID_SYNC_ID, &lvalue)) { in btif_storage_get_hearing_aid_prop()
1655 *hi_sync_id = lvalue; in btif_storage_get_hearing_aid_prop()