Home
last modified time | relevance | path

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

/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscreen_session_dumper.cpp558 size_t commaPos = input.find_last_of(','); in SetMotionSensorvalue() local
559 if ((commaPos != std::string::npos) && (input.substr(0, commaPos) == ARG_SET_ROTATION_SENSOR)) { in SetMotionSensorvalue()
580 size_t commaPos = input.find_last_of(','); in SetRotationLockedvalue() local
581 if ((commaPos != std::string::npos) && (input.substr(0, commaPos) == ARG_SET_ROTATION_LOCK)) { in SetRotationLockedvalue()
582 std::string valueStr = input.substr(commaPos + 1); in SetRotationLockedvalue()
656 size_t commaPos = input.find_last_of(','); in SetHoverStatusChange() local
662 if ((commaPos != std::string::npos) && (input.substr(0, commaPos) == ARG_SET_HOVER_STATUS)) { in SetHoverStatusChange()
663 std::string valueStr = input.substr(commaPos + 1); in SetHoverStatusChange()
720 size_t commaPos = input.find_last_of(','); in SetHallAndPostureStatus() local
721 …if ((commaPos != std::string::npos) && (input.substr(0, commaPos) == ARG_SET_POSTURE_HALL_STATUS))… in SetHallAndPostureStatus()
[all …]
/ohos5.0/drivers/peripheral/clearplay/hdi_service/src/
H A Dmedia_key_session_service.cpp70 size_t commaPos = 0; in ProcessMediaKeyResponse() local
75 … std::vector<uint8_t>(licenseResponse.begin() + commaPos, licenseResponse.begin() + i)); in ProcessMediaKeyResponse()
76 commaPos = i + 1; in ProcessMediaKeyResponse()
79 …keyIdAndValuePairs.push_back(std::vector<uint8_t>(licenseResponse.begin() + commaPos, licenseRespo… in ProcessMediaKeyResponse()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H A Dmtp_medialibrary_manager.cpp642 size_t commaPos = dataPath.rfind("."); in GetThumbUri() local
644 …if (commaPos == std::string::npos || underlinePos == std::string::npos || commaPos < underlinePos)… in GetThumbUri()
648 std::string suffixStr = dataPath.substr(commaPos); in GetThumbUri()
649 std::string lastStr = dataPath.substr(underlinePos, commaPos - underlinePos); in GetThumbUri()