Home
last modified time | relevance | path

Searched refs:item (Results 251 - 275 of 4202) sorted by relevance

1...<<11121314151617181920>>...169

/kernel/linux/linux-5.10/scripts/kconfig/
H A Dqconf.cc247 ConfigItem *item; in createEditor() local
254 item = static_cast<ConfigItem *>(index.internalPointer()); in createEditor()
255 if (!item || !item->menu || !menu_is_visible(item->menu)) in createEditor()
266 ConfigItem *item; in setModelData() local
276 item = static_cast<ConfigItem *>(index.internalPointer()); in setModelData()
277 if (!item || !item->menu) in setModelData()
280 sym = item in setModelData()
383 ConfigItem* item = (ConfigItem*)menu->data; findConfigItem() local
417 ConfigItem *item; updateList() local
483 setValue(ConfigItem* item, tristate val) setValue() argument
508 changeValue(ConfigItem* item) changeValue() argument
564 ConfigItem* item; setParentMenu() local
595 ConfigItem* item; updateMenuList() local
660 ConfigItem* item; updateMenuList() local
725 ConfigItem* item; keyPressEvent() local
789 ConfigItem* item = (ConfigItem*)itemAt(p); mouseReleaseEvent() local
842 ConfigItem* item = (ConfigItem*)itemAt(p); mouseDoubleClickEvent() local
875 ConfigItem* item = (ConfigItem *)currentItem(); focusInEvent() local
1589 ConfigItem* item; setMenuLink() local
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dqconf.cc250 ConfigItem *item; in createEditor() local
257 item = static_cast<ConfigItem *>(index.internalPointer()); in createEditor()
258 if (!item || !item->menu || !menu_is_visible(item->menu)) in createEditor()
269 ConfigItem *item; in setModelData() local
279 item = static_cast<ConfigItem *>(index.internalPointer()); in setModelData()
280 if (!item || !item->menu) in setModelData()
283 sym = item in setModelData()
387 ConfigItem* item = (ConfigItem*)menu->data; findConfigItem() local
421 ConfigItem *item; updateList() local
487 setValue(ConfigItem* item, tristate val) setValue() argument
512 changeValue(ConfigItem* item) changeValue() argument
568 ConfigItem* item; setParentMenu() local
599 ConfigItem* item; updateMenuList() local
664 ConfigItem* item; updateMenuList() local
729 ConfigItem* item; keyPressEvent() local
793 ConfigItem* item = (ConfigItem*)itemAt(p); mouseReleaseEvent() local
846 ConfigItem* item = (ConfigItem*)itemAt(p); mouseDoubleClickEvent() local
879 ConfigItem* item = (ConfigItem *)currentItem(); focusInEvent() local
1612 ConfigItem* item; setMenuLink() local
[all...]
/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_link_p2p.c212 AuthSessionServer *item = NULL; in AddAuthSessionFlag() local
213 LIST_FOR_EACH_ENTRY(item, g_authSessionServerList, AuthSessionServer, node) { in AddAuthSessionFlag()
214 if (strcmp(peerIp, item->peerIp) == 0) { in AddAuthSessionFlag()
215 item->isServer = isServer; in AddAuthSessionFlag()
216 LNN_LOGI(LNN_LANE, "exist server tag, new=%{public}d, old=%{public}d", isServer, item->isServer); in AddAuthSessionFlag()
253 AuthSessionServer *item = NULL; in CheckIsAuthSessionServer() local
254 LIST_FOR_EACH_ENTRY(item, g_authSessionServerList, AuthSessionServer, node) { in CheckIsAuthSessionServer()
255 if (strcmp(peerIp, item->peerIp) == 0) { in CheckIsAuthSessionServer()
256 *isServer = item->isServer; in CheckIsAuthSessionServer()
282 AuthSessionServer *item in RemoveAuthSessionServer() local
329 P2pLinkedList *item = NULL; GetP2pLinkedReqByReqId() local
353 P2pLinkedList *item = NULL; RecycleLinkedListResource() local
399 P2pLinkedList *item = NULL; UpdateP2pLinkedReqByLinkId() local
440 P2pLinkedList *item = NULL; GetP2pLinkDownParam() local
470 P2pLinkedList *item = NULL; DelP2pLinkedByAuthReqId() local
602 P2pLinkReqList *item = NULL; GetP2pLinkReqParamByChannelRequetId() local
649 P2pLinkReqList *item = NULL; GetP2pLinkReqParamByAuthHandle() local
702 P2pLinkReqList *item = NULL; GetP2pLinkReqByReqId() local
728 P2pLinkReqList *item = NULL; DelP2pLinkReqByReqId() local
972 RawLinkInfoList *item = NULL; GetRawLinkInfoByReqId() local
996 RawLinkInfoList *item = NULL; DelRawLinkInfoByReqId() local
1124 RawLinkInfoList *item = NULL; CheckAuthMetaResult() local
1555 P2pLinkReqList *item = (P2pLinkReqList *)SoftBusCalloc(sizeof(P2pLinkReqList)); AddP2pLinkReqItem() local
1601 P2pLinkedList *item = NULL; UpdateP2pLinkedList() local
1728 P2pLinkReqList *item = NULL; GetAuthTriggerLinkReqParamByAuthHandle() local
1825 P2pLinkReqList *item = NULL; UpdateP2pLinkInfoWithAuth() local
1844 P2pLinkReqList *item = NULL; GetP2pLinkByLaneReqId() local
2261 P2pLinkReqList *item = NULL; UpdateP2pReuseInfoByReqId() local
2574 P2pLinkedList *item = NULL; RecycleP2pLinkedReqByLinkType() local
2857 P2pLinkedList *item = NULL; DelP2pLinkedByLinkId() local
2884 P2pLinkedList *item = NULL; LnnDisconnectP2pWithoutLnn() local
2924 P2pLinkedList *item = NULL; LnnDisconnectP2p() local
3050 P2pLinkReqList *item = NULL; LnnCancelWifiDirect() local
[all...]
H A Dlnn_lane_listener.c80 LaneBusinessInfo *item = NULL; in GetLaneBusinessInfoWithoutLock() local
82 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_laneBusinessInfoList, LaneBusinessInfo, node) { in GetLaneBusinessInfoWithoutLock()
83 if (laneBusinessInfo->laneType == item->laneType && in GetLaneBusinessInfoWithoutLock()
84 laneBusinessInfo->laneId == item->laneId) { in GetLaneBusinessInfoWithoutLock()
85 return item; in GetLaneBusinessInfoWithoutLock()
105 LaneBusinessInfo *item = GetLaneBusinessInfoWithoutLock(&laneBusinessInfo); in UpdateLaneBusinessInfoItem() local
106 if (item != NULL) { in UpdateLaneBusinessInfoItem()
107 item->laneId = newLaneId; in UpdateLaneBusinessInfoItem()
131 LaneBusinessInfo *item = GetLaneBusinessInfoWithoutLock(&laneBusinessInfo); in AddLaneBusinessInfoItem() local
132 if (item ! in AddLaneBusinessInfoItem()
173 LaneBusinessInfo *item = GetLaneBusinessInfoWithoutLock(&laneBusinessInfo); DelLaneBusinessInfoItem() local
208 LaneBusinessInfo *item = NULL; FindLaneBusinessInfoByLinkInfo() local
230 LaneListenerInfo *item = NULL; LaneListenerIsExist() local
250 LaneListenerInfo* item = LaneListenerIsExist(type); FindLaneListenerInfoByLaneType() local
283 LaneListenerInfo *item = NULL; LaneLinkupNotify() local
438 LaneListenerInfo *item = LaneListenerIsExist(type); RegisterLaneListener() local
467 LaneListenerInfo *item = LaneListenerIsExist(type); UnRegisterLaneListener() local
[all...]
/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Dmatrix3.h43 std::for_each(vector.begin(), vector.end(), [num](auto& item) { item = item * num; }); in operator *()
81 [&val](auto& item) { val = val + "item: " + std::to_string(item) + " "; }); in ToString()
108 std::for_each(vector.begin(), vector.end(), [num](auto& item) { item = item * num; }); in operator *()
147 [&val](auto& item) { va in ToString()
[all...]
/third_party/node/tools/inspector_protocol/
H A Dpdl.py18 def assignType(item, type, is_array=False, map_binary_to_string=False):
20 item['type'] = 'array'
21 item['items'] = collections.OrderedDict()
22 assignType(item['items'], type, False, map_binary_to_string)
30 item['type'] = type
32 item['$ref'] = type
54 item = None
94 item = createItem({'id': match.group(3)}, match.group(1), match.group(2))
95 assignType(item, match.group(5), match.group(4), map_binary_to_string)
96 domain['types'].append(item)
[all...]
/third_party/node/test/fixtures/wpt/encoding/resources/
H A Dencode-form-common.js32 var item = {};
33 codepoints.push(item);
34 item.cp = i;
35 item.expected = expect(result, i);
36 item.desc = range[2];
53 var item = {};
54 currentChunk.push(item);
55 item.cp = codepoints[i].cp;
56 item.expected = codepoints[i].expected;
57 item
[all...]
/third_party/nghttp2/lib/
H A Dnghttp2_pq.c67 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_push() argument
82 pq->q[pq->length] = item; in nghttp2_pq_push()
83 item->index = pq->length; in nghttp2_pq_push()
127 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_remove() argument
128 assert(pq->q[item->index] == item); in nghttp2_pq_remove()
130 if (item->index == 0) { in nghttp2_pq_remove()
135 if (item->index == pq->length - 1) { in nghttp2_pq_remove()
140 pq->q[item->index] = pq->q[pq->length - 1]; in nghttp2_pq_remove()
141 pq->q[item in nghttp2_pq_remove()
[all...]
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_pq.c69 int nghttp3_pq_push(nghttp3_pq *pq, nghttp3_pq_entry *item) { in nghttp3_pq_push() argument
84 pq->q[pq->length] = item; in nghttp3_pq_push()
85 item->index = pq->length; in nghttp3_pq_push()
126 void nghttp3_pq_remove(nghttp3_pq *pq, nghttp3_pq_entry *item) { in nghttp3_pq_remove() argument
127 assert(pq->q[item->index] == item); in nghttp3_pq_remove()
129 if (item->index == 0) { in nghttp3_pq_remove()
134 if (item->index == pq->length - 1) { in nghttp3_pq_remove()
139 pq->q[item->index] = pq->q[pq->length - 1]; in nghttp3_pq_remove()
140 pq->q[item in nghttp3_pq_remove()
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_pq.c67 int ngtcp2_pq_push(ngtcp2_pq *pq, ngtcp2_pq_entry *item) { in ngtcp2_pq_push() argument
82 pq->q[pq->length] = item; in ngtcp2_pq_push()
83 item->index = pq->length; in ngtcp2_pq_push()
124 void ngtcp2_pq_remove(ngtcp2_pq *pq, ngtcp2_pq_entry *item) { in ngtcp2_pq_remove() argument
125 assert(pq->q[item->index] == item); in ngtcp2_pq_remove()
127 if (item->index == 0) { in ngtcp2_pq_remove()
132 if (item->index == pq->length - 1) { in ngtcp2_pq_remove()
137 pq->q[item->index] = pq->q[pq->length - 1]; in ngtcp2_pq_remove()
138 pq->q[item in ngtcp2_pq_remove()
[all...]
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_pq.c67 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_push() argument
82 pq->q[pq->length] = item; in nghttp2_pq_push()
83 item->index = pq->length; in nghttp2_pq_push()
127 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_remove() argument
128 assert(pq->q[item->index] == item); in nghttp2_pq_remove()
130 if (item->index == 0) { in nghttp2_pq_remove()
135 if (item->index == pq->length - 1) { in nghttp2_pq_remove()
140 pq->q[item->index] = pq->q[pq->length - 1]; in nghttp2_pq_remove()
141 pq->q[item in nghttp2_pq_remove()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_frame_rate_policy.cpp65 for (auto item : data) { in HgmConfigChangeCallback()
66 if (item.animType.empty() || item.animName.empty()) { in HgmConfigChangeCallback()
69 animAttributes_[item.animType][item.animName] = {item.minSpeed, item.maxSpeed, item.preferredFps}; in HgmConfigChangeCallback()
70 ROSEN_LOGD("RSFrameRatePolicy: config item type = %{public}s, name = %{public}s, "\ in HgmConfigChangeCallback()
72 item in HgmConfigChangeCallback()
[all...]
/foundation/multimodalinput/input/tools/event_inject/src/
H A Dprocessing_keyboard_device.cpp48 for (const auto &item : keyBoardEventArray) { in TransformKeyBoardEventToInputEvent()
49 if (item.eventType == "KEY_EVENT_PRESS") { in TransformKeyBoardEventToInputEvent()
50 TransformKeyPressEvent(item, inputEventArray); in TransformKeyBoardEventToInputEvent()
51 } else if (item.eventType == "KEY_EVENT_RELEASE") { in TransformKeyBoardEventToInputEvent()
52 TransformKeyReleaseEvent(item, inputEventArray); in TransformKeyBoardEventToInputEvent()
53 } else if (item.eventType == "KEY_EVENT_CLICK") { in TransformKeyBoardEventToInputEvent()
54 TransformKeyClickEvent(item, inputEventArray); in TransformKeyBoardEventToInputEvent()
55 } else if (item.eventType == "KEY_EVENT_LONG_PRESS") { in TransformKeyBoardEventToInputEvent()
56 TransformKeyLongPressEvent(item, inputEventArray); in TransformKeyBoardEventToInputEvent()
67 for (const auto &item in AnalysisKeyBoardEvent()
[all...]
/third_party/python/Objects/stringlib/
H A Djoin.h17 PyObject *seq, *item; in bytes_join() local
37 item = PySequence_Fast_GET_ITEM(seq, 0); in bytes_join()
38 if (STRINGLIB_CHECK_EXACT(item)) { in bytes_join()
39 Py_INCREF(item); in bytes_join()
41 return item; in bytes_join()
63 item = PySequence_Fast_GET_ITEM(seq, i); in bytes_join()
64 if (PyBytes_CheckExact(item)) { in bytes_join()
66 Py_INCREF(item); in bytes_join()
67 buffers[i].obj = item; in bytes_join()
68 buffers[i].buf = PyBytes_AS_STRING(item); in bytes_join()
[all...]
/foundation/communication/dsoftbus/core/common/dfx/hidumper_adapter/
H A Dsoftbus_hidumper.c44 ListNode *item = NULL; in SoftBusDumpShowHelp() local
45 LIST_FOR_EACH(item, &g_hidumperhander_list) { in SoftBusDumpShowHelp()
46 HandlerNode *itemNode = LIST_ENTRY(item, HandlerNode, node); in SoftBusDumpShowHelp()
53 item = NULL; in SoftBusDumpShowHelp()
54 LIST_FOR_EACH(item, &g_hidumperhander_list) { in SoftBusDumpShowHelp()
55 HandlerNode *itemNode = LIST_ENTRY(item, HandlerNode, node); in SoftBusDumpShowHelp()
81 ListNode *item = NULL; in SoftBusDumpSubModuleHelp() local
82 LIST_FOR_EACH(item, varList) { in SoftBusDumpSubModuleHelp()
83 SoftBusDumpVarNode *itemNode = LIST_ENTRY(item, SoftBusDumpVarNode, node); in SoftBusDumpSubModuleHelp()
87 SOFTBUS_DPRINTF(fd, " -h List all the dump item i in SoftBusDumpSubModuleHelp()
132 ListNode *item = NULL; SoftBusReleaseDumpVar() local
166 ListNode *item = NULL; SoftBusHiDumperReleaseHandler() local
204 ListNode *item = NULL; SoftBusDumpDispatch() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/engine/
H A Deng_lib.c126 ENGINE_CLEANUP_ITEM *item; in int_cleanup_item() local
128 if ((item = OPENSSL_malloc(sizeof(*item))) == NULL) { in int_cleanup_item()
132 item->cb = cb; in int_cleanup_item()
133 return item; in int_cleanup_item()
138 ENGINE_CLEANUP_ITEM *item; in engine_cleanup_add_first() local
142 item = int_cleanup_item(cb); in engine_cleanup_add_first()
143 if (item != NULL) { in engine_cleanup_add_first()
144 if (sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0)) in engine_cleanup_add_first()
146 OPENSSL_free(item); in engine_cleanup_add_first()
153 ENGINE_CLEANUP_ITEM *item; engine_cleanup_add_last() local
167 engine_cleanup_cb_free(ENGINE_CLEANUP_ITEM *item) engine_cleanup_cb_free() argument
[all...]
/third_party/openssl/crypto/engine/
H A Deng_lib.c126 ENGINE_CLEANUP_ITEM *item; in int_cleanup_item() local
128 if ((item = OPENSSL_malloc(sizeof(*item))) == NULL) { in int_cleanup_item()
132 item->cb = cb; in int_cleanup_item()
133 return item; in int_cleanup_item()
138 ENGINE_CLEANUP_ITEM *item; in engine_cleanup_add_first() local
142 item = int_cleanup_item(cb); in engine_cleanup_add_first()
143 if (item != NULL) in engine_cleanup_add_first()
144 if (sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0) <= 0) in engine_cleanup_add_first()
145 OPENSSL_free(item); in engine_cleanup_add_first()
150 ENGINE_CLEANUP_ITEM *item; engine_cleanup_add_last() local
161 engine_cleanup_cb_free(ENGINE_CLEANUP_ITEM *item) engine_cleanup_cb_free() argument
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/
H A Djson_common.cpp94 JsonObject item = jsonQueue.front(); in CheckNode() local
96 std::string fieldName = item.GetItemField(ret); in CheckNode()
117 if (!item.GetChild().IsNull()) { in CheckNode()
118 jsonQueue.push(item.GetChild()); in CheckNode()
120 if (!item.GetNext().IsNull()) { in CheckNode()
121 jsonQueue.push(item.GetNext()); in CheckNode()
139 JsonObject item = jsonQueue.front(); in CheckProjectionNode() local
141 std::string fieldName = item.GetItemField(ret); in CheckProjectionNode()
159 if (!item.GetNext().IsNull()) { in CheckProjectionNode()
160 jsonQueue.push(item in CheckProjectionNode()
327 AddSpliteHitField(const JsonObject &src, const JsonObject &item, JsonFieldPath &hitPath, JsonFieldPath &abandonPath, int &externErrCode) AddSpliteHitField() argument
368 AddSpliteField(const JsonObject &src, const JsonObject &item, const JsonFieldPath &itemPath, int &externErrCode) AddSpliteField() argument
416 JsonValueReplace(const JsonObject &src, const JsonFieldPath &fatherPath, const JsonObject &father, const JsonObject &item, int &externErrCode) JsonValueReplace() argument
457 JsonNodeReplace(const JsonObject &src, const JsonFieldPath &itemPath, const JsonObject &father, const JsonObject &item, int &externErrCode) JsonNodeReplace() argument
503 JsonNodeAppend(const JsonObject &src, const JsonFieldPath &path, const JsonObject &father, const JsonObject &item, int &externErrCode) JsonNodeAppend() argument
611 IsObjectItemMatch(const JsonObject &srcItem, const JsonObject &item, int &isAlreadyMatched, bool &isCollapse, int &isMatchFlag) IsObjectItemMatch() argument
645 JsonEqualJudge(const JsonFieldPath &itemPath, const JsonObject &src, const JsonObject &item, bool &isCollapse, int &isMatchFlag) JsonEqualJudge() argument
[all...]
/kernel/linux/linux-5.10/fs/configfs/
H A Ddir.c114 * item's i_mutex class is already setup, so s_depth is now only in configfs_adjust_dir_dirent_depth_before_populate()
116 * with item's i_mutex locked. in configfs_adjust_dir_dirent_depth_before_populate()
276 * @item: config_itemwe're creating directory for.
283 static int configfs_create_dir(struct config_item *item, struct dentry *dentry, in configfs_create_dir() argument
291 BUG_ON(!item); in configfs_create_dir()
297 error = configfs_make_dirent(p->d_fsdata, dentry, item, mode, in configfs_create_dir()
316 item->ci_dentry = dentry; in configfs_create_dir()
408 * @item: config_item we're removing.
414 * Caller holds the mutex of the item's inode
417 static void configfs_remove_dir(struct config_item * item) in configfs_remove_dir() argument
577 detach_attrs(struct config_item * item) detach_attrs() argument
606 populate_attrs(struct config_item *item) populate_attrs() argument
751 unlink_obj(struct config_item *item) unlink_obj() argument
770 link_obj(struct config_item *parent_item, struct config_item *item) link_obj() argument
837 configfs_attach_item(struct config_item *parent_item, struct config_item *item, struct dentry *dentry, struct configfs_fragment *frag) configfs_attach_item() argument
866 configfs_detach_item(struct config_item *item) configfs_detach_item() argument
872 configfs_attach_group(struct config_item *parent_item, struct config_item *item, struct dentry *dentry, struct configfs_fragment *frag) configfs_attach_group() argument
912 configfs_detach_group(struct config_item *item) configfs_detach_group() argument
927 client_disconnect_notify(struct config_item *parent_item, struct config_item *item) client_disconnect_notify() argument
937 item); client_disconnect_notify() local
946 client_drop_item(struct config_item *parent_item, struct config_item *item) client_drop_item() argument
960 item); client_drop_item() local
1285 struct config_item *item = NULL; configfs_mkdir() local
1466 struct config_item *item; configfs_rmdir() local
[all...]
/kernel/linux/linux-6.6/fs/configfs/
H A Ddir.c112 * item's i_mutex class is already setup, so s_depth is now only in configfs_adjust_dir_dirent_depth_before_populate()
114 * with item's i_mutex locked. in configfs_adjust_dir_dirent_depth_before_populate()
274 * @item: config_itemwe're creating directory for.
282 static int configfs_create_dir(struct config_item *item, struct dentry *dentry, in configfs_create_dir() argument
290 BUG_ON(!item); in configfs_create_dir()
296 error = configfs_make_dirent(p->d_fsdata, dentry, item, mode, in configfs_create_dir()
315 item->ci_dentry = dentry; in configfs_create_dir()
407 * @item: config_item we're removing.
413 * Caller holds the mutex of the item's inode
416 static void configfs_remove_dir(struct config_item * item) in configfs_remove_dir() argument
551 detach_attrs(struct config_item * item) detach_attrs() argument
580 populate_attrs(struct config_item *item) populate_attrs() argument
725 unlink_obj(struct config_item *item) unlink_obj() argument
744 link_obj(struct config_item *parent_item, struct config_item *item) link_obj() argument
811 configfs_attach_item(struct config_item *parent_item, struct config_item *item, struct dentry *dentry, struct configfs_fragment *frag) configfs_attach_item() argument
840 configfs_detach_item(struct config_item *item) configfs_detach_item() argument
846 configfs_attach_group(struct config_item *parent_item, struct config_item *item, struct dentry *dentry, struct configfs_fragment *frag) configfs_attach_group() argument
886 configfs_detach_group(struct config_item *item) configfs_detach_group() argument
901 client_disconnect_notify(struct config_item *parent_item, struct config_item *item) client_disconnect_notify() argument
911 item); client_disconnect_notify() local
920 client_drop_item(struct config_item *parent_item, struct config_item *item) client_drop_item() argument
934 item); client_drop_item() local
1260 struct config_item *item = NULL; configfs_mkdir() local
1441 struct config_item *item; configfs_rmdir() local
[all...]
/foundation/multimodalinput/input/frameworks/napi/input_monitor/src/
H A Djs_input_monitor_manager.cpp44 for (const auto &item : monitors_) { in AddMonitor()
45 if ((item != nullptr) && (item->IsMatch(jsEnv, callback) != RET_ERR)) { in AddMonitor()
66 for (const auto &item : monitors_) { in AddMonitor()
67 if ((item != nullptr) && (item->IsMatch(jsEnv, callback) != RET_ERR)) { in AddMonitor()
128 for (const auto &item : monitors) { in RemoveMonitor()
129 if (item != nullptr) { in RemoveMonitor()
130 item->Stop(); in RemoveMonitor()
155 for (const auto &item in RemoveMonitor()
[all...]
/kernel/linux/linux-5.10/tools/testing/ktest/
H A Dconfig-bisect.pl328 foreach my $item (keys %a) {
329 if (defined($b{$item}) && $b{$item} ne $a{$item}) {
330 $ret{$item} = $b{$item};
347 foreach my $item (keys %b) {
348 if (!defined($a{$item})) {
349 $ret{$item} = $b{$item};
[all...]
/kernel/linux/linux-6.6/tools/testing/ktest/
H A Dconfig-bisect.pl328 foreach my $item (keys %a) {
329 if (defined($b{$item}) && $b{$item} ne $a{$item}) {
330 $ret{$item} = $b{$item};
347 foreach my $item (keys %b) {
348 if (!defined($a{$item})) {
349 $ret{$item} = $b{$item};
[all...]
/third_party/node/lib/internal/test_runner/
H A Drunner.js209 #handleReportItem(item) {
210 const isTopLevel = item.data.nesting === 0;
212 if (item.type === 'test:plan' && this.#skipReporting()) {
215 if (item.type === 'test:diagnostic' && this.#checkNestedComment(item.data.message)) {
219 if (item.data.details?.error) {
220 item.data.details.error = deserializeError(item.data.details.error);
222 if (item.type === 'test:pass' || item
[all...]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DScanResult.java20 BundleItem item; field in ScanResult
23 ScanResult(BundleItem item) { in ScanResult() argument
24 this.item = item; in ScanResult()
29 return item; in getItem()
45 return item.getKey(); in getName()
49 if (item.getParentGroup() != null) return item.getParentGroup().getName(); in getGroupName()

Completed in 16 milliseconds

1...<<11121314151617181920>>...169