Searched refs:pBBox (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_type3font.cpp | 70 RetainPtr<const CPDF_Array> pBBox = m_pFontDict->GetArrayFor("FontBBox"); in Load() local 71 if (pBBox) { in Load() 73 pBBox->GetFloatAt(0) * xscale, pBBox->GetFloatAt(1) * yscale, in Load() 74 pBBox->GetFloatAt(2) * xscale, pBBox->GetFloatAt(3) * yscale); in Load()
|
D | cpdf_font.cpp | 192 RetainPtr<const CPDF_Array> pBBox = pFontDesc->GetArrayFor("FontBBox"); in LoadFontDescriptor() local 193 if (pBBox) { in LoadFontDescriptor() 194 m_FontBBox.left = pBBox->GetIntegerAt(0); in LoadFontDescriptor() 195 m_FontBBox.bottom = pBBox->GetIntegerAt(1); in LoadFontDescriptor() 196 m_FontBBox.right = pBBox->GetIntegerAt(2); in LoadFontDescriptor() 197 m_FontBBox.top = pBBox->GetIntegerAt(3); in LoadFontDescriptor()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_docpagedata.cpp | 535 auto pBBox = pdfium::MakeRetain<CPDF_Array>(); in AddFont() local 536 pBBox->AppendNew<CPDF_Number>(bbox.left); in AddFont() 537 pBBox->AppendNew<CPDF_Number>(bbox.bottom); in AddFont() 538 pBBox->AppendNew<CPDF_Number>(bbox.right); in AddFont() 539 pBBox->AppendNew<CPDF_Number>(bbox.top); in AddFont() 557 pFont->GetDescent(), std::move(pBBox), nStemV); in AddFont() 631 auto pBBox = pdfium::MakeRetain<CPDF_Array>(); in AddWindowsFont() local 633 pBBox->AppendNew<CPDF_Number>(bbox[i]); in AddWindowsFont() 636 descend, std::move(pBBox), pLogFont->lfWeight / 5); in AddWindowsFont()
|
D | cpdf_contentparser.cpp | 74 RetainPtr<const CPDF_Array> pBBox = in CPDF_ContentParser() local 78 if (pBBox) { in CPDF_ContentParser() 79 form_bbox = pBBox->GetRect(); in CPDF_ContentParser()
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 203183 GeoBBox *pBBox; 203184 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); 203185 if( pBBox==0 ) return; 203186 if( pBBox->isInit==0 ){ 203187 pBBox->isInit = 1; 203188 memcpy(pBBox->a, a, sizeof(RtreeCoord)*4); 203190 if( a[0].f < pBBox->a[0].f ) pBBox->a[0] = a[0]; 203191 if( a[1].f > pBBox->a[1].f ) pBBox->a[1] = a[1]; 203192 if( a[2].f < pBBox->a[2].f ) pBBox->a[2] = a[2]; 203193 if( a[3].f > pBBox->a[3].f ) pBBox->a[3] = a[3]; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 203215 GeoBBox *pBBox; 203216 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); 203217 if( pBBox==0 ) return; 203218 if( pBBox->isInit==0 ){ 203219 pBBox->isInit = 1; 203220 memcpy(pBBox->a, a, sizeof(RtreeCoord)*4); 203222 if( a[0].f < pBBox->a[0].f ) pBBox->a[0] = a[0]; 203223 if( a[1].f > pBBox->a[1].f ) pBBox->a[1] = a[1]; 203224 if( a[2].f < pBBox->a[2].f ) pBBox->a[2] = a[2]; 203225 if( a[3].f > pBBox->a[3].f ) pBBox->a[3] = a[3]; [all …]
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 196284 GeoBBox *pBBox; 196285 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); 196286 if( pBBox==0 ) return; 196287 if( pBBox->isInit==0 ){ 196288 pBBox->isInit = 1; 196289 memcpy(pBBox->a, a, sizeof(RtreeCoord)*4); 196291 if( a[0].f < pBBox->a[0].f ) pBBox->a[0] = a[0]; 196292 if( a[1].f > pBBox->a[1].f ) pBBox->a[1] = a[1]; 196293 if( a[2].f < pBBox->a[2].f ) pBBox->a[2] = a[2]; 196294 if( a[3].f > pBBox->a[3].f ) pBBox->a[3] = a[3]; [all …]
|