Home
last modified time | relevance | path

Searched refs:pRet (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/fpdfsdk/src/formfiller/
DFFL_ListBox.cpp211 CPWL_Wnd* pRet = NULL; in ResetPDFWindow() local
215 pRet = GetPDFWindow(pPageView, FALSE); in ResetPDFWindow()
217 pRet = GetPDFWindow(pPageView, TRUE); in ResetPDFWindow()
222 return pRet; in ResetPDFWindow()
DFFL_TextField.cpp247 CPWL_Wnd* pRet = NULL; in ResetPDFWindow() local
251 pRet = GetPDFWindow(pPageView, FALSE); in ResetPDFWindow()
253 pRet = GetPDFWindow(pPageView, TRUE); in ResetPDFWindow()
258 return pRet; in ResetPDFWindow()
DFFL_ComboBox.cpp230 CPWL_Wnd* pRet = NULL; in ResetPDFWindow() local
234 pRet = GetPDFWindow(pPageView, FALSE); in ResetPDFWindow()
236 pRet = GetPDFWindow(pPageView, TRUE); in ResetPDFWindow()
241 return pRet; in ResetPDFWindow()
/external/libunwind/src/ia64/
DGinstall_cursor.S50 #define pRet p6 macro
152 cmp.eq pRet, pSig = r0, r8 // sigcontext_addr == NULL?
220 (pRet) ld8 r25 = [r25] // r25 = *unat_loc
272 (pRet) mov.m ar.fpsr = r27 // fpsr restored (don't touch no more)
/external/pdfium/xfa/src/fwl/src/core/
Dfwl_widgetmgrimp.cpp75 IFWL_Widget* pRet = NULL; in GetWidget() local
78 pRet = pItem->pParent ? pItem->pParent->pWidget : NULL; in GetWidget()
82 pRet = pItem->pOwner ? pItem->pOwner->pWidget : NULL; in GetWidget()
90 pRet = pItem ? pItem->pWidget : NULL; in GetWidget()
94 pRet = pItem->pPrevious ? pItem->pPrevious->pWidget : NULL; in GetWidget()
98 pRet = pItem->pNext ? pItem->pNext->pWidget : NULL; in GetWidget()
106 pRet = pItem ? pItem->pWidget : NULL; in GetWidget()
110 pRet = pItem->pChild ? pItem->pChild->pWidget : NULL; in GetWidget()
118 pRet = pItem ? pItem->pWidget : NULL; in GetWidget()
124 pRet = pItem->pWidget; in GetWidget()
[all …]
Dfwl_widgetimp.cpp619 IFWL_ThemeProvider* pRet = pUp->GetThemeProvider(); in GetAvailableTheme() local
620 if (pRet && pRet->IsValidWidget(m_pInterface)) { in GetAvailableTheme()
621 return pRet; in GetAvailableTheme()
628 IFWL_Widget* pRet = m_pOuter; in GetRootOuter() local
629 if (!pRet) in GetRootOuter()
631 while (IFWL_Widget* pOuter = pRet->GetOuter()) { in GetRootOuter()
632 pRet = pOuter; in GetRootOuter()
634 return static_cast<CFWL_WidgetImp*>(pRet->GetImpl()); in GetRootOuter()
/external/pdfium/xfa/src/fgas/src/font/
Dfx_stdfontmgr.cpp94 FGAS_LPCFONTUSB pRet = FGAS_GetUnicodeBitField(wUnicode); in GetDefFontByUnicode() local
95 if (pRet->wBitField == 999) { in GetDefFontByUnicode()
99 FGAS_GetFontFamilyHash(pszFontFamily, dwFontStyles, pRet->wBitField); in GetDefFontByUnicode()
102 return pFont ? LoadFont(pFont, dwFontStyles, pRet->wCodePage) : NULL; in GetDefFontByUnicode()
106 FindFont(pszFontFamily, dwFontStyles, FALSE, pRet->wCodePage, in GetDefFontByUnicode()
107 pRet->wBitField, wUnicode); in GetDefFontByUnicode()
109 pFD = FindFont(NULL, dwFontStyles, FALSE, pRet->wCodePage, pRet->wBitField, in GetDefFontByUnicode()
138 FX_WORD wCodePage = pRet->wCodePage; in GetDefFontByUnicode()
/external/sqlite/dist/
Dsqlite3.c51582 Wal *pRet; /* Object to allocate and return */
51602 pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile);
51603 if( !pRet ){
51607 pRet->pVfs = pVfs;
51608 pRet->pWalFd = (sqlite3_file *)&pRet[1];
51609 pRet->pDbFd = pDbFd;
51610 pRet->readLock = -1;
51611 pRet->mxWalSize = mxWalSize;
51612 pRet->zWalName = zWalName;
51613 pRet->syncHeader = 1;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c51564 Wal *pRet; /* Object to allocate and return */
51584 pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile);
51585 if( !pRet ){
51589 pRet->pVfs = pVfs;
51590 pRet->pWalFd = (sqlite3_file *)&pRet[1];
51591 pRet->pDbFd = pDbFd;
51592 pRet->readLock = -1;
51593 pRet->mxWalSize = mxWalSize;
51594 pRet->zWalName = zWalName;
51595 pRet->syncHeader = 1;
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_colors.cpp1227 CPDF_ColorSpace* pRet = nullptr; in Load() local
1230 pRet = _CSFromName(pValue->GetString()); in Load()
1231 if (pRet) in Load()
1232 return pRet; in Load()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp3277 CPDF_Object* pRet = nullptr; in GetObject() local
3296 pRet = pParser->ParseIndirectObject(NULL, objnum, NULL); in GetObject()
3299 if (!pRet && pExistInFile) { in GetObject()
3303 return pRet; in GetObject()
4403 CPDF_Object* pRet = pParentDict->GetElement("Resources"); in HaveResourceAncestor() local
4404 if (pRet) { in HaveResourceAncestor()
4405 m_pPageResource = pRet; in HaveResourceAncestor()
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Note.cpp458 if (IPWL_NoteItem* pRet = pNoteItem->GetHitNoteItem(pt)) in GetHitNoteItem() local
459 return pRet; in GetHitNoteItem()