/external/chromium/chrome/browser/bookmarks/ |
bookmark_drop_info.h | 28 // is_control_down, last_y and updates the autoscroll timer as necessary. 42 int last_y() { return last_y_; } function in class:BookmarkDropInfo
|
/external/chromium/chrome/browser/notifications/ |
desktop_notifications_unittest.cc | 391 int last_y = -1; local 400 if (last_y > 0) { 402 EXPECT_GT(current_y, last_y); 404 EXPECT_LT(current_y, last_y); 409 last_y = current_y; 417 last_y = -1; 426 if (last_y > 0) { 428 EXPECT_LT(current_y, last_y); 430 EXPECT_GT(current_y, last_y); 435 last_y = current_y [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/ |
SDL_riscosevents.c | 251 static Sint16 last_x = -1, last_y = -1; variable 272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2]) 303 if (last_x != new_x || last_y != new_y) 314 last_y = topLeftY - (centre_y << this->hidden->yeig); 326 block[3] = last_y & 0xFF; 327 block[4] = (last_y >> 8) & 0xFF; 337 last_y = new_y;
|
/external/chromium_org/third_party/libwebp/dec/ |
webpi.h | 36 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
|
idec.c | 778 if (height != NULL) *height = idec->params_.last_y; 786 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, 794 if (last_y != NULL) *last_y = idec->params_.last_y; 802 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, 812 if (last_y != NULL) *last_y = idec->params_.last_y;
|
io.c | 365 uint8_t* dst = buf->rgba + (p->last_y + y_pos) * buf->stride; 371 assert(p->last_y + y_pos + num_lines_out < p->output->height); 410 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride; 422 assert(p->last_y + y_pos + num_lines_out < p->output->height); 441 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride; 451 assert(p->last_y + y_pos + num_lines_out < p->output->height); 609 p->last_y += num_lines_out;
|
/external/chromium_org/third_party/libwebp/webp/ |
decode.h | 335 // *last_y is the index of last decoded row in raster scan order. Some pointers 336 // (*last_y, *width etc.) can be NULL if corresponding information is not 339 const WebPIDecoder* idec, int* last_y, 346 const WebPIDecoder* idec, int* last_y, 353 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, 355 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
|
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/ |
SDL_fbelo.c | 84 static int last_y = 0; local 95 if((SDL_abs(x - last_x) > ELO_SNAP_SIZE) || (SDL_abs(y - last_y) > ELO_SNAP_SIZE)) { 101 *dy = last_y; 105 last_y = *dy;
|
/external/webp/include/webp/ |
decode.h | 335 // *last_y is the index of last decoded row in raster scan order. Some pointers 336 // (*last_y, *width etc.) can be NULL if corresponding information is not 339 const WebPIDecoder* idec, int* last_y, 346 const WebPIDecoder* idec, int* last_y, 353 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, 355 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
|
/external/webp/src/dec/ |
webpi.h | 36 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
|
idec.c | 778 if (height != NULL) *height = idec->params_.last_y; 786 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, 794 if (last_y != NULL) *last_y = idec->params_.last_y; 802 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, 812 if (last_y != NULL) *last_y = idec->params_.last_y;
|
io.c | 365 uint8_t* dst = buf->rgba + (p->last_y + y_pos) * buf->stride; 371 assert(p->last_y + y_pos + num_lines_out < p->output->height); 410 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride; 422 assert(p->last_y + y_pos + num_lines_out < p->output->height); 441 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride; 451 assert(p->last_y + y_pos + num_lines_out < p->output->height); 609 p->last_y += num_lines_out;
|
/external/chromium_org/chrome/browser/notifications/ |
desktop_notifications_unittest.cc | 521 int last_y = -1; local 530 if (last_y > 0) { 532 EXPECT_GT(current_y, last_y); 534 EXPECT_LT(current_y, last_y); 539 last_y = current_y; 547 last_y = -1; 556 if (last_y > 0) { 558 EXPECT_LT(current_y, last_y); 560 EXPECT_GT(current_y, last_y); 565 last_y = current_y [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
menu_bar_helper.cc | 124 gint last_y = y; local 126 last_button, button, last_x, last_y, &x, &y)) {
|
/external/chromium_org/chrome/browser/ui/gtk/ |
menu_bar_helper.cc | 127 gint last_y = y; local 129 last_button, button, last_x, last_y, &x, &y)) {
|
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_events.c | 84 static int last_x, last_y; local 88 last_y = evt.axisabs; 89 posted += SDL_PrivateMouseMotion(0, 0, last_x, last_y);
|
/external/chromium_org/third_party/skia/src/core/ |
SkScan_Path.cpp | 200 static bool update_edge(SkEdge* edge, int last_y) { 201 SkASSERT(edge->fLastY >= last_y); 202 if (last_y == edge->fLastY) { 205 SkASSERT(edge->fFirstY == last_y + 1); 210 SkASSERT(edge->fFirstY == last_y + 1);
|
/external/skia/src/core/ |
SkScan_Path.cpp | 200 static bool update_edge(SkEdge* edge, int last_y) { 201 SkASSERT(edge->fLastY >= last_y); 202 if (last_y == edge->fLastY) { 205 SkASSERT(edge->fFirstY == last_y + 1); 210 SkASSERT(edge->fFirstY == last_y + 1);
|
/external/chromium_org/third_party/ots/src/ |
woff2.cc | 285 int last_y = 0; local 293 int dy = point.y - last_y; 328 last_y = point.y; 348 last_y = 0; 360 int dy = points.at(i).y - last_y; 368 last_y += dy; [all...] |
/external/speex/libspeex/ |
mdf.c | 154 spx_word16_t *last_y; member in struct:SpeexEchoState_ 450 st->last_y = (spx_word16_t*)speex_alloc(C*N*sizeof(spx_word16_t)); 556 st->last_y[i] = 0; 597 speex_free(st->last_y); [all...] |
/external/qemu/ |
vnc.h | 128 int last_y; member in struct:VncState
|
/external/chromium_org/ash/wm/workspace/ |
workspace_window_resizer.cc | 491 int last_y = details_.initial_bounds_in_parent.bottom(); local 494 bounds.set_y(last_y); 497 last_y = attached_windows_[i]->bounds().bottom(); [all...] |
/external/chromium_org/skia/ext/ |
image_operations_unittest.cc | 410 int last_y = std::min(src_h - 1, y * 2 + 1); local 414 first_y, last_y); 424 PrintPixel(src, first_x, last_x, first_y, last_y);
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 1505 int y,next_y,last_y; local [all...] |
/packages/apps/Camera2/jni/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 1505 int y,next_y,last_y; local [all...] |