Home
last modified time | relevance | path

Searched refs:node (Results 2401 - 2425 of 4490) sorted by relevance

1...<<919293949596979899100>>...180

/third_party/python/Doc/tools/extensions/
H A Dglossary_search.py28 for node in doctree.traverse(glossary):
29 for glossary_item in node.traverse(definition_list_item):
/third_party/skia/modules/svg/include/
H A DSkSVGFe.h20 static bool IsFilterEffect(const sk_sp<SkSVGNode>& node) { in IsFilterEffect() argument
21 switch (node->tag()) { in IsFilterEffect()
/third_party/rust/crates/syn/codegen/src/
H A Dgen.rs14 node: fn(&mut TokenStream, &mut TokenStream, &Node, &Definitions), in traverse()
33 node(&mut traits, &mut impls, &s, defs); in traverse()
/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Dlist_layout_manager.cpp716 RefPtr<BilateralSpringNode> node; in GetChainDelta() local
720 node = AceType::DynamicCast<BilateralSpringNode>(chainAdapter_->GetNode(targetIndex)); in GetChainDelta()
721 if (node) { in GetChainDelta()
722 value = node->GetValue(); in GetChainDelta()
758 auto node = AceType::MakeRefPtr<BilateralSpringNode>(renderList_.GetContext(), index, 0.0); in InitChainAnimation() local
759 WeakPtr<BilateralSpringNode> nodeWeak(node); in InitChainAnimation()
761 node->AddUpdateListener( in InitChainAnimation()
764 auto node = nodeWeak.Upgrade(); in InitChainAnimation()
766 if (!manager || !node || !adapter) { in InitChainAnimation()
769 if (node in InitChainAnimation()
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/
H A Drender_node_graph_manager.cpp50 PLUGIN_LOG_E("unsupported (missing vulkan) render node backend flags for render node %s", name.data()); in ValidateBackendFlags()
53 PLUGIN_LOG_E("unsupported (missing gles) render node backend flags for render node %s", name.data()); in ValidateBackendFlags()
56 PLUGIN_LOG_E("unsupported (missing gl) render node backend flags for render node %s", name.data()); in ValidateBackendFlags()
79 "RENDER_VALIDATION: Not all render node graph handle references released (count: %u)", aliveRngCounter); in ~RenderNodeGraphManager()
93 PLUGIN_LOG_E("invalid render node graph handle (id: %" PRIu64 ")", handle.id); in Get()
102 PLUGIN_LOG_W("Load and create for render node graph failed: %s %s ", uri.data(), result.error.c_str()); in LoadAndCreate()
203 // check render node graph
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_loop_unroll.c33 * to give about the same results. Around 5 instructions per node. But some
58 foreach_list_typed_safe(nir_cf_node, node, node, &loop->body) { in loop_prepare_for_unroll()
59 if (nir_cf_node_block == node->type) { in loop_prepare_for_unroll()
60 nir_lower_phis_to_regs_block(nir_cf_node_as_block(node)); in loop_prepare_for_unroll()
223 get_complex_unroll_insert_location(nir_cf_node *node, bool continue_from_then) in get_complex_unroll_insert_location() argument
225 if (node->type == nir_cf_node_loop) { in get_complex_unroll_insert_location()
226 return nir_before_cf_node(node); in get_complex_unroll_insert_location()
228 nir_if *if_stmt = nir_cf_node_as_if(node); in get_complex_unroll_insert_location()
282 node); in complex_unroll_loop_body()
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qpu_schedule.c51 /* Longest cycles + instruction_latency() of any parent of this node. */
424 list_for_each_entry(struct schedule_node, node, schedule_list, link) in calculate_forward_deps()
425 calculate_deps(&state, node); in calculate_forward_deps()
438 list_for_each_entry_rev(struct schedule_node, node, schedule_list, in calculate_reverse_deps()
440 calculate_deps(&state, (struct schedule_node *)node); in calculate_reverse_deps()
768 /** Recursive computation of the delay member of a node. */
770 compute_delay(struct dag_node *node, void *state) in compute_delay() argument
772 struct schedule_node *n = (struct schedule_node *)node; in compute_delay()
801 struct schedule_node *node) in mark_instruction_scheduled()
803 if (!node) in mark_instruction_scheduled()
799 mark_instruction_scheduled(struct dag *dag, uint32_t time, struct schedule_node *node) mark_instruction_scheduled() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ra_init.cpp322 node *n = *I;
335 bool ra_init::process_op(node* n) {
545 node *p = *I;
566 void ra_split::split_phi_dst(node* loc, container_node *c, bool loop) {
568 node *p = *I;
576 node *cp = sh.create_copy_mov(v, t);
589 node *p = *I;
628 node *o = *I;
645 void ra_split::split_op(node* n) {
748 void ra_split::split_vector_inst(node*
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_descriptor.cpp232 DominatorTreeNode* node = dom_tree.GetTreeNode(p_id); in FindLoopPreheader() local
233 if (node && !dom_tree.Dominates(header_node, node)) { in FindLoopPreheader()
235 if (loop_pred && node->bb_ != loop_pred) { in FindLoopPreheader()
240 loop_pred = node->bb_; in FindLoopPreheader()
244 // node as header. in FindLoopPreheader()
245 assert(loop_pred && "The header node is the entry block ?"); in FindLoopPreheader()
527 for (DominatorTreeNode& node : in PopulateList()
529 Instruction* merge_inst = node.bb_->GetLoopMergeInst(); in PopulateList()
532 for (uint32_t pid : context->cfg()->preds(node in PopulateList()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_descriptor.cpp232 DominatorTreeNode* node = dom_tree.GetTreeNode(p_id); in FindLoopPreheader() local
233 if (node && !dom_tree.Dominates(header_node, node)) { in FindLoopPreheader()
235 if (loop_pred && node->bb_ != loop_pred) { in FindLoopPreheader()
240 loop_pred = node->bb_; in FindLoopPreheader()
244 // node as header. in FindLoopPreheader()
245 assert(loop_pred && "The header node is the entry block ?"); in FindLoopPreheader()
527 for (DominatorTreeNode& node : in PopulateList()
529 Instruction* merge_inst = node.bb_->GetLoopMergeInst(); in PopulateList()
532 for (uint32_t pid : context->cfg()->preds(node in PopulateList()
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-repacker.hh283 * distance to each node.
420 const auto& node = vertices_[entry.first]; in isolate_subgraph() local
423 if (subgraph_incoming_edges < node.incoming_edges ()) in isolate_subgraph()
565 // Can't duplicate this node, doing so would orphan the original one as all remaining links in duplicate()
577 // duplicate shifts the root node idx, so if parent_idx was root update it. in duplicate()
689 auto& node = vertices_[index]; in move_to_new_space() local
691 num_roots_for_space_[node.space] = num_roots_for_space_[node.space] - 1; in move_to_new_space()
692 node.space = num_roots_for_space_.length - 1; in move_to_new_space()
697 const auto& node in space_for() local
[all...]
/third_party/spirv-tools/source/opt/
H A Dloop_descriptor.cpp230 DominatorTreeNode* node = dom_tree.GetTreeNode(p_id); in FindLoopPreheader() local
231 if (node && !dom_tree.Dominates(header_node, node)) { in FindLoopPreheader()
233 if (loop_pred && node->bb_ != loop_pred) { in FindLoopPreheader()
238 loop_pred = node->bb_; in FindLoopPreheader()
242 // node as header. in FindLoopPreheader()
243 assert(loop_pred && "The header node is the entry block ?"); in FindLoopPreheader()
521 for (DominatorTreeNode& node : in PopulateList()
523 Instruction* merge_inst = node.bb_->GetLoopMergeInst(); in PopulateList()
526 for (uint32_t pid : context->cfg()->preds(node in PopulateList()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_group_node.cpp161 TAG_LOGW(AceLogTag::ACE_NAVIGATION, "get destination node failed"); in ReorderNavDestination()
326 // this is a navDestination node in GetNavDestinationNode()
330 // this is an UINode, go deep further for navDestination node in GetNavDestinationNode()
337 TAG_LOGI(AceLogTag::ACE_NAVIGATION, "get navDestination node failed: id: %{public}d, %{public}s", in GetNavDestinationNode()
424 TAG_LOGI(AceLogTag::ACE_NAVIGATION, "can't find destination node to process back press"); in CheckCanHandleBack()
456 bool NavigationGroupNode::HandleBack(const RefPtr<FrameNode>& node, bool isLastChild, bool isOverride) in HandleBack() argument
463 auto navDestination = AceType::DynamicCast<NavDestinationGroupNode>(node); in HandleBack()
737 std::shared_ptr<AnimationUtils::Animation> NavigationGroupNode::MaskAnimation(const RefPtr<FrameNode>& node, in MaskAnimation() argument
740 CHECK_NULL_RETURN(node, nullptr); in MaskAnimation()
745 auto renderContext = node in MaskAnimation()
[all...]
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/distributed_ledger/src/
H A Dlnn_distributed_net_ledger_manager.c308 LNN_LOGE(LNN_LEDGER, "get node info fail."); in LnnUpdateNodeBleMac()
344 LNN_LOGE(LNN_LEDGER, "networkId=%{public}s, get node info fail.", AnonymizeWrapper(anonyNetworkId)); in LnnSetRemoteScreenStatusInfo()
350 LNN_LOGE(LNN_LEDGER, "networkId=%{public}s, node screen status is not supported", in LnnSetRemoteScreenStatusInfo()
470 LNN_LOGE(LNN_LEDGER, "node is offline"); in DlGetP2pMac()
493 LNN_LOGE(LNN_LEDGER, "node is offline"); in DlGetWifiDirectAddr()
514 LNN_LOGE(LNN_LEDGER, "node is offline"); in DlGetNodeAddr()
518 LNN_LOGE(LNN_LEDGER, "copy node addr to buf fail"); in DlGetNodeAddr()
532 LNN_LOGE(LNN_LEDGER, "node is offline"); in DlGetP2pGoMac()
555 LNN_LOGE(LNN_LEDGER, "node is offline"); in DlGetWifiCfg()
578 LNN_LOGE(LNN_LEDGER, "node i in DlGetChanList5g()
860 NodeInfo *node = NULL; LnnSetDLDeviceNickName() local
1076 NodeInfo *node = NULL; LnnSetDLP2pInfo() local
1105 NodeInfo *node = NULL; LnnSetDlPtk() local
1868 NodeInfo *node = NULL; LnnSetDLWifiDirectAddr() local
[all...]
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/fuse_manager/
H A Dfuse_manager.cpp396 LOGE("find node is nullptr"); in CloudPath()
498 static void PutNode(struct FuseData *data, shared_ptr<CloudInode> node, uint64_t num) in PutNode() argument
501 node->refCount -= num; in PutNode()
503 GetAnonyString(node->path).c_str(), (long long)num, node->refCount.load()); in PutNode()
504 if (node->refCount == 0) { in PutNode()
505 LOGD("node released: %s", GetAnonyString(node->path).c_str()); in PutNode()
507 XcollieInput xcollieInput{node.get(), FaultOperation::FORGET}; in PutNode()
511 if (node in PutNode()
527 shared_ptr<CloudInode> node = GetCloudInode(data, ino); CloudForget() local
544 shared_ptr<CloudInode> node = GetCloudInode(data, ino); CloudGetAttr() local
899 shared_ptr<CloudInode> node = GetCloudInode(data, forgets[i].ino); CloudForgetMulti() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DIntervalMap.h204 // stored elsewhere. Omitting the size field prevents padding and allows a node
207 // These are typical key and value sizes, the node branching factor (N), and
227 /// copy - Copy elements from another node.
268 /// @param Size Number of elements in node.
275 /// @param Size Number of elements in node.
282 /// @param Size Number of elements in node.
287 /// transferToLeftSib - Transfer elements to a left sibling node.
289 /// @param Sib Left sibling node.
298 /// transferToRightSib - Transfer elements to a right sibling node.
300 /// @param Sib Right sibling node
[all...]
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_transceiver.c72 LIST_FOR_EACH_ENTRY_SAFE(removeNode, tmpNode, &g_proxyConnectionList->list, ProxyConnInfo, node) { in TransDelConnByReqId()
74 ListDelete(&(removeNode->node)); in TransDelConnByReqId()
100 LIST_FOR_EACH_ENTRY_SAFE(removeNode, tmpNode, &g_proxyConnectionList->list, ProxyConnInfo, node) { in TransDelConnByConnId()
102 ListDelete(&(removeNode->node)); in TransDelConnByConnId()
126 LIST_FOR_EACH_ENTRY_SAFE(removeNode, tmpNode, &g_proxyConnectionList->list, ProxyConnInfo, node) { in TransDecConnRefByConnId()
130 ListDelete(&(removeNode->node)); in TransDecConnRefByConnId()
163 LIST_FOR_EACH_ENTRY(item, &g_proxyConnectionList->list, ProxyConnInfo, node) { in TransAddConnRefByConnId()
454 LIST_FOR_EACH_ENTRY_SAFE(item, tmpItem, &g_proxyConnectionList->list, ProxyConnInfo, node) { in TransAddConnItem()
461 ListAdd(&(g_proxyConnectionList->list), &(chan->node)); in TransAddConnItem()
510 LIST_FOR_EACH_ENTRY_SAFE(item, tmpNode, &g_proxyConnectionList->list, ProxyConnInfo, node) { in TransCreateConnByConnId()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBBITableBuilder.java145 // Appears as a cat-node, left child being the original tree, in buildForwardTable()
226 // These are non-empty leaf node types. in calcNullable()
232 // Lookahead marker node. It's a leaf, so no recursion on children. in calcNullable()
239 // The node is not a leaf. in calcNullable()
275 // These are non-empty leaf node types. in calcFirstPos()
280 // The node is not a leaf. in calcFirstPos()
318 // These are non-empty leaf node types. in calcLastPos()
323 // The node is not a leaf. in calcLastPos()
385 void addRuleRootNodes(List<RBBINode> dest, RBBINode node) { in addRuleRootNodes() argument
386 if (node in addRuleRootNodes()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DRBBITableBuilder.java138 // Appears as a cat-node, left child being the original tree, in buildForwardTable()
219 // These are non-empty leaf node types. in calcNullable()
225 // Lookahead marker node. It's a leaf, so no recursion on children. in calcNullable()
232 // The node is not a leaf. in calcNullable()
268 // These are non-empty leaf node types. in calcFirstPos()
273 // The node is not a leaf. in calcFirstPos()
311 // These are non-empty leaf node types. in calcLastPos()
316 // The node is not a leaf. in calcLastPos()
378 void addRuleRootNodes(List<RBBINode> dest, RBBINode node) { in addRuleRootNodes() argument
379 if (node in addRuleRootNodes()
[all...]
/third_party/mesa3d/src/broadcom/compiler/
H A Dvir_register_allocate.c48 node_to_temp(uint32_t node) in node_to_temp() argument
50 assert(node >= ACC_COUNT); in node_to_temp()
51 return node - ACC_COUNT; in node_to_temp()
336 /* Creates the interference node for a new temp. We use this to keep the node
344 int node = ra_add_node(c->g, choose_reg_class(c, class_bits)); in add_node() local
345 assert(node == temp + ACC_COUNT); in add_node()
347 /* We fill the node priority after we are done inserting spills */ in add_node()
348 c->nodes.info[node].class_bits = class_bits; in add_node()
349 c->nodes.info[node] in add_node()
1025 uint32_t node = temp_to_node(inst->dst.index); update_graph_and_reg_classes_for_inst() local
1171 int node = v3d_choose_spill_node(c); v3d_register_allocate() local
1183 int node = v3d_choose_spill_node(c); v3d_register_allocate() local
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dsimplified-operator.h16 #include "src/compiler/node-properties.h"
328 // Parameter for CheckClosure node.
680 // A single FastApiCall node can represent multiple overloaded functions.
1059 // Abort if the value does not match the node's computed type after
1082 explicit constexpr SimplifiedNodeWrapperBase(Node* node) in SimplifiedNodeWrapperBase() argument
1083 : NodeWrapper(node) {} in SimplifiedNodeWrapperBase()
1085 // Valid iff this node has a context input.
1089 NodeProperties::GetContextInput(node())); in context()
1092 // Valid iff this node has exactly one effect input.
1094 DCHECK_EQ(node() in effect()
1119 FastApiCallNode(Node* node) FastApiCallNode() argument
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/text/
H A Dtext_testthree_ng.cpp1424 * @tc.steps: step1. create frameNode and pattern with child span node. in HWTEST_F()
1689 * @tc.steps: step1. create frameNode and pattern with child span node. in HWTEST_F()
1839 auto node = frameNode.rawPtr_; in HWTEST_F() local
1842 TextModelNG::SetFont(node, font); in HWTEST_F()
1843 TextModelNG::InitText(node, str); in HWTEST_F()
1844 TextModelNG::SetFontWeight(node, Ace::FontWeight::BOLDER); in HWTEST_F()
1845 TextModelNG::SetItalicFontStyle(node, Ace::FontStyle::ITALIC); in HWTEST_F()
1846 TextModelNG::SetTextAlign(node, Ace::TextAlign::CENTER); in HWTEST_F()
1847 TextModelNG::SetTextColor(node, Color::RED); in HWTEST_F()
1848 TextModelNG::SetFontSize(node, FONT_SIZE_VALU in HWTEST_F()
1890 auto node = frameNode.rawPtr_; HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/grid/
H A Dgrid_element.cpp39 RefPtr<RenderNode> node = ComponentGroupElement::CreateRenderNode(); in CreateRenderNode() local
40 RefPtr<RenderGrid> grid = AceType::DynamicCast<RenderGrid>(node); in CreateRenderNode()
61 return node; in CreateRenderNode()
133 LOGE("Target focus node is null."); in RequestNextFocus()
177 LOGE("RenderElement don't have a render node"); in ApplyRenderChild()
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Ddistributed_ui.h105 void DumpNode(const RefPtr<NG::UINode>& node, int depth, OperationType op, std::unique_ptr<NodeObject>& nodeObject);
106 void DumpTreeInner(const RefPtr<NG::UINode>& node, SerializeableObjectArray& objectArray, int depth);
114 bool IsInCurrentPage(RefPtr<NG::UINode> node, int32_t pageId);
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/focus/
H A Dfocus_manager.h96 void SetLastFocusStateNode(const RefPtr<FocusHub>& node) in SetLastFocusStateNode() argument
98 lastFocusStateNode_ = AceType::WeakClaim(AceType::RawPtr(node)); in SetLastFocusStateNode()
133 static RefPtr<FocusManager> GetFocusManager(RefPtr<FrameNode>& node);

Completed in 30 milliseconds

1...<<919293949596979899100>>...180