Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 9 of 9) sorted by relevance

/device/google/trout/hal/vehicle/2.0/agl_build/prebuilt/include/android/hardware/automotive/vehicle/2.0/
Dtypes.h5143 …(const ::android::hardware::automotive::vehicle::V2_0::VehiclePropertyType lhs, const ::android::h…
5144 return static_cast<int32_t>(static_cast<int32_t>(lhs) | static_cast<int32_t>(rhs));
5146 constexpr int32_t operator|(const int32_t lhs, const ::android::hardware::automotive::vehicle::V2_0…
5147 return static_cast<int32_t>(lhs | static_cast<int32_t>(rhs));
5149 …(const ::android::hardware::automotive::vehicle::V2_0::VehiclePropertyType lhs, const int32_t rhs)…
5150 return static_cast<int32_t>(static_cast<int32_t>(lhs) | rhs);
5152 …(const ::android::hardware::automotive::vehicle::V2_0::VehiclePropertyType lhs, const ::android::h…
5153 return static_cast<int32_t>(static_cast<int32_t>(lhs) & static_cast<int32_t>(rhs));
5155 constexpr int32_t operator&(const int32_t lhs, const ::android::hardware::automotive::vehicle::V2_0…
5156 return static_cast<int32_t>(lhs & static_cast<int32_t>(rhs));
[all …]
/device/google/contexthub/firmware/os/algos/calibration/online_calibration/common_data/
Dcalibration_data.cc21 CalibrationTypeFlags operator|(CalibrationTypeFlags lhs, in operator |() argument
23 return static_cast<CalibrationTypeFlags>(static_cast<char>(lhs) | in operator |()
27 bool operator&(CalibrationTypeFlags lhs, CalibrationTypeFlags rhs) { in operator &() argument
28 return static_cast<char>(lhs) & static_cast<char>(rhs); in operator &()
31 CalibrationTypeFlags& operator|=(CalibrationTypeFlags& lhs, in operator |=() argument
33 lhs = static_cast<CalibrationTypeFlags>(static_cast<char>(lhs) | in operator |=()
35 return lhs; in operator |=()
Dcalibration_data.h70 CalibrationTypeFlags operator|(CalibrationTypeFlags lhs,
73 bool operator&(CalibrationTypeFlags lhs, CalibrationTypeFlags rhs);
75 CalibrationTypeFlags& operator|=(CalibrationTypeFlags& lhs,
/device/google/gs-common/modem/dump_modemlog/include/
Ddumper.h25 friend bool operator==(const LogDumpInfo& lhs, const LogDumpInfo& rhs) {
26 return (lhs.limit == rhs.limit) && (lhs.src_dir == rhs.src_dir) &&
27 (lhs.dest_dir == rhs.dest_dir) && (lhs.prefix == rhs.prefix);
49 friend bool operator==(const FileCopyInfo& lhs, const FileCopyInfo& rhs) {
50 return (lhs.src_dir == rhs.src_dir) && (lhs.dest_dir == rhs.dest_dir);
/device/google/cuttlefish/tests/graphics/src/com/android/cuttlefish/tests/
DCuttlefishDisplayHotplugTest.java345 Correspondence.from((GuestDisplayInfo lhs, AddDisplayParams rhs) -> {
346 return lhs.width() == rhs.width() &&
347 lhs.height() == rhs.height();
351 Correspondence.from((HostDisplayInfo lhs, AddDisplayParams rhs) -> {
352 return lhs.width() == rhs.width() &&
353 lhs.height() == rhs.height();
/device/generic/goldfish/gnss/
DGnssConfiguration.cpp87 const BlocklistedSource& lhs, const BlocklistedSource& rhs) const noexcept { in operator ()() argument
88 return (lhs.constellation == rhs.constellation) && (lhs.svid == rhs.svid); in operator ()()
DGnssConfiguration.h45 bool operator()(const BlocklistedSource& lhs,
/device/generic/goldfish/camera/
Dlist_qemu_cameras.cpp117 bool operator()(Rect<uint16_t> lhs, Rect<uint16_t> rhs) const { in operator ()()
118 const size_t lArea = lhs.area(); in operator ()()
126 return lhs.width < rhs.width; in operator ()()
/device/google/cuttlefish/guest/hals/camera/
Dvsock_camera_device_session_3_4.h95 bool operator()(const ReadVsockRequest& lhs, const ReadVsockRequest& rhs) { in operator()
96 return lhs.frame_number > rhs.frame_number; in operator()