Home
last modified time | relevance | path

Searched refs:this_width (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/src/fpdftext/
Dfpdf_text_search.cpp105 FX_FLOAT this_width = nThisWidth * pObj->GetFontSize() / 1000; in FPDFText_ProcessInterObj() local
106 this_width = FXSYS_fabs(this_width); in FPDFText_ProcessInterObj()
107 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4; in FPDFText_ProcessInterObj()
128 … if((x - last_pos - last_width) > this_width || (x - last_pos - this_width) > last_width ) { in FPDFText_ProcessInterObj()
132 if(last_pos + last_width > x + this_width && curChar == L' ') { in FPDFText_ProcessInterObj()
238 int this_width = FXSYS_abs(GetCharWidth(item.m_CharCode, pFont)); in ProcessObject() local
239 threshold = this_width > last_width ? (FX_FLOAT)this_width : (FX_FLOAT)last_width; in ProcessObject()
Dfpdf_text_int.cpp1382 …FX_FLOAT this_width = GetCharWidth(item.m_CharCode, pTextObj->GetFont()) * pTextObj->GetFontSize()… local
1383 this_width = FXSYS_fabs(this_width);
1386 this_width = FXSYS_fabs(this_width);
1388 this_width = this_matrix.TransformDistance(this_width);
1389 FX_FLOAT threshold = prev_width > this_width ? prev_width / 4 : this_width / 4;
1739 int this_width = FXSYS_abs(GetCharWidth(item.m_CharCode, pFont)); local
1740 threshold = this_width > last_width ? (FX_FLOAT)this_width : (FX_FLOAT)last_width;
1962 FX_FLOAT this_width = nThisWidth * pObj->GetFontSize() / 1000; local
1963 this_width = FXSYS_fabs(this_width);
1964 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4;
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
Dvp9_scale.h64 int this_width, int this_height) { in valid_ref_frame_size() argument
65 return 2 * this_width >= ref_width && in valid_ref_frame_size()
67 this_width <= 16 * ref_width && in valid_ref_frame_size()
/external/pdfium/core/src/reflow/
Dlayoutprocessor_reflow.cpp1186 … FX_FLOAT this_width = GetCharWidth(item.m_CharCode, pObj->GetFont()) * pObj->GetFontSize() / 1000; in ProcessInsertObject() local
1187 this_width = FXSYS_fabs(this_width); in ProcessInsertObject()
1188 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4; in ProcessInsertObject()
1226 …FX_FLOAT this_width = pObj->GetFont()->GetCharWidthF(item.m_CharCode) * pObj->GetFontSize() / 1000; in LogicPreObj() local
1227 this_width = FXSYS_fabs(this_width); in LogicPreObj()
1228 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4; in LogicPreObj()