Searched defs:last_width (Results 1 - 6 of 6) sorted by relevance

/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_search.cpp97 FX_FLOAT last_width = nLastWidth * pPrevObj->GetFontSize() / 1000; local
98 last_width = FXSYS_fabs(last_width);
107 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4;
120 if (FXSYS_fabs(last_pos + last_width - x) > threshold && curChar != L' ' && preChar != L' ')
122 if((x - last_pos - last_width) > threshold || (last_pos - x - last_width) > threshold) {
125 if(x < 0 && (last_pos - x - last_width) > threshold) {
128 if((x - last_pos - last_width) > this_widt
224 int last_width = 0; local
[all...]
H A Dfpdf_text_int.cpp1725 int last_width = 0; local
1740 threshold = this_width > last_width ? (FX_FLOAT)this_width : (FX_FLOAT)last_width;
1959 FX_FLOAT last_width = nLastWidth * m_pPreTextObj->GetFontSize() / 1000;
1960 last_width = FXSYS_fabs(last_width);
1964 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4;
1973 if(last_width < this_width) {
2036 if (FXSYS_fabs(last_pos + last_width
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_onyxc_int.h78 int last_width; member in struct:VP9Common
298 const int use_prev_in_find_mv_refs = cm->width == cm->last_width &&
/external/libvpx/libvpx/vp9/common/
H A Dvp9_onyxc_int.h81 int last_width; member in struct:VP9Common
289 cm->width == cm->last_width &&
/external/pdfium/core/src/reflow/
H A Dlayoutprocessor_reflow.cpp1183 FX_FLOAT last_width = GetCharWidth(item.m_CharCode, m_pPreObj->GetFont()) * m_pPreObj->GetFontSize() / 1000; local
1184 last_width = FXSYS_fabs(last_width);
1188 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4;
1208 if ((x - last_pos - last_width) > threshold && curChar != L' ' && preChar != L' ') {
1223 FX_FLOAT last_width = pPreObj->GetFont()->GetCharWidthF(item.m_CharCode) * pPreObj->GetFontSize() / 1000; local
1224 last_width = FXSYS_fabs(last_width);
1228 FX_FLOAT threshold = last_width > this_widt
[all...]
/external/qemu/ui/
H A Dconsole.c551 int w1, x, y, last_width; local
553 last_width = s->width;
557 w1 = last_width;
565 c1 = &s->cells[y * last_width];

Completed in 1984 milliseconds