Home
last modified time | relevance | path

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

/external/chromium_org/ash/system/
Dtray_accessibility.cc191 views::View* bottom_row = new View(); in AppendHelpEntries() local
198 bottom_row->SetLayoutManager(layout); in AppendHelpEntries()
206 bottom_row->AddChildView(help); in AppendHelpEntries()
213 bottom_row->AddChildView(settings); in AppendHelpEntries()
216 AddChildView(bottom_row); in AppendHelpEntries()
/external/chromium_org/ash/system/chromeos/network/
Dnetwork_state_list_detailed_view.cc404 views::View* bottom_row = new views::View(); in CreateNetworkExtra() local
411 bottom_row->SetLayoutManager(layout); in CreateNetworkExtra()
416 bottom_row->AddChildView(other_wifi_); in CreateNetworkExtra()
420 bottom_row->AddChildView(turn_on_wifi_); in CreateNetworkExtra()
424 bottom_row->AddChildView(other_mobile_); in CreateNetworkExtra()
433 bottom_row->AddChildView(toggle_debug_preferred_networks_); in CreateNetworkExtra()
440 bottom_row->AddChildView(other_vpn_); in CreateNetworkExtra()
445 bottom_row->AddChildView(settings_ ? settings_ : proxy_settings_); in CreateNetworkExtra()
447 AddChildView(bottom_row); in CreateNetworkExtra()
/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/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()