/third_party/python/Lib/test/ |
H A D | test_structseq.py | 60 for item in t1: 61 self.assertIn(item, t1)
|
/third_party/rust/crates/syn/codegen/src/ |
H A D | visit.rs | 11 fn simple_visit(item: &str, name: &Operand) -> TokenStream { in simple_visit() 12 let ident = gen::under_name(item); in simple_visit()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/ |
H A D | wpas-dbus-new-signals.py | 55 for item in val: 56 bssid = bssid + ":%02x" % item
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
H A D | wpas-dbus-new-signals.py | 55 for item in val: 56 bssid = bssid + ":%02x" % item
|
/foundation/arkui/ace_engine/interfaces/inner_api/drawable_descriptor/ |
H A D | drawable_descriptor.cpp | 110 const std::shared_ptr<Global::Resource::ResourceManager>& resourceMgr, const char* item) in PreGetDrawableItem() 112 std::string itemStr = item; in PreGetDrawableItem() 138 cJSON* item = nullptr; in PreGetPixelMapFromJsonBuf() local 140 item = cJSON_GetObjectItem(roots->child, DRAWABLEDESCRIPTOR_JSON_KEY_BACKGROUND); in PreGetPixelMapFromJsonBuf() 142 item = cJSON_GetObjectItem(roots->child, DRAWABLEDESCRIPTOR_JSON_KEY_FOREGROUND); in PreGetPixelMapFromJsonBuf() 144 if (item == nullptr) { in PreGetPixelMapFromJsonBuf() 149 if (cJSON_IsString(item)) { in PreGetPixelMapFromJsonBuf() 151 drawableiItem = PreGetDrawableItem(resourceMgr, item->valuestring); in PreGetPixelMapFromJsonBuf() 109 PreGetDrawableItem( const std::shared_ptr<Global::Resource::ResourceManager>& resourceMgr, const char* item) PreGetDrawableItem() argument
|
/foundation/barrierfree/accessibility/services/aams/test/unittest/ |
H A D | accessibility_touch_guider_test.cpp | 173 MMI::PointerEvent::PointerItem item = {}; in CreateTouchEvent() local 175 item.SetPointerId(pointId_); in CreateTouchEvent() 176 item.SetPressed(action == MMI::PointerEvent::POINTER_ACTION_UP ? false : true); in CreateTouchEvent() 177 pointerEvent->AddPointerItem(item); in CreateTouchEvent() 211 MMI::PointerEvent::PointerItem item = {}; in CreateMoveEvent() local 213 item.SetPointerId(pointId_); in CreateMoveEvent() 214 item.SetPressed(true); in CreateMoveEvent() 215 pointerEvent->AddPointerItem(item); in CreateMoveEvent()
|
/foundation/multimodalinput/input/service/mouse_event_normalize/src/ |
H A D | mouse_transform_processor.cpp | 538 PointerEvent::PointerItem item; in CheckAndPackageAxisEvent() local 539 HandleAxisPostInner(item); in CheckAndPackageAxisEvent() 724 PointerEvent::PointerItem item; in Dump() local 726 pointerEvent_->GetPointerItem(pointerEvent_->GetPointerId(), item); in Dump() 732 item.GetWindowX(), item.GetWindowY(), pointerEvent_->GetButtonId(), pointerEvent_->GetAgentWindowId(), in Dump() 733 pointerEvent_->GetTargetWindowId(), item.GetDownTime(), item.IsPressed() ? "true" : "false"); in Dump()
|
/foundation/window/window_manager/test/fuzztest/wms/window_fuzzer/ |
H A D | window_fuzzer.cpp | 727 MMI::PointerEvent::PointerItem item; in CheckWindowImplFunctionsPart8() local 733 item.SetPointerId(pointerId); in CheckWindowImplFunctionsPart8() 734 item.SetDisplayX(15); // 15 : position x in CheckWindowImplFunctionsPart8() 735 item.SetDisplayY(15); // 15 : position y in CheckWindowImplFunctionsPart8() 736 pointerEvent->AddPointerItem(item); in CheckWindowImplFunctionsPart8() 742 item.SetDisplayX(x); // 5 : position x in CheckWindowImplFunctionsPart8() 743 item.SetDisplayY(y); // 5 : position y in CheckWindowImplFunctionsPart8() 744 pointerEvent->UpdatePointerItem(pointerId, item); in CheckWindowImplFunctionsPart8()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/cloud/ |
H A D | distributeddb_cloud_assets_operation_sync_test.cpp | 67 for (const auto &item: process) { in BlockSync() 68 if (item.second.process == DistributedDB::FINISHED) { in BlockSync() 73 last = item.second; in BlockSync() 304 for (const auto &item : assets) { in CheckAssetsCount() 305 LOGI("[DistributedDBCloudAssetsOperationSyncTest] Asset name %s status %" PRIu32, item.name.c_str(), in CheckAssetsCount() 306 item.status); in CheckAssetsCount() 513 for (const auto &item: process) { in HWTEST_F() 514 if (item.second.process == DistributedDB::FINISHED) { in HWTEST_F()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/ |
H A D | distributeddb_single_ver_multi_sub_user_test.cpp | 282 for (const auto &item: process) { in BlockSync() 283 LOGD("user = %s, status = %d", item.first.c_str(), item.second.process); in BlockSync() 284 if (item.second.process != DistributedDB::FINISHED) { in BlockSync() 287 EXPECT_EQ(item.second.errCode, expectDBStatus); in BlockSync() 293 last = item.second; in BlockSync() 382 for (const auto &item: process) { in CallSync() 383 if (item.second.process == DistributedDB::FINISHED) { in CallSync()
|
/foundation/distributedhardware/device_manager/services/implementation/src/ |
H A D | device_manager_service_impl.cpp | 874 for (auto &item : profiles) { in ProcessAppUnintall() 875 int64_t tokenId = item.GetAccesser().GetAccesserTokenId(); in ProcessAppUnintall() 879 DeviceProfileConnector::GetInstance().DeleteAccessControlById(item.GetAccessControlId()); in ProcessAppUnintall() 880 listener_->OnAppUnintall(item.GetAccesser().GetAccesserBundleName()); in ProcessAppUnintall() 881 if (item.GetBindLevel() == DEVICE) { in ProcessAppUnintall() 882 userIdVec.push_back(item.GetAccesser().GetAccesserUserId()); in ProcessAppUnintall() 883 delACLInfoVec.push_back(std::pair<int32_t, std::string>(item.GetAccesser().GetAccesserUserId(), in ProcessAppUnintall() 884 item.GetAccessee().GetAccesseeDeviceId())); in ProcessAppUnintall()
|
/kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
H A D | f_uac2.c | 1046 static inline struct f_uac2_opts *to_f_uac2_opts(struct config_item *item) in to_f_uac2_opts() argument 1048 return container_of(to_config_group(item), struct f_uac2_opts, in to_f_uac2_opts() 1052 static void f_uac2_attr_release(struct config_item *item) in f_uac2_attr_release() argument 1054 struct f_uac2_opts *opts = to_f_uac2_opts(item); in f_uac2_attr_release() 1064 static ssize_t f_uac2_opts_##name##_show(struct config_item *item, \ 1067 struct f_uac2_opts *opts = to_f_uac2_opts(item); \ 1077 static ssize_t f_uac2_opts_##name##_store(struct config_item *item, \ 1080 struct f_uac2_opts *opts = to_f_uac2_opts(item); \
|
/kernel/linux/linux-5.10/sound/pci/pcxhr/ |
H A D | pcxhr_mixer.c | 657 ucontrol->value.enumerated.item[0] = chip->audio_capture_source; in pcxhr_audio_src_get() 672 if (ucontrol->value.enumerated.item[0] >= i) in pcxhr_audio_src_put() 675 if (chip->audio_capture_source != ucontrol->value.enumerated.item[0]) { in pcxhr_audio_src_put() 676 chip->audio_capture_source = ucontrol->value.enumerated.item[0]; in pcxhr_audio_src_put() 746 ucontrol->value.enumerated.item[0] = mgr->use_clock_type; in pcxhr_clock_type_get() 761 if (ucontrol->value.enumerated.item[0] >= clock_items) in pcxhr_clock_type_put() 764 if (mgr->use_clock_type != ucontrol->value.enumerated.item[0]) { in pcxhr_clock_type_put() 766 mgr->use_clock_type = ucontrol->value.enumerated.item[0]; in pcxhr_clock_type_put()
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | wm8958-dsp2.c | 459 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_mbc_enum() 481 ucontrol->value.enumerated.item[0] = wm8994->mbc_cfg; in wm8958_get_mbc_enum() 549 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_vss_enum() 571 ucontrol->value.enumerated.item[0] = wm8994->vss_cfg; in wm8958_get_vss_enum() 582 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_vss_hpf_enum() 604 ucontrol->value.enumerated.item[0] = wm8994->vss_hpf_cfg; in wm8958_get_vss_hpf_enum() 749 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_enh_eq_enum() 771 ucontrol->value.enumerated.item[0] = wm8994->enh_eq_cfg; in wm8958_get_enh_eq_enum()
|
/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | cs35l56.c | 80 int i, item, ret; in cs35l56_sync_asp1_mixer_widgets_with_firmware() local 122 item = snd_soc_enum_val_to_item(e, val[i] & CS35L56_ASP_TXn_SRC_MASK); in cs35l56_sync_asp1_mixer_widgets_with_firmware() 123 snd_soc_dapm_mux_update_power(dapm, kcontrol, item, e, NULL); in cs35l56_sync_asp1_mixer_widgets_with_firmware() 151 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val); in cs35l56_dspwait_asp1tx_get() 163 int item = ucontrol->value.enumerated.item[0]; in cs35l56_dspwait_asp1tx_put() local 174 val = snd_soc_enum_item_to_val(e, item); in cs35l56_dspwait_asp1tx_put() 182 snd_soc_dapm_mux_update_power(dapm, kcontrol, item, e, NULL); in cs35l56_dspwait_asp1tx_put()
|
H A D | wm8958-dsp2.c | 459 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_mbc_enum() 481 ucontrol->value.enumerated.item[0] = wm8994->mbc_cfg; in wm8958_get_mbc_enum() 549 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_vss_enum() 571 ucontrol->value.enumerated.item[0] = wm8994->vss_cfg; in wm8958_get_vss_enum() 582 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_vss_hpf_enum() 604 ucontrol->value.enumerated.item[0] = wm8994->vss_hpf_cfg; in wm8958_get_vss_hpf_enum() 749 int value = ucontrol->value.enumerated.item[0]; in wm8958_put_enh_eq_enum() 771 ucontrol->value.enumerated.item[0] = wm8994->enh_eq_cfg; in wm8958_get_enh_eq_enum()
|
/kernel/linux/linux-6.6/sound/pci/pcxhr/ |
H A D | pcxhr_mixer.c | 657 ucontrol->value.enumerated.item[0] = chip->audio_capture_source; in pcxhr_audio_src_get() 672 if (ucontrol->value.enumerated.item[0] >= i) in pcxhr_audio_src_put() 675 if (chip->audio_capture_source != ucontrol->value.enumerated.item[0]) { in pcxhr_audio_src_put() 676 chip->audio_capture_source = ucontrol->value.enumerated.item[0]; in pcxhr_audio_src_put() 746 ucontrol->value.enumerated.item[0] = mgr->use_clock_type; in pcxhr_clock_type_get() 761 if (ucontrol->value.enumerated.item[0] >= clock_items) in pcxhr_clock_type_put() 764 if (mgr->use_clock_type != ucontrol->value.enumerated.item[0]) { in pcxhr_clock_type_put() 766 mgr->use_clock_type = ucontrol->value.enumerated.item[0]; in pcxhr_clock_type_put()
|
/kernel/linux/linux-6.6/sound/soc/atmel/ |
H A D | mchp-pdmc.c | 140 unsigned int item; in mchp_pdmc_sinc_order_get() local 142 item = snd_soc_enum_val_to_item(e, dd->sinc_order); in mchp_pdmc_sinc_order_get() 143 uvalue->value.enumerated.item[0] = item; in mchp_pdmc_sinc_order_get() 154 unsigned int *item = uvalue->value.enumerated.item; in mchp_pdmc_sinc_order_put() local 157 if (item[0] >= e->items) in mchp_pdmc_sinc_order_put() 160 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l; in mchp_pdmc_sinc_order_put()
|
/kernel/linux/linux-6.6/sound/soc/fsl/ |
H A D | fsl_xcvr.c | 100 unsigned int *item = ucontrol->value.enumerated.item; in fsl_xcvr_arc_mode_put() local 102 xcvr->arc_mode = snd_soc_enum_item_to_val(e, item[0]); in fsl_xcvr_arc_mode_put() 113 ucontrol->value.enumerated.item[0] = xcvr->arc_mode; in fsl_xcvr_arc_mode_get() 203 unsigned int *item = ucontrol->value.enumerated.item; in fsl_xcvr_mode_put() local 207 xcvr->mode = snd_soc_enum_item_to_val(e, item[0]); in fsl_xcvr_mode_put() 226 ucontrol->value.enumerated.item[0] = xcvr->mode; in fsl_xcvr_mode_get()
|
/third_party/icu/icu4c/source/common/ |
H A D | uresdata.cpp | 168 /* formatVersion 1.1 must have a root item and at least 5 indexes */ in res_init() 986 * Need to always enumerate the entire item tree, 987 * track the lowest address of any item to use as the limit for char keys[], 988 * track the highest address of any item to return the size of the data. 992 * in places that are inaccessible by ordinary enumeration of the item tree. 1040 /* The table item key string is not locally available. */ 1052 * swap one resource item 1079 /* special offset indicating an empty item */ in ures_swapResource() 1083 /* we already swapped this resource item */ in ures_swapResource() 1133 Resource item; in ures_swapResource() local 1294 Resource item; ures_swapResource() local [all...] |
/third_party/nghttp2/src/ |
H A D | shrpx_downstream.cc | 467 auto &item = headers.back(); in append_last_header_key() local 469 realloc_concat_string_ref(balloc, item.name, StringRef{data, len}); in append_last_header_key() 474 item.name = name; in append_last_header_key() 475 item.token = http2::lookup_token(item.name); in append_last_header_key() 485 auto &item = headers.back(); in append_last_header_value() local 486 item.value = in append_last_header_value() 487 realloc_concat_string_ref(balloc, item.value, StringRef{data, len}); in append_last_header_value()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uresdata.cpp | 168 /* formatVersion 1.1 must have a root item and at least 5 indexes */ in res_init() 986 * Need to always enumerate the entire item tree, 987 * track the lowest address of any item to use as the limit for char keys[], 988 * track the highest address of any item to return the size of the data. 992 * in places that are inaccessible by ordinary enumeration of the item tree. 1040 /* The table item key string is not locally available. */ 1052 * swap one resource item 1079 /* special offset indicating an empty item */ in ures_swapResource() 1083 /* we already swapped this resource item */ in ures_swapResource() 1133 Resource item; in ures_swapResource() local 1294 Resource item; ures_swapResource() local [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uresdata.cpp | 168 /* formatVersion 1.1 must have a root item and at least 5 indexes */ in res_init() 986 * Need to always enumerate the entire item tree, 987 * track the lowest address of any item to use as the limit for char keys[], 988 * track the highest address of any item to return the size of the data. 992 * in places that are inaccessible by ordinary enumeration of the item tree. 1040 /* The table item key string is not locally available. */ 1052 * swap one resource item 1079 /* special offset indicating an empty item */ in ures_swapResource() 1083 /* we already swapped this resource item */ in ures_swapResource() 1133 Resource item; in ures_swapResource() local 1294 Resource item; ures_swapResource() local [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | component.cpp | 564 * not suport common style item: 760 const AppStyleItem *item = style->GetFirst(); in SetAnimationKeyFrames() local 761 if (item == nullptr) { in SetAnimationKeyFrames() 765 SetAnimationKeyFrames(item); in SetAnimationKeyFrames() 769 void Component::SetAnimationKeyFrames(const AppStyleItem *item) in SetAnimationKeyFrames() argument 771 if (item == nullptr) { in SetAnimationKeyFrames() 780 while (item) { in SetAnimationKeyFrames() 781 const char * const itemValue = item->GetStrValue(); in SetAnimationKeyFrames() 788 item = item in SetAnimationKeyFrames() [all...] |
/foundation/multimodalinput/input/service/mouse_event_normalize/test/src/ |
H A D | mouse_transform_processor_test.cpp | 1560 PointerEvent::PointerItem item; in HWTEST_F() local 1561 item.SetDisplayX(10); in HWTEST_F() 1562 item.SetDisplayY(15); in HWTEST_F() 1563 item.SetWindowX(0); in HWTEST_F() 1564 item.SetWindowY(0); in HWTEST_F() 1565 item.SetPointerId(1); in HWTEST_F() 1566 item.SetPressed(true); in HWTEST_F() 1567 item.SetDownTime(1000); in HWTEST_F() 1568 item.SetWidth(0); in HWTEST_F() 1569 item in HWTEST_F() [all...] |