Searched refs:pChild (Results 1 – 3 of 3) sorted by relevance
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
D | xmlelement.cc | 113 XmlChild * pChild; in XmlElement() local 117 for (pChild = elt.pFirstChild_; pChild; pChild = pChild->NextChild()) { in XmlElement() 118 if (pChild->IsText()) { in XmlElement() 119 newChild = new XmlText(*(pChild->AsText())); in XmlElement() 121 newChild = new XmlElement(*(pChild->AsElement())); in XmlElement() 257 XmlChild * pChild; in FirstElement() local 258 for (pChild = pFirstChild_; pChild; pChild = pChild->pNextChild_) { in FirstElement() 259 if (!pChild->IsText()) in FirstElement() 260 return pChild->AsElement(); in FirstElement() 267 XmlChild * pChild; in NextElement() local [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 51816 MemPage *pChild = 0; /* Pointer to a new child page */ 51829 rc = allocateBtreePage(pBt,&pChild,&pgnoChild,pRoot->pgno,0); 51830 copyNodeContent(pRoot, pChild, &rc); 51837 releasePage(pChild); 51840 assert( sqlite3PagerIswriteable(pChild->pDbPage) ); 51842 assert( pChild->nCell==pRoot->nCell ); 51844 TRACE(("BALANCE: copy root %d into %d\n", pRoot->pgno, pChild->pgno)); 51847 memcpy(pChild->aOvfl, pRoot->aOvfl, pRoot->nOverflow*sizeof(pRoot->aOvfl[0])); 51848 pChild->nOverflow = pRoot->nOverflow; 51851 zeroPage(pRoot, pChild->aData[0] & ~PTF_LEAF); [all …]
|
D | sqlite3.c.orig | 51809 MemPage *pChild = 0; /* Pointer to a new child page */ 51822 rc = allocateBtreePage(pBt,&pChild,&pgnoChild,pRoot->pgno,0); 51823 copyNodeContent(pRoot, pChild, &rc); 51830 releasePage(pChild); 51833 assert( sqlite3PagerIswriteable(pChild->pDbPage) ); 51835 assert( pChild->nCell==pRoot->nCell ); 51837 TRACE(("BALANCE: copy root %d into %d\n", pRoot->pgno, pChild->pgno)); 51839 /* Copy the overflow cells from pRoot to pChild */ 51840 memcpy(pChild->aOvfl, pRoot->aOvfl, pRoot->nOverflow*sizeof(pRoot->aOvfl[0])); 51841 pChild->nOverflow = pRoot->nOverflow; [all …]
|