HomeSort by relevance Sort by last modified time
    Searched refs:pChild (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 104 XmlChild* pChild;
108 for (pChild = elt.first_child_; pChild; pChild = pChild->NextChild()) {
109 if (pChild->IsText()) {
110 newChild = new XmlText(*(pChild->AsText()));
112 newChild = new XmlElement(*(pChild->AsElement()));
253 XmlChild* pChild;
254 for (pChild = first_child_; pChild; pChild = pChild->next_child_)
476 XmlChild* pchild; local
505 XmlChild* pchild; local
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_ListCtrl.cpp 76 if (CPWL_Wnd* pChild = m_aChildren.GetAt(i))
78 FX_FLOAT fLeft = pChild->GetItemLeftMargin();
79 FX_FLOAT fRight = pChild->GetItemRightMargin();
81 fRet += pChild->GetItemHeight(fLimitWidth - fBorderWidth* 2 - fLeft - fRight);
103 if (CPWL_Wnd* pChild = m_aChildren.GetAt(nStart-1))
104 fy = pChild->GetWindowRect().bottom - m_fItemSpace;
108 if (CPWL_Wnd* pChild = m_aChildren.GetAt(i))
110 FX_FLOAT fLeft = pChild->GetItemLeftMargin();
111 FX_FLOAT fRight = pChild->GetItemRightMargin();
113 pChild->SetChildMatrix(
    [all...]
PWL_Wnd.cpp 294 if (CPWL_Wnd * pChild = m_aChildren[i])
296 pChild->Destroy();
297 delete pChild;
298 pChild = NULL;
423 if (CPWL_Wnd * pChild = m_aChildren.GetAt(i))
425 pChild->GetAppearanceStream(sAppStream);
468 if (CPWL_Wnd * pChild = m_aChildren.GetAt(i))
470 CPDF_Matrix mt = pChild->GetChildMatrix();
473 pChild->DrawAppearance(pDevice,pUser2Device);
478 pChild->DrawAppearance(pDevice,&mt);
    [all...]
PWL_IconList.cpp 259 if (CPWL_Wnd * pChild = m_aChildren.GetAt(i))
261 CPDF_Rect rcWnd = pChild->ChildToParent(pChild->GetWindowRect());
354 if (CPWL_Wnd * pChild = m_aChildren.GetAt(nItemIndex))
356 if (pChild->GetClassName() == "CPWL_IconList_Item")
358 return (CPWL_IconList_Item*)pChild;
396 if (CPWL_Wnd * pChild = m_aChildren.GetAt(i))
398 if (pChild->GetClassName() == "CPWL_IconList_Item")
400 CPWL_IconList_Item* pItem = (CPWL_IconList_Item*)pChild;
PWL_Note.cpp 494 if (CPWL_Wnd* pChild = m_aChildren.GetAt(nIndex))
496 ASSERT(pChild->GetClassName() == "CPWL_NoteItem");
497 CPWL_NoteItem* pItem = (CPWL_NoteItem*)pChild;
518 if (CPWL_Wnd* pChild = m_aChildren.GetAt(i))
520 ASSERT(pChild->GetClassName() == "CPWL_NoteItem");
521 CPWL_NoteItem* pItem = (CPWL_NoteItem*)pChild;
536 if (CPWL_Wnd* pChild = m_aChildren.GetAt(i))
538 if (pChild->GetClassName() == "CPWL_NoteItem")
540 CPWL_NoteItem* pNoteItem = (CPWL_NoteItem*)pChild;
564 if (CPWL_Wnd* pChild = m_aChildren.GetAt(i))
    [all...]
PWL_EditCtrl.cpp 94 if (CPWL_Wnd * pChild = GetVScrollBar())
96 pChild->OnNotify(pWnd,PNM_SETSCROLLINFO,wParam,lParam);
105 if (CPWL_Wnd * pChild = GetVScrollBar())
107 pChild->OnNotify(pWnd,PNM_SETSCROLLPOS,wParam,lParam);
PWL_ListBox.cpp 371 if (CPWL_Wnd * pChild = GetVScrollBar())
373 pChild->OnNotify(pWnd,PNM_SETSCROLLINFO,wParam,lParam);
382 if (CPWL_Wnd * pChild = GetVScrollBar())
384 pChild->OnNotify(pWnd,PNM_SETSCROLLPOS,wParam,lParam);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdutil.h 26 void *pChild
70 WSDXML_ELEMENT *pChild
mshtmlc.h     [all...]
mshtml.h     [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_tnm/src/
dm_tree_class_private.cc     [all...]
dm_tree_class_public.cc     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 1000 RtreeNode *pChild;
1018 rc = nodeAcquire(pRtree, iRowid, pCursor->pNode, &pChild);
1024 pCursor->pNode = pChild;
1026 for(ii=0; isEof && ii<NCELL(pChild); ii++){
1035 assert( pCursor->pNode==pChild );
1037 nodeRelease(pRtree, pChild);
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdf_ext.cpp 143 CXML_Element * pChild = pElement->GetElement(i);
144 if(CheckSharedForm(pChild, cbName))
  /external/pdfium/core/src/reflow/
layoutprovider_taggedpdf.cpp 18 CPDF_LayoutElement* pChild = (CPDF_LayoutElement*)m_ChildArray.GetAt(i);
19 delete pChild;
20 pChild = NULL;
autoreflow.cpp 168 CPDF_AutoReflowElement* pChild = (CPDF_AutoReflowElement*)pElm->GetChild(i);
169 ReleaseElm(pChild);
  /external/pdfium/core/include/fxcrt/
fx_xml.h 181 FX_DWORD FindElement(CXML_Element *pChild) const;
  /external/chromium_org/third_party/sqlite/src/src/
btree.c     [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_form.cpp 150 _Node *pChild = (_Node *)ptr_array[i];
151 RemoveNode(pChild, nLevel + 1);
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 1936 milliseconds