Searched refs:start_x (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/ui/gfx/android/
H A Dscroller.h33 void StartScroll(float start_x,
41 void StartScroll(float start_x,
50 void Fling(float start_x,
H A Dscroller.cc190 void Scroller::StartScroll(float start_x, argument
195 StartScroll(start_x,
203 void Scroller::StartScroll(float start_x, argument
214 curr_x_ = start_x_ = start_x;
216 final_x_ = start_x + dx;
222 void Scroller::Fling(float start_x, argument
252 curr_x_ = start_x_ = start_x;
266 final_x_ = start_x + total_distance * coeff_x;
/external/pdfium/fpdfsdk/include/
H A Dfpdf_progressive.h57 // start_x - Left pixel position of the display area in the bitmap coordinate.
68 DLLEXPORT int STDCALL FPDF_RenderPageBitmap_Start(FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, int start_y, int size_x,
H A Dfpdfview.h329 // start_x - Left pixel position of the display area in the device coordinate.
339 DLLEXPORT void STDCALL FPDF_RenderPage(HDC dc, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y,
349 // start_x - Left pixel position of the display area in the bitmap coordinate.
359 DLLEXPORT void STDCALL FPDF_RenderPageBitmap(FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, int start_y,
384 // start_x - Left pixel position of the display area in the device coordinate.
404 // utilities. You must make sure the start_x, start_y, size_x, size_y and rotate parameters have exactly
407 DLLEXPORT void STDCALL FPDF_DeviceToPage(FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y,
414 // start_x - Left pixel position of the display area in the device coordinate.
429 DLLEXPORT void STDCALL FPDF_PageToDevice(FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y,
H A Dfpdfformfill.h817 * start_x - Left pixel position of the display area in the device coordinate.
831 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle,FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, int start_y,
/external/pdfium/fpdfsdk/src/
H A Dfpdf_progressive.cpp12 extern void (*Func_RenderPage)( CRenderContext*, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y,
18 int start_x, int start_y, int size_x,
53 Func_RenderPage(pContext, page, start_x, start_y, size_x, size_y, rotate, flags,FALSE, &IPauseAdapter);
56 Func_RenderPage(pContext, page, start_x, start_y, size_x, size_y, rotate, flags,FALSE, &IPauseAdapter);
17 FPDF_RenderPageBitmap_Start( FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, int flags, IFSDK_PAUSE * pause ) argument
H A Dfpdfview.cpp429 void FPDF_RenderPage_Retail(CRenderContext* pContext, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y,
431 void (*Func_RenderPage)(CRenderContext*, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y,
439 DLLEXPORT void STDCALL FPDF_RenderPage(HDC dc, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, argument
469 Func_RenderPage(pContext, page, start_x, start_y, size_x, size_y, rotate, flags,TRUE,NULL);
472 Func_RenderPage(pContext, page, start_x, start_y, size_x, size_y, rotate, flags,TRUE,NULL);
499 rect.left = start_x;
501 rect.right = start_x + size_x;
555 Func_RenderPage(pContext, page, start_x - rect.left, start_y - rect.top, size_x, size_y, rotate, flags);
558 Func_RenderPage(pContext, page, start_x - rect.left, start_y - rect.top, size_x, size_y, rotate, flags);
605 DLLEXPORT void STDCALL FPDF_RenderPageBitmap(FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, in argument
669 FPDF_DeviceToPage(FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, int device_x, int device_y, double* page_x, double* page_y) argument
687 FPDF_PageToDevice(FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, double page_x, double page_y, int* device_x, int* device_y) argument
779 FPDF_RenderPage_Retail(CRenderContext* pContext, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, int flags,FX_BOOL bNeedToRestore, IFSDK_PAUSE_Adapter * pause ) argument
[all...]
H A Dfpdfformfill.cpp189 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle, FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, int start_y, argument
217 pPage->GetDisplayMatrix(matrix, start_x, start_y, size_x, size_y, rotate);
220 clip.left = start_x;
221 clip.right = start_x + size_x;
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout.h62 // kAddType*. |start_x| is the new x-coordinate non-mini tabs start at.
63 void AddTab(int index, int add_types, int start_x);
65 // Removes the tab at the specified index. |start_x| is the new x-coordinate
68 void RemoveTab(int index, int start_x, int old_x);
75 int start_x,
H A Dstacked_tab_strip_layout.cc150 void StackedTabStripLayout::AddTab(int index, int add_types, int start_x) { argument
157 x_ = start_x;
173 void StackedTabStripLayout::RemoveTab(int index, int start_x, int old_x) { argument
183 int delta = start_x - x_;
184 x_ = start_x;
200 int start_x,
202 x_ = start_x;
215 start_x - ideal_x(mini_tab_count - 1) : 0;
216 first_tab_x_ = mini_tab_count > 0 ? ideal_x(0) : start_x;
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_path.cpp232 static void _UpdateLineEndPoints(CFX_FloatRect& rect, FX_FLOAT start_x, FX_FLOAT start_y, FX_FLOAT end_x, FX_FLOAT end_y,
235 if (start_x == end_x) {
252 if (end_x < start_x) {
261 FX_FLOAT dx = end_x - start_x;
271 static void _UpdateLineJoinPoints(CFX_FloatRect& rect, FX_FLOAT start_x, FX_FLOAT start_y,
276 FX_BOOL bStartVert = FXSYS_fabs(start_x - middle_x) < 1.0f / 20;
286 start_k = FXSYS_Div(middle_y - start_y, middle_x - start_x);
288 start_len = FXSYS_sqrt2(start_x - middle_x, start_y - middle_y);
289 start_dc = (FX_FLOAT)FXSYS_fabs(FXSYS_MulDiv(half_width, start_len, start_x - middle_x));
298 FX_FLOAT outside_x = start_x;
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp22 FX_FLOAT start_x = pCoords->GetNumber(0); local
40 FX_FLOAT x_span = end_x - start_x;
80 FX_FLOAT scale = FXSYS_Div(FXSYS_Mul(x - start_x, x_span) + FXSYS_Mul(y - start_y, y_span), axis_len_square);
106 FX_FLOAT start_x = pCoords->GetNumber(0); local
154 FX_FLOAT a = FXSYS_Mul(start_x - end_x, start_x - end_x) +
162 int length = (int)FXSYS_sqrt((FXSYS_Mul(start_x - end_x, start_x - end_x) + FXSYS_Mul(start_y - end_y, start_y - end_y)));
172 FX_FLOAT b = -2 * (FXSYS_Mul(x - start_x, end_x - start_x)
356 int start_x = min_x, end_x = max_x; local
1023 int start_x, start_y; local
[all...]
/external/jpeg/
H A Djdapistd.c205 * and its upper-left corner located at (start_x, start_y).
206 * Align start_x and start_y to multiplies of iMCU width and height, respectively.
208 * (start_x, start_y) and (width, height), respectively.
213 int *start_x, int *start_y, int *width, int *height)
219 int col_left_boundary = ((*start_x / lines_per_iMCU_col)
222 jdiv_round_up(*start_x + *width, lines_per_iMCU_col);
225 *start_x / lines_per_iMCU_col - col_left_boundary;
228 *start_x = col_left_boundary * lines_per_iMCU_col;
212 jpeg_init_read_tile_scanline(j_decompress_ptr cinfo, huffman_index *index, int *start_x, int *start_y, int *width, int *height) argument
/external/qemu/distrib/jpeg-6b/
H A Djdapistd.c205 * and its upper-left corner located at (start_x, start_y).
206 * Align start_x and start_y to multiplies of iMCU width and height, respectively.
208 * (start_x, start_y) and (width, height), respectively.
213 int *start_x, int *start_y, int *width, int *height)
219 int col_left_boundary = ((*start_x / lines_per_iMCU_col)
222 jdiv_round_up(*start_x + *width, lines_per_iMCU_col);
225 *start_x / lines_per_iMCU_col - col_left_boundary;
228 *start_x = col_left_boundary * lines_per_iMCU_col;
212 jpeg_init_read_tile_scanline(j_decompress_ptr cinfo, huffman_index *index, int *start_x, int *start_y, int *width, int *height) argument
/external/chromium_org/ash/wm/
H A Dresize_shadow_and_cursor_unittest.cc191 int start_x = 200 + ash::kResizeOutsideBoundsSize - 1; local
194 gfx::Point(start_x, start_y),
195 gfx::Point(start_x + 50, start_y + 50),
/external/chromium_org/chrome/browser/ui/views/infobars/
H A Dinfobar_view.cc191 int start_x = kEdgeItemPadding; local
193 icon_->SetPosition(gfx::Point(start_x, OffsetY(icon_)));
194 start_x = icon_->bounds().right() + kIconToLabelSpacing;
200 start_x + content_minimum_width +
/external/chromium_org/third_party/libyuv/util/
H A Dssim.cc276 const int start_x = start_max(image_width - 8 + KERNEL_X, KERNEL_X); local
293 for (int i = KERNEL_X; i < start_x; ++i) {
296 if (start_x < image_width) {
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc2428 int start_x, start_y, size_x, size_y; local
2430 page_index, dirty, &start_x, &start_y, &size_x, &size_y);
2431 FPDFBitmap_FillRect(progressive_paints_[progressive_index].bitmap, start_x,
2435 pages_[page_index]->GetPage(), start_x, start_y, size_x, size_y,
2447 int start_x, start_y, size_x, size_y; local
2449 page_index, dirty_in_screen, &start_x, &start_y, &size_x, &size_y);
2453 form_, bitmap, pages_[page_index]->GetPage(), start_x, start_y, size_x,
2589 int start_x, start_y, size_x, size_y; local
2590 GetPDFiumRect(page_index, dirty, &start_x, &start_y, &size_x, &size_y);
2592 FPDFBitmap_FillRect(bitmap, start_x, start_
2621 GetPDFiumRect( int page_index, const pp::Rect& rect, int* start_x, int* start_y, int* size_x, int* size_y) const argument
[all...]
/external/chromium_org/ash/wm/dock/
H A Ddocked_window_resizer_unittest.cc1009 int start_x = w2->bounds().x(); local
1013 EXPECT_EQ(start_x, w2->bounds().x());
1019 EXPECT_EQ(start_x, w2->bounds().x());
1031 EXPECT_NE(start_x, w2->bounds().x());
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_views.cc186 int start_x = bounds.x(); variable
190 icon->SetX(start_x);
193 start_x += icon->bounds().width() + kAroundTextPadding;
209 label->SetBounds(start_x, bounds.y(), end_x - start_x, bounds.height());
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.c1871 FT_Pos start_x, start_y; /* record start x, y values for */ local
1887 start_x = x;
1928 x = start_x;
/external/chromium_org/ui/gfx/
H A Drender_text.cc529 int start_x = GetCursorBounds(selection_start, true).x(); local
533 if (direction == CURSOR_RIGHT ? start_x > cursor_x : start_x < cursor_x)
/external/freetype/src/cff/
H A Dcffgload.c1867 FT_Pos start_x, start_y; /* record start x, y values for */ local
1883 start_x = x;
1924 x = start_x;
/external/opencv/cv/src/
H A DmycvHaarDetectObjects.cpp1166 int start_x = 0, start_y = 0; local
1208 start_x = cvRound(scan_roi_rect.x / ystep);
1226 for( _ix = start_x; _ix < end_x; _ix += _xstep )
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffgload.c1875 FT_Pos start_x, start_y; /* record start x, y values for */ local
1891 start_x = x;
1932 x = start_x;

Completed in 738 milliseconds

12