Home
last modified time | relevance | path

Searched refs:node_type (Results 1 - 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dbtree.h948 using node_type = Node;
996 : node(const_cast<node_type *>(other.node)), position(other.position) {} in btree_iterator()
1086 using node_type = btree_node<Params>;
1089 using field_type = typename node_type::field_type;
1093 struct alignas(node_type::Alignment()) EmptyNodeType : node_type {
1094 using field_type = typename node_type::field_type;
1095 node_type *parent;
1101 field_type max_count = node_type::kInternalNodeMaxCount + 1;
1107 constexpr EmptyNodeType(node_type *
[all...]
H A Dbtree_container.h66 using node_type = typename Tree::node_handle_type;
168 node_type extract(iterator position) { in extract()
171 auto node = CommonAccess::Move<node_type>(get_allocator(), position.slot()); in extract()
175 node_type extract(const_iterator position) { in extract()
255 using node_type = typename super_type::node_type;
256 using insert_return_type = InsertReturnType<iterator, node_type>;
320 insert_return_type insert(node_type &&node) { in insert()
321 if (!node) return {this->end(), false, node_type()}; in insert()
327 return {res.first, true, node_type()}; in insert()
[all...]
H A Draw_hash_set.h853 using node_type = node_handle<Policy, hash_policy_traits<Policy>, Alloc>;
854 using insert_return_type = InsertReturnType<iterator, node_type>;
1168 insert_return_type insert(node_type&& node) {
1169 if (!node) return {end(), false, node_type()};
1176 return {res.first, true, node_type()};
1182 iterator insert(const_iterator, node_type&& node) {
1347 node_type extract(const_iterator position) {
1350 CommonAccess::Transfer<node_type>(alloc_ref(), position.inner_.slot_);
1358 node_type extract(const key_arg<K>& key) {
1360 return it == end() ? node_type()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dvalue-numbering-reducer.cc132 Type node_type = NodeProperties::GetType(node); in ReplaceIfTypesMatch() local
133 if (!replacement_type.Is(node_type)) { in ReplaceIfTypesMatch()
135 // {node_type} here. However, typing of NumberConstants assigns different in ReplaceIfTypesMatch()
139 if (node_type.Is(replacement_type)) { in ReplaceIfTypesMatch()
140 NodeProperties::SetType(replacement, node_type); in ReplaceIfTypesMatch()
H A Dsimplified-lowering-verifier.cc27 Type node_type = NodeProperties::GetType(node); in CheckType() local
28 if (!type.Is(node_type)) { in CheckType()
32 node_type.PrintTo(node_type_str); in CheckType()
H A Dtyped-optimization.cc390 Type const node_type = NodeProperties::GetType(node); in ReducePhi() local
391 if (!node_type.Is(type)) { in ReducePhi()
392 type = Type::Intersect(node_type, type, graph()->zone()); in ReducePhi()
657 Type const node_type = NodeProperties::GetType(node); in ReduceSelect() local
658 if (!node_type.Is(type)) { in ReduceSelect()
659 type = Type::Intersect(node_type, type, graph()->zone()); in ReduceSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A Dilist_node.h205 typedef ilist_node_impl<OptionsT> node_type; typedef
207 static node_type *getNodePtr(pointer N) { in getNodePtr()
210 static const node_type *getNodePtr(const_pointer N) { in getNodePtr()
213 static pointer getValuePtr(node_type *N) { in getValuePtr()
216 static const_pointer getValuePtr(const node_type *N) { in getValuePtr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A Dilist_node.h214 using node_type = ilist_node_impl<OptionsT>;
216 static node_type *getNodePtr(pointer N) { in getNodePtr()
220 static const node_type *getNodePtr(const_pointer N) { in getNodePtr()
224 static pointer getValuePtr(node_type *N) { in getValuePtr()
228 static const_pointer getValuePtr(const node_type *N) { in getValuePtr()
/third_party/libdrm/
H A Dxf86drm.c4036 const char *node, int node_type, in drmProcessPciDevice()
4044 dev = drmDeviceAlloc(node_type, node, sizeof(drmPciBusInfo), in drmProcessPciDevice()
4194 int node_type, int maj, int min, in drmProcessUsbDevice()
4201 dev = drmDeviceAlloc(node_type, node, sizeof(drmUsbBusInfo), in drmProcessUsbDevice()
4328 const char *node, int node_type, in drmProcessPlatformDevice()
4336 dev = drmDeviceAlloc(node_type, node, sizeof(drmPlatformBusInfo), in drmProcessPlatformDevice()
4368 const char *node, int node_type, in drmProcessHost1xDevice()
4376 dev = drmDeviceAlloc(node_type, node, sizeof(drmHost1xBusInfo), in drmProcessHost1xDevice()
4414 int node_type, subsystem_type; in process_device() local
4417 node_type in process_device()
4035 drmProcessPciDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) drmProcessPciDevice() argument
4193 drmProcessUsbDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) drmProcessUsbDevice() argument
4327 drmProcessPlatformDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) drmProcessPlatformDevice() argument
4367 drmProcessHost1xDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) drmProcessHost1xDevice() argument
4461 int node_type, i, j; drmFoldDuplicatedDevices() local
4526 int node_type, subsystem_type; drmGetDeviceFromDevId() local
[all...]
/third_party/skia/modules/skottie/include/
H A DSkottieProperty.h136 virtual void onEnterNode(const char node_name[], NodeType node_type);
137 virtual void onLeavingNode(const char node_name[], NodeType node_type);
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_surfaceless.c238 const unsigned node_type = swrast ? DRM_NODE_PRIMARY : DRM_NODE_RENDER; in surfaceless_probe_device() local
250 if (!(device->available_nodes & (1 << node_type))) in surfaceless_probe_device()
253 dri2_dpy->fd = loader_open_device(device->nodes[node_type]); in surfaceless_probe_device()
H A Dplatform_ohos.c1165 const unsigned node_type = DRM_NODE_RENDER; in ohos_open_device() local
1167 const unsigned node_type = swrast ? DRM_NODE_PRIMARY : DRM_NODE_RENDER; in ohos_open_device() local
1179 if (!(device->available_nodes & (1 << node_type))) { in ohos_open_device()
1183 dri2_dpy->fd = loader_open_device(device->nodes[node_type]); in ohos_open_device()
1187 __func__, device->nodes[node_type]); in ohos_open_device()
H A Dplatform_android.c1607 const unsigned node_type = DRM_NODE_RENDER; local
1609 const unsigned node_type = swrast ? DRM_NODE_PRIMARY : DRM_NODE_RENDER; local
1622 if (!(device->available_nodes & (1 << node_type)))
1625 dri2_dpy->fd = loader_open_device(device->nodes[node_type]);
1628 __func__, device->nodes[node_type]);
/third_party/node/deps/v8/third_party/jinja2/
H A Dnodes.py168 def find(self, node_type):
172 for result in self.find_all(node_type):
175 def find_all(self, node_type):
180 if isinstance(child, node_type):
182 for result in child.find_all(node_type):
/third_party/node/tools/inspector_protocol/jinja2/
H A Dnodes.py177 def find(self, node_type):
181 for result in self.find_all(node_type):
184 def find_all(self, node_type):
189 if isinstance(child, node_type):
191 for result in child.find_all(node_type):
/third_party/skia/third_party/externals/jinja2/
H A Dnodes.py168 def find(self, node_type):
172 for result in self.find_all(node_type):
175 def find_all(self, node_type):
180 if isinstance(child, node_type):
182 for result in child.find_all(node_type):
/third_party/lwip/src/apps/snmp/
H A Dsnmp_core.c782 if ((mn != NULL) && (mn->node_type != SNMP_NODE_TREE)) { in snmp_get_node_instance_from_oid()
988 while ((oid_offset < oid_len) && ((*node)->node_type == SNMP_NODE_TREE)) { in snmp_mib_tree_resolve_exact()
1007 if ((*node)->node_type != SNMP_NODE_TREE) { in snmp_mib_tree_resolve_exact()
1025 if (mib->root_node->node_type != SNMP_NODE_TREE) { in snmp_mib_tree_resolve_next()
1044 if ((i == 0) || ((*node)->node_type != SNMP_NODE_TREE)) { in snmp_mib_tree_resolve_next()
1085 if (subnode->node_type == SNMP_NODE_TREE) { in snmp_mib_tree_resolve_next()
/third_party/jinja2/
H A Dnodes.py184 def find(self, node_type: t.Type[_NodeBound]) -> t.Optional[_NodeBound]:
188 for result in self.find_all(node_type):
194 self, node_type: t.Union[t.Type[_NodeBound], t.Tuple[t.Type[_NodeBound], ...]]
200 if isinstance(child, node_type):
202 yield from child.find_all(node_type)
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_shader.h355 node* create_node(node_type nt, node_subtype nst,
366 container_node* create_container(node_type nt = NT_LIST,
/third_party/mindspore/test/utils/
H A Dmodel_utils.cpp33 std::cout << "Before forwarding " << kernelInfo.node_name << " " << kernelInfo.node_type << std::endl; in PrintBeforeCallback()
40 std::cout << "After forwarding " << kernelInfo.node_name << " " << kernelInfo.node_type << std::endl; in PrintAfterCallback()
/third_party/skia/modules/skottie/src/
H A DSkottiePriv.h150 AutoPropertyTracker(const AnimationBuilder* builder, const skjson::ObjectValue& obj, const PropertyObserver::NodeType node_type) in AutoPropertyTracker() argument
152 , fPrevContext(builder->fPropertyObserverContext), fNodeType(node_type) { in AutoPropertyTracker()
/third_party/skia/modules/skottie/utils/
H A DSkottieUtils.cpp48 void onEnterNode(const char node_name[], PropertyObserver::NodeType node_type) override {
56 void onLeavingNode(const char node_name[], PropertyObserver::NodeType node_type) override {
/third_party/gn/src/gn/
H A Dparser.cc903 std::string node_type(node.FindKey("type")->GetString()); in RenderToText()
904 if (node_type == "ACCESSOR") { in RenderToText()
907 os << IndentFor(indent_level) << node_type << std::endl; in RenderToText()
911 os << IndentFor(indent_level) << node_type; in RenderToText()
/third_party/python/Lib/lib2to3/
H A Drefactor.py87 for node_type in heads:
88 head_nodes[node_type].append(fixer)
94 for node_type in chain(pygram.python_grammar.symbol2number.values(),
96 head_nodes[node_type].extend(every)
/third_party/mindspore/interfaces/kits/c/
H A Dmodel.h63 char *node_type; member

Completed in 33 milliseconds

12