Home
last modified time | relevance | path

Searched refs:nodetype (Results 1 – 8 of 8) sorted by relevance

/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/docs/
Ddocument-fragment.md12 * [nodeType](#nodetype)
86 <a id="nodetype"></a>
92 [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type).
Ddocument-type.md9 * [nodeType](#nodetype)
59 <a id="nodetype"></a>
65 [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type).
Dcomment-node.md9 * [nodeType](#nodetype)
58 <a id="nodetype"></a>
64 [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type).
Dtext-node.md9 * [nodeType](#nodetype)
58 <a id="nodetype"></a>
64 [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type).
Ddocument.md12 * [nodeType](#nodetype)
87 <a id="nodetype"></a>
93 [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type).
Delement.md14 * [nodeType](#nodetype)
114 <a id="nodetype"></a>
120 [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type).
/third_party/python/Tools/peg_generator/pegen/
Dc_generator.py84 nodetype: Optional[NodeTypes] = None variable in FunctionCall
127 nodetype=NodeTypes.KEYWORD,
138 nodetype=NodeTypes.SOFT_KEYWORD,
150 nodetype=BASE_NODETYPES[name],
158 nodetype=NodeTypes.GENERIC_TOKEN,
190 nodetype=NodeTypes.GENERIC_TOKEN,
228 if call.nodetype == NodeTypes.NAME_TOKEN:
234 elif call.nodetype == NodeTypes.SOFT_KEYWORD:
240 elif call.nodetype in {NodeTypes.GENERIC_TOKEN, NodeTypes.KEYWORD}:
262 if call.nodetype == NodeTypes.GENERIC_TOKEN:
[all …]
/third_party/libdrm/
Dxf86drm.c2781 int nodetype; in drmGetDeviceNameFromFd() local
2788 nodetype = drmGetMinorType(maj, min); in drmGetDeviceNameFromFd()
2789 return drmGetMinorNameForFD(fd, nodetype); in drmGetDeviceNameFromFd()
2943 int id, maj, min, nodetype, i; in drmGetMinorNameForFD()
2963 nodetype = drmGetMinorType(maj, min); in drmGetMinorNameForFD()
2964 if (nodetype == -1) in drmGetMinorNameForFD()
2976 id -= drmGetMinorBase(nodetype); in drmGetMinorNameForFD()