Home
last modified time | relevance | path

Searched refs:nelem (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_minidom.py71 nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
[all …]
/device/generic/goldfish/camera/
DEmulatedFakeRotatingCameraDevice.cpp141 int nelem = sizeof(indices)/sizeof(indices[0]); in render() local
143 glDrawElements(GL_TRIANGLES, nelem, GL_UNSIGNED_SHORT, indices); in render()