Home
last modified time | relevance | path

Searched refs:valueList (Results 1 – 25 of 81) sorted by relevance

1234

/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/
H A Dap_stations_manager_test.cpp175 valueList.push_back(value2);
176 valueList.push_back(value1);
177 valueList.push_back(value3);
193 valueList.push_back(value2);
194 valueList.push_back(value1);
195 valueList.push_back(value3);
211 valueList.push_back(value3);
212 valueList.push_back(value1);
213 valueList.push_back(value2);
232 valueList.push_back(value2);
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Ddata_query.cpp391 query_->In(field, valueList); in In()
402 query_->In(field, valueList); in In()
413 query_->In(field, valueList); in In()
422 std::vector<std::string> myValueList(valueList); in In()
425 query_->In(field, valueList); in In()
436 query_->NotIn(field, valueList); in NotIn()
447 query_->NotIn(field, valueList); in NotIn()
458 query_->NotIn(field, valueList); in NotIn()
470 query_->NotIn(field, valueList); in NotIn()
740 for (T object : valueList) { in AppendCommonList()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/
H A Ddata_query.h283 DataQuery &In(const std::string &field, const std::vector<int> &valueList);
291 DataQuery &In(const std::string &field, const std::vector<int64_t> &valueList);
299 DataQuery &In(const std::string &field, const std::vector<double> &valueList);
307 DataQuery &In(const std::string &field, const std::vector<std::string> &valueList);
315 DataQuery &NotIn(const std::string &field, const std::vector<int> &valueList);
323 DataQuery &NotIn(const std::string &field, const std::vector<int64_t> &valueList);
331 DataQuery &NotIn(const std::string &field, const std::vector<double> &valueList);
339 DataQuery &NotIn(const std::string &field, const std::vector<std::string> &valueList);
672 const std::vector<T> &valueList);
675 std::vector<std::string> &valueList);
/ohos5.0/base/update/updateservice/foundations/ability/utils/include/
H A Djson_builder.h70 JsonBuilder &Append(const std::string &key, const std::vector<JsonBuilder> &valueList) in Append() argument
72 std::vector<JsonBuilder>::size_type valueListSize = valueList.size(); in Append()
73 if (!valueList.empty()) { in Append()
77 jsonArray.Append(valueList[i].ToJson()); in Append()
/ohos5.0/base/powermgr/thermal_manager/test/unittest/src/
H A Dthermal_action_report_test.cpp118 std::vector<uint32_t> valueList; in ActionValueDecision() local
123 valueList.push_back(stoi(actionIter.actionValue)); in ActionValueDecision()
126 valueList.push_back(stoi(actionIter.actionValue)); in ActionValueDecision()
132 if (valueList.empty()) { in ActionValueDecision()
136 value = *max_element(valueList.begin(), valueList.end()); in ActionValueDecision()
138 value = *min_element(valueList.begin(), valueList.end()); in ActionValueDecision()
149 std::vector<float> valueList; in LcdValueDecision() local
159 valueList.push_back(stof(actionIter.actionValue)); in LcdValueDecision()
171 if (valueList.empty()) { in LcdValueDecision()
175 value = *max_element(valueList.begin(), valueList.end()); in LcdValueDecision()
[all …]
/ohos5.0/base/telephony/core_service/utils/vcard/src/
H A Dvcard_contact.cpp697 std::vector<std::string> valueList = GetValueListFromParasMap(rawValue, propValue, parasMap); in AddIms() local
698 for (std::string value : valueList) { in AddIms()
724 nameData_->SetPhoneticGiven((valueList.size() != 0) ? valueList[0] : ""); in AddNameData()
727 nameData_->SetPhoneticMiddle((valueList.size() != 0) ? valueList[0] : ""); in AddNameData()
730 nameData_->SetPhoneticFamily((valueList.size() != 0) ? valueList[0] : ""); in AddNameData()
978 std::vector<std::string> valueList = in AddEmailsData() local
980 std::string address = (valueList.size() != 0) ? valueList[0] : ""; in AddEmailsData()
981 std::string displayname = (valueList.size() >= SIZE_TWO) ? valueList[1] : ""; in AddEmailsData()
1110 object->InitWebsite((valueList.size() > SIZE_ZERO) ? valueList[VALUE_INDEX_ZERO] : ""); in AddWebSiteDatas()
1111 object->SetLabelId((valueList.size() > SIZE_ONE) ? valueList[VALUE_INDEX_ONE] : ""); in AddWebSiteDatas()
[all …]
H A Dvcard_constructor.cpp814 std::vector<std::string> valueList = { email, displayName }; in AddEmailLine() local
815 bool needAddCharset = IsNeedCharsetParam(valueList); in AddEmailLine()
816 bool needAddQuotedPrintable = needQP_ && !VCardUtils::IsPrintableAscii(valueList); in AddEmailLine()
825 void VCardConstructor::AddLine(const std::string &type, std::vector<std::string> valueList) in AddLine() argument
827 AddLine(type, valueList, false, false); in AddLine()
858 bool needAddCharset = IsNeedCharsetParam(valueList); in AddLineWithCharsetAndQP()
859 bool needAddQuotedPrintable = needQP_ && !VCardUtils::IsPrintableAscii({ valueList }); in AddLineWithCharsetAndQP()
860 AddLine(type, valueList, needAddCharset, needAddQuotedPrintable); in AddLineWithCharsetAndQP()
866 AddLine(type, {}, valueList, needCharset, needQuotedPrintable); in AddLine()
870 std::vector<std::string> valueList, bool needCharset, bool needQuotedPrintable) in AddLine() argument
[all …]
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/intelligentvoice/
H A Dinterface_i_intell_voice_engine_adapter.md26 | [GetParameter](#getparameter) ([in] String keyList, [out] String valueList) | 获取唤醒算法参数。 |
81 IIntellVoiceEngineAdapter::GetParameter ([in] String keyList, [out] String valueList )
94 | valueList | 返回值列表,多个返回值之间通过分号分割。 |
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dquery_helper.cpp630 std::vector<int> valueList; in GetIntegerList() local
637 valueList.push_back(StringToInt(words.at(elementPointer))); in GetIntegerList()
641 return valueList; in GetIntegerList()
650 std::vector<int64_t> valueList; in GetLongList() local
657 valueList.push_back(StringToLong(words.at(elementPointer))); in GetLongList()
661 return valueList; in GetLongList()
670 std::vector<double> valueList; in GetDoubleList() local
677 valueList.push_back(StringToDouble(words.at(elementPointer))); in GetDoubleList()
681 return valueList; in GetDoubleList()
690 std::vector<std::string> valueList; in GetStringList() local
[all …]
/ohos5.0/base/telephony/core_service/utils/vcard/include/
H A Dvcard_constructor.h54 void AddLine(const std::string &type, std::vector<std::string> valueList);
60 …const std::string &type, std::vector<std::string> valueList, bool needCharset, bool needQuotedPrin…
61 …t std::string &type, const std::vector<std::string> &paramList, std::vector<std::string> valueList,
68 void AddLineWithCharsetAndQP(const std::string &type, std::vector<std::string> valueList);
/ohos5.0/base/security/access_token/services/accesstokenmanager/main/cpp/src/permission/
H A Dpermission_definition_cache.cpp151 void PermissionDefinitionCache::StorePermissionDef(std::vector<GenericValues>& valueList) in StorePermissionDef() argument
159 valueList.emplace_back(genericValues); in StorePermissionDef()
164 …onDefinitionCache::StorePermissionDef(AccessTokenID tokenID, std::vector<GenericValues>& valueList) in StorePermissionDef() argument
173 valueList.emplace_back(genericValues); in StorePermissionDef()
/ohos5.0/base/update/updateservice/interfaces/inner_api/feature/update/model/task/src/
H A Dtask_body.cpp32 std::vector<JsonBuilder> GetArrayJsonBuilderList(const std::vector<T> &valueList) in GetArrayJsonBuilderList() argument
35 for (T value : valueList) { in GetArrayJsonBuilderList()
/ohos5.0/base/security/access_token/services/accesstokenmanager/main/cpp/include/permission/
H A Dpermission_definition_cache.h53 void StorePermissionDef(std::vector<GenericValues>& valueList);
55 void StorePermissionDef(AccessTokenID tokenID, std::vector<GenericValues>& valueList);
H A Dpermission_policy_set.h72 void StorePermissionDef(std::vector<GenericValues>& valueList) const;
73 void StorePermissionState(std::vector<GenericValues>& valueList) const;
/ohos5.0/base/security/access_token/services/accesstokenmanager/main/cpp/include/token/
H A Dhap_token_info_inner.h45 void StoreHapInfo(std::vector<GenericValues>& valueList) const;
69 void StoreHapBasicInfo(std::vector<GenericValues>& valueList) const;
/ohos5.0/foundation/communication/nfc/services/src/external_deps/
H A Dapp_data_parser.cpp270 std::vector<std::string> valueList; in UpdateTagAppList() local
273 valueList.emplace_back(data.value); in UpdateTagAppList()
279 valueList.emplace_back(data.value); in UpdateTagAppList()
299 if (std::find(valueList.begin(), valueList.end(), nfcType) == valueList.end()) { in UpdateTagAppList()
300 valueList.emplace_back(nfcType); in UpdateTagAppList()
305 if (valueList.empty()) { in UpdateTagAppList()
313 tagAppTechInfo.tech = valueList; in UpdateTagAppList()
/ohos5.0/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/hdi_adapter/
H A Dheadset_adapter_host_manager.cpp71 int32_t HeadsetAdapterHostManager::GetParameter(const std::string &keyList, std::string &valueList) in GetParameter() argument
74 return headsetAdapterProxy1_0_->GetParameter(keyList, valueList); in GetParameter()
H A Dadapter_host_manager.cpp83 int32_t AdapterHostManager::GetParameter(const std::string &keyList, std::string &valueList) in GetParameter() argument
86 return adapterProxy1_0_->GetParameter(keyList, valueList); in GetParameter()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_server_profile.cpp510 AttReadByTypeRspDataList valueList[GATT_VALUE_LEN_MAX] = {{{0}, nullptr}}; in FindIncludedServiceResponse() local
520 valueList[0].attHandle.attHandle = isvc->handle_; in FindIncludedServiceResponse()
521 valueList[0].attributeValue = (uint8_t *)malloc(len); in FindIncludedServiceResponse()
522 if (valueList[0].attributeValue == nullptr) { in FindIncludedServiceResponse()
536 ATT_ReadByTypeResponse(connectHandle, len, valueList, sizeof(uint8_t)); in FindIncludedServiceResponse()
537 free(valueList[0].attributeValue); in FindIncludedServiceResponse()
571 AttReadByTypeRspDataList valueList[GATT_VALUE_LEN_MAX] = {{{0}, nullptr}}; in DiscoverCharacteristicResponse() local
754 AttReadByTypeRspDataList valueList[GATT_VALUE_LEN_MAX] = {{{0}, nullptr}}; in ReadUsingCharacteristicByUuidResponseStep1() local
2091 AttReadByTypeRspDataList valueList[GATT_VALUE_LEN_MAX] = {{{0}, nullptr}}; in SendReadUsingCharacteristicValueResp() local
2097 valueList->attHandle.attHandle = handle; in SendReadUsingCharacteristicValueResp()
[all …]
/ohos5.0/drivers/peripheral/intelligent_voice/hdi_service/engine/
H A Dintell_voice_engine_adapter_impl.cpp79 …32_t IntellVoiceEngineAdapterImpl::GetParameter(const std::string &keyList, std::string &valueList) in GetParameter() argument
82 return engine_->GetParameter(keyList, [&](const std::string &retStr) { valueList = retStr; }); in GetParameter()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/att/
H A Datt_receive.c52 static void AttReadFree(AttRead *valueList, uint16_t num, uint8_t type);
274 static void AttReadFree(AttRead *valueList, uint16_t num, uint8_t type) in AttReadFree() argument
277 if (valueList == NULL) { in AttReadFree()
285 MEM_MALLOC.free(valueList->readHandleListNum.valueList[index].attributeValue); in AttReadFree()
287 MEM_MALLOC.free(valueList->readGroupResponse.attributeData[index].attributeValue); in AttReadFree()
292 MEM_MALLOC.free(valueList->readHandleListNum.valueList); in AttReadFree()
294 MEM_MALLOC.free(valueList->readGroupResponse.attributeData); in AttReadFree()
873 attReadObj.readHandleListNum.valueList = in AttReadByTypeResponse()
876 …attReadObj.readHandleListNum.valueList[indexNum].attributeValue = MEM_MALLOC.alloc(len - STEP_TWO); in AttReadByTypeResponse()
878 …&attReadObj.readHandleListNum.valueList[indexNum], sizeof(AttReadByTypeRspDataList), data, STEP_TW… in AttReadByTypeResponse()
[all …]
H A Datt_send_response.c583 … MEM_MALLOC.free(readByTypeResAsyncPtr->attReadByTypeRspContext.valueList[index].attributeValue); in AttReadByTypeResponseFree()
585 MEM_MALLOC.free(readByTypeResAsyncPtr->attReadByTypeRspContext.valueList); in AttReadByTypeResponseFree()
638 &(readByTypeResAsyncPtr->attReadByTypeRspContext.valueList[index]), in AttReadByTypeResponseAsync()
642 readByTypeResAsyncPtr->attReadByTypeRspContext.valueList[index].attributeValue, in AttReadByTypeResponseAsync()
683 …uint16_t connectHandle, uint8_t length, const AttReadByTypeRspDataList *valueList, uint16_t attrVa… in ATT_ReadByTypeResponse() argument
699 attReadByTypeDataPtr[index].attHandle = valueList[index].attHandle; in ATT_ReadByTypeResponse()
708 valueList[index].attributeValue, in ATT_ReadByTypeResponse()
716 readByTypeResAsyncPtr->attReadByTypeRspContext.valueList = attReadByTypeDataPtr; in ATT_ReadByTypeResponse()
1005 void ATT_ReadMultipleResponse(uint16_t connectHandle, const Buffer *valueList) in ATT_ReadMultipleResponse() argument
1012 bufferPtr = BufferRefMalloc(valueList); in ATT_ReadMultipleResponse()
/ohos5.0/base/print/print_fwk/frameworks/ohprint/src/
H A Dprint_helper.cpp665 Print_ErrorCode ConvertStringVectorToPropertyList(const std::vector<std::string> &valueList, in ConvertStringVectorToPropertyList() argument
668 if (valueList.size() == 0) { in ConvertStringVectorToPropertyList()
672 propertyList->list = new (std::nothrow) Print_Property[valueList.size()]; in ConvertStringVectorToPropertyList()
677 if (memset_s(propertyList->list, valueList.size() * sizeof(Print_Property), 0, in ConvertStringVectorToPropertyList()
678 valueList.size() * sizeof(Print_Property)) != 0) { in ConvertStringVectorToPropertyList()
685 for (size_t i = 0; i < valueList.size(); i++) { in ConvertStringVectorToPropertyList()
686 std::string keyVal = valueList[i]; in ConvertStringVectorToPropertyList()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/examples/showcase/src/main/js/default/pages/component/input/button/attr/
H A Dattr.js21 valueList: ['for1', 'for2']
/ohos5.0/base/print/print_fwk/frameworks/ohprint/include/
H A Dprint_helper.h29 Print_ErrorCode ConvertStringVectorToPropertyList(const std::vector<std::string> &valueList,

1234