Home
last modified time | relevance | path

Searched refs:bottom_row (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/ash/system/chromeos/network/
Dnetwork_state_list_detailed_view.cc331 views::View* bottom_row = new views::View(); in CreateNetworkExtra() local
338 bottom_row->SetLayoutManager(layout); in CreateNetworkExtra()
343 bottom_row->AddChildView(other_wifi_); in CreateNetworkExtra()
347 bottom_row->AddChildView(turn_on_wifi_); in CreateNetworkExtra()
351 bottom_row->AddChildView(other_mobile_); in CreateNetworkExtra()
357 bottom_row->AddChildView(other_vpn_); in CreateNetworkExtra()
369 bottom_row->AddChildView(settings_ ? settings_ : proxy_settings_); in CreateNetworkExtra()
371 AddChildView(bottom_row); in CreateNetworkExtra()
/external/chromium_org/ash/system/
Dtray_accessibility.cc220 views::View* bottom_row = new View(); in AppendHelpEntries() local
227 bottom_row->SetLayoutManager(layout); in AppendHelpEntries()
235 bottom_row->AddChildView(help); in AppendHelpEntries()
242 bottom_row->AddChildView(settings); in AppendHelpEntries()
245 AddChildView(bottom_row); in AppendHelpEntries()
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
Ddesktop_region.cc554 Rows::const_iterator bottom_row = row_; in UpdateCurrentRect() local
557 bottom = bottom_row->second->bottom; in UpdateCurrentRect()
558 previous = bottom_row; in UpdateCurrentRect()
559 ++bottom_row; in UpdateCurrentRect()
560 } while (bottom_row != region_.rows_.end() && in UpdateCurrentRect()
561 previous->second->bottom == bottom_row->second->top && in UpdateCurrentRect()
562 IsSpanInRow(*bottom_row->second, *row_span_)); in UpdateCurrentRect()
/external/pixman/pixman/
Dpixman-bits-image.c157 uint32_t *bottom_row; in bits_image_fetch_bilinear_no_repeat_8888() local
209 bottom_row = zero; in bits_image_fetch_bilinear_no_repeat_8888()
215 bottom_row = bits->bits + y2 * bits->rowstride; in bits_image_fetch_bilinear_no_repeat_8888()
236 if (top_row == zero && bottom_row == zero) in bits_image_fetch_bilinear_no_repeat_8888()
248 else if (bottom_row == zero) in bits_image_fetch_bilinear_no_repeat_8888()
285 br = bottom_row[pixman_fixed_to_int (x_bottom) + 1] | bottom_mask; in bits_image_fetch_bilinear_no_repeat_8888()
309 bl = bottom_row [pixman_fixed_to_int (x_bottom)] | bottom_mask; in bits_image_fetch_bilinear_no_repeat_8888()
310 br = bottom_row [pixman_fixed_to_int (x_bottom) + 1] | bottom_mask; in bits_image_fetch_bilinear_no_repeat_8888()
334 bl = bottom_row [pixman_fixed_to_int (x_bottom)] | bottom_mask; in bits_image_fetch_bilinear_no_repeat_8888()
/external/chromium_org/third_party/skia/platform_tools/nacl/debugger/
Ddebugger.css65 #bottom_row {
/external/skia/platform_tools/nacl/debugger/
Ddebugger.css65 #bottom_row {
/external/chromium_org/cc/resources/
Dpicture_pile_unittest.cc637 gfx::Rect bottom_row = gfx::UnionRects(pile_->tiling().TileBounds(0, 5), in TEST_P() local
639 EXPECT_FALSE(expected_invalidation.Contains(bottom_row)); in TEST_P()
641 expected_invalidation.Union(bottom_row); in TEST_P()
/external/opencv/cv/src/
Dcvfilter.cpp2670 float* bottom_row = ipp_kernel->data.fl + el_size.width*(el_size.height - i - 1); in cvFilter2D() local
2675 float c = bottom_row[j], d = bottom_row[el_size.width - j - 1]; in cvFilter2D()
2678 bottom_row[j] = b; in cvFilter2D()
2679 bottom_row[el_size.width - j - 1] = a; in cvFilter2D()