Home | History | Annotate | Download | only in fxjs

Lines Matching refs:child

277     for (CXFA_Node* child : children) {
279 if (child->GetClassHashCode() == uNameHash)
280 rnd.m_Objects.push_back(child);
281 } else if (child->GetNameHash() == uNameHash) {
282 rnd.m_Objects.push_back(child);
285 if (m_pNodeHelper->NodeIsTransparent(child) &&
286 child->GetElementType() != XFA_Element::PageSet) {
291 rndFind.m_CurObject = child;
382 CXFA_Node* child = parentNode->GetFirstChild();
391 while (child) {
392 if (child == curNode) {
397 if (child->GetNameHash() == uNameHash) {
406 child = child->GetNextSibling();
411 if (child->GetClassHashCode() == uNameHash)
412 rnd.m_Objects.push_back(child);
413 } else if (child->GetNameHash() == uNameHash) {
414 rnd.m_Objects.push_back(child);
418 if (parentNode->HasProperty(child->GetElementType())) {
419 if ((child->GetElementType() == XFA_Element::Variables ||
420 child->GetElementType() == XFA_Element::PageSet)) {
423 } else if (m_pNodeHelper->NodeIsTransparent(child)) {
427 rndFind.m_CurObject = child;
441 child = child->GetNextSibling();