Searched refs:lvalue (Results 1 – 4 of 4) sorted by relevance
/system/tools/aidl/ |
D | ast_java.h | 160 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);
|
D | ast_java.cpp | 168 : 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() 254 : lvalue(l), rvalue(r) {} in VariableDeclaration() 256 VariableDeclaration::VariableDeclaration(std::shared_ptr<Variable> l) : lvalue(l) {} in VariableDeclaration() 259 this->lvalue->WriteDeclaration(to); in Write()
|
/system/extras/libjsonpb/verify/ |
D | test.cpp | 214 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()
|
/system/bt/btif/src/ |
D | btif_storage.cc | 1569 uint64_t lvalue; in btif_storage_load_bonded_hearing_aids() local 1571 if (btif_config_get_uint64(name, HEARING_AID_SYNC_ID, &lvalue)) in btif_storage_load_bonded_hearing_aids() 1572 hi_sync_id = lvalue; in btif_storage_load_bonded_hearing_aids() 1657 uint64_t lvalue; in btif_storage_get_hearing_aid_prop() local 1658 if (btif_config_get_uint64(addrstr, HEARING_AID_SYNC_ID, &lvalue)) { in btif_storage_get_hearing_aid_prop() 1659 *hi_sync_id = lvalue; in btif_storage_get_hearing_aid_prop()
|