Lines Matching defs:locate
250 std::size_t locate = 0;
251 while (locate < configInfo.size()) {
252 info[locate].startOfServiceId = configInfo[locate].startOfServiceId;
253 info[locate].endOfServiceId = configInfo[locate].endOfServiceId;
254 info[locate].startOfCodeScheme = configInfo[locate].startOfCodeScheme;
255 info[locate].endOfCodeScheme = configInfo[locate].endOfCodeScheme;
256 info[locate].selected = configInfo[locate].selected;
257 locate++;
614 for (size_t locate = 0; locate < len; locate++) {
615 if (cellBroadcastInfo[locate].startOfServiceId > cellBroadcastInfo[locate].endOfServiceId) {
618 } else if (cellBroadcastInfo[locate].startOfServiceId < cellBroadcastInfo[locate].endOfServiceId) {
619 mids += std::to_string(cellBroadcastInfo[locate].startOfServiceId) + "-" +
620 std::to_string(cellBroadcastInfo[locate].endOfServiceId) + COMMA_STR;
622 mids += std::to_string(cellBroadcastInfo[locate].startOfServiceId) + COMMA_STR;
624 if (cellBroadcastInfo[locate].startOfCodeScheme > cellBroadcastInfo[locate].endOfCodeScheme) {
627 } else if (cellBroadcastInfo[locate].startOfCodeScheme < cellBroadcastInfo[locate].endOfCodeScheme) {
628 dcss += std::to_string(cellBroadcastInfo[locate].startOfCodeScheme) + "-" +
629 std::to_string(cellBroadcastInfo[locate].endOfCodeScheme) + COMMA_STR;
631 dcss += std::to_string(cellBroadcastInfo[locate].startOfCodeScheme) + COMMA_STR;