Searched defs:layout (Results 276 - 300 of 363) sorted by relevance

<<1112131415

/external/chromium_org/chrome/browser/ui/views/
H A Davatar_menu_bubble_view.cc44 #include "ui/views/layout/grid_layout.h"
45 #include "ui/views/layout/layout_constants.h"
464 views::GridLayout* layout = new views::GridLayout(this); local
465 views::ColumnSet* columns = layout->AddColumnSet(0);
470 layout->StartRow(0, 0);
471 layout->AddView(signout_button_);
472 layout->AddView(manage_button_);
473 SetLayoutManager(layout);
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_install_dialog_view.cc40 #include "ui/views/layout/box_layout.h"
41 #include "ui/views/layout/grid_layout.h"
42 #include "ui/views/layout/layout_constants.h"
168 // layout.
177 views::GridLayout* layout = new views::GridLayout(this); local
178 SetLayoutManager(layout);
179 views::ColumnSet* column_set = layout->AddColumnSet(0);
192 layout->StartRow(0, 0);
193 layout->AddView(new views::Label(PrepareForDisplay(base::string16(), true)));
194 layout
361 views::GridLayout* layout = views::GridLayout::CreatePanel(scrollable_); local
767 views::GridLayout* layout = new views::GridLayout(this); local
[all...]
/external/chromium_org/chrome/browser/ui/views/website_settings/
H A Dwebsite_settings_popup_view.cc43 #include "ui/views/layout/box_layout.h"
44 #include "ui/views/layout/grid_layout.h"
45 #include "ui/views/layout/layout_manager.h"
152 views::GridLayout* layout = new views::GridLayout(this); local
153 SetLayoutManager(layout);
156 views::ColumnSet* column_set = layout->AddColumnSet(label_column);
173 layout->AddPaddingRow(0, kHeaderPaddingTop);
175 layout->StartRow(0, label_column);
179 layout->AddView(name_, 1, 1, views::GridLayout::LEADING,
190 layout
300 views::GridLayout* layout = new views::GridLayout(this); local
407 views::GridLayout* layout = new views::GridLayout(site_data_content_); local
458 views::GridLayout* layout = local
631 views::GridLayout* layout = new views::GridLayout(container); local
674 views::GridLayout* layout = new views::GridLayout(section_container); local
[all...]
/external/chromium_org/content/renderer/
H A Drender_view_browsertest.cc144 int SendKeyEvent(MockKeyboard::Layout layout, argument
149 // Retrieve the Unicode character for the given tuple (keyboard-layout,
151 // Exit when a keyboard-layout driver cannot assign a Unicode character to
156 int length = mock_keyboard_->GetCharacters(layout, key_code, modifiers,
196 // We ignore |layout|, which means we are only testing the layout of the
197 // current locale. TODO(mazda): fix this to respect |layout|.
261 // We ignore |layout|, which means we are only testing the layout of the
262 // current locale. TODO(estade): fix this to respect |layout|
1240 MockKeyboard::Layout layout = kLayouts[i]; local
1322 MockKeyboard::Layout layout; member in struct:content::__anon8555
1487 MockKeyboard::Layout layout = kLayouts[i].layout; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListBox.cpp166 void RenderListBox::layout() function in class:WebCore::RenderListBox
169 RenderBlockFlow::layout();
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupListBox.cpp816 layout();
822 layout();
825 void PopupListBox::layout() function in class:WebCore::PopupListBox
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c84 * Allocate storage for llvmpipe_texture::layout array.
122 /* Row stride and image stride (for linear layout) */
145 /* Size of the image in tiles (for tiled layout) */
166 lpr->layout[level] = alloc_layout_array(num_slices, width, height);
167 if (!lpr->layout[level]) {
187 if (lpr->layout[level]) {
188 FREE(lpr->layout[level]);
216 lpr->layout[0] = alloc_layout_array(1, width, height);
217 if (!lpr->layout[0]) {
265 assert(lpr->layout[
367 llvmpipe_resource_map(struct pipe_resource *resource, unsigned level, unsigned layer, enum lp_texture_usage tex_usage, enum lp_texture_layout layout) argument
791 tex_image_face_size(const struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_layout layout) argument
823 tex_image_size(const struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_layout layout) argument
895 llvmpipe_get_texture_image_address(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, enum lp_texture_layout layout) argument
934 llvmpipe_set_texture_tile_layout(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, unsigned x, unsigned y, enum lp_texture_layout layout) argument
952 llvmpipe_set_texture_image_layout(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, unsigned width_t, unsigned height_t, enum lp_texture_layout layout) argument
971 alloc_image_data(struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_layout layout) argument
1022 llvmpipe_get_texture_image(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, enum lp_texture_usage usage, enum lp_texture_layout layout) argument
1163 llvmpipe_get_texture_image_all(struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_usage usage, enum lp_texture_layout layout) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir.cpp500 depth_layout_string(ir_depth_layout layout) argument
502 switch(layout) {
/external/chromium_org/third_party/opus/src/src/
H A Dopus_multistream_encoder.c73 ChannelLayout layout; member in struct:OpusMSEncoder
94 for (s=0;s<st->layout.nb_streams;s++)
96 if (s < st->layout.nb_coupled_streams)
101 return (opus_val32*)(ptr+st->layout.nb_channels*120*sizeof(opus_val32));
113 for (s=0;s<st->layout.nb_streams;s++)
115 if (s < st->layout.nb_coupled_streams)
123 static int validate_encoder_layout(const ChannelLayout *layout) argument
126 for (s=0;s<layout->nb_streams;s++)
128 if (s < layout->nb_coupled_streams)
130 if (get_left_channel(layout,
[all...]
/external/chromium_org/ui/message_center/views/
H A Dmessage_center_view.cc41 #include "ui/views/layout/box_layout.h"
42 #include "ui/views/layout/fill_layout.h"
250 views::BoxLayout* layout = local
252 layout->set_spread_blank_space(true);
253 SetLayoutManager(layout);
255 // Set the margin to 0 for the layout. BoxLayout assumes the same margin
827 // Skip unnecessary re-layout of contents during the resize animation.
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp103 /// LayoutUnionField - Will layout a field in an union and return the type
108 /// LayoutUnion - Will layout a union RecordDecl.
117 /// LayoutField - try to layout all fields in the record decl.
126 /// LayoutVirtualBase - layout a single virtual base.
130 /// LayoutVirtualBases - layout the virtual bases of a record decl.
134 /// MSLayoutVirtualBases - layout the virtual bases of a record decl,
139 /// LayoutNonVirtualBase - layout a single non-virtual base.
143 /// LayoutNonVirtualBases - layout the virtual bases of a record decl.
150 /// LayoutField - layout a single field. Returns false if the operation failed
154 /// LayoutBitField - layout
474 const ASTRecordLayout &layout = Types.getContext().getASTRecordLayout(D); local
[all...]
/external/kernel-headers/original/linux/raid/
H A Dmd_k.h131 int level, layout; member in struct:mddev_s
279 int (*reconfig) (mddev_t *mddev, int layout, int chunk_size);
H A Dmd_p.h2 md_p.h : physical layout of Linux RAID devices
165 __u32 new_layout; /* 16 new layout */
172 __u32 layout; /* 0 the array's physical layout */ member in struct:mdp_superblock_s
219 __u32 layout; /* only for raid5 and raid10 currently */ member in struct:mdp_superblock_1
233 __u32 new_layout; /* new layout */
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c84 * Allocate storage for llvmpipe_texture::layout array.
122 /* Row stride and image stride (for linear layout) */
145 /* Size of the image in tiles (for tiled layout) */
166 lpr->layout[level] = alloc_layout_array(num_slices, width, height);
167 if (!lpr->layout[level]) {
187 if (lpr->layout[level]) {
188 FREE(lpr->layout[level]);
216 lpr->layout[0] = alloc_layout_array(1, width, height);
217 if (!lpr->layout[0]) {
265 assert(lpr->layout[
367 llvmpipe_resource_map(struct pipe_resource *resource, unsigned level, unsigned layer, enum lp_texture_usage tex_usage, enum lp_texture_layout layout) argument
791 tex_image_face_size(const struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_layout layout) argument
823 tex_image_size(const struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_layout layout) argument
895 llvmpipe_get_texture_image_address(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, enum lp_texture_layout layout) argument
934 llvmpipe_set_texture_tile_layout(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, unsigned x, unsigned y, enum lp_texture_layout layout) argument
952 llvmpipe_set_texture_image_layout(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, unsigned width_t, unsigned height_t, enum lp_texture_layout layout) argument
971 alloc_image_data(struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_layout layout) argument
1022 llvmpipe_get_texture_image(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, enum lp_texture_usage usage, enum lp_texture_layout layout) argument
1163 llvmpipe_get_texture_image_all(struct llvmpipe_resource *lpr, unsigned level, enum lp_texture_usage usage, enum lp_texture_layout layout) argument
[all...]
/external/mesa3d/src/glsl/
H A Dir.cpp500 depth_layout_string(ir_depth_layout layout) argument
502 switch(layout) {
/external/qemu/android/
H A Dmain-common.c307 SkinDisplay* disp = skin_layout_get_display(emulator->layout);
386 add_parts_to_layout(AConfig* layout, argument
405 i + 2, // layout already has the device part as part1, so start from part2
411 aconfig_load(layout, strdup(tmp));
441 snprintf(tmp, sizeof(tmp), "%s/layout", *skinDirPath);
449 /* Fix the width and height specified for the "device" part in the layout */
464 /* The dynamic layout declares all the parts that are available statically
465 in the layout file. Now we need to dynamically generate the
466 appropriate layout based on the hardware config */
634 snprintf(tmp, sizeof tmp, "%s/%s/layout", skinDirPat
[all...]
/external/qemu/distrib/sdl-1.2.15/src/joystick/linux/
H A DSDL_sysjoystick.c164 an array of layout structures, one to describe each logical joystick
173 struct joystick_logical_layout *layout; member in struct:joystick_logicalmap
773 struct joystick_logical_layout* layout; local
775 layout = SDL_joylist[joystick->index].map->layout +
778 joystick->nbuttons = layout->nbuttons;
779 joystick->nhats = layout->nhats;
780 joystick->naxes = layout->naxes;
781 joystick->nballs = layout->nballs;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextView.java56 private Layout layout; field in class:ShadowTextView
485 return this.layout;
529 public void setLayout(Layout layout) { argument
530 this.layout = layout;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/
H A DR.java114 public static final class layout { class in class:R
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c1001 VexGuestLayout* layout,
1039 VexGuestLayout* layout,
1069 addStmtToIRSB(irsb, IRStmt_Put(layout->offset_IP ,
1091 di->fxState[0].offset = layout->offset_SP;
1092 di->fxState[0].size = layout->sizeof_SP;
1096 di->fxState[1].offset = layout->offset_IP;
1097 di->fxState[1].size = layout->sizeof_IP;
1114 VexGuestLayout* layout,
1125 (sb_in, layout, vge, sb_in->next->Iex.RdTmp.tmp, irsb);
1133 VexGuestLayout* layout,
999 add_stmt_call_invalidate_if_not_gdbserved( IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRTemp jmp, IRSB* irsb) argument
1037 add_stmt_call_gdbserver(IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRType gWordTy, IRType hWordTy, Addr iaddr, UChar delta, IRSB* irsb) argument
1112 add_stmt_call_invalidate_exit_target_if_not_gdbserved(IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRType gWordTy, IRSB* irsb) argument
1131 instrument_for_gdbserver_if_needed(IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRType gWordTy, IRType hWordTy) argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_translate.c221 VexGuestLayout* layout,
229 layout,
233 layout,
260 VexGuestLayout* layout,
287 sizeof_SP = layout->sizeof_SP;
288 offset_SP = layout->offset_SP;
335 dcall->fxState[0].offset = layout->offset_SP; \
336 dcall->fxState[0].size = layout->sizeof_SP; \
365 dcall->fxState[0].offset = layout->offset_SP; \
366 dcall->fxState[0].size = layout
219 tool_instrument_then_gdbserver_if_needed( VgCallbackClosure* closureV, IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRType gWordTy, IRType hWordTy ) argument
258 vg_SP_update_pass( void* closureV, IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRType gWordTy, IRType hWordTy ) argument
[all...]
/external/valgrind/main/none/tests/ppc32/
H A Dround.c55 } layout; member in union:__anon28697
65 } layout; member in union:__anon28699
122 msg, D.dbl, (D.layout.sign == 0 ? '+' : '-'),
123 D.layout.exp, D.layout.frac_hi, D.layout.frac_lo);
137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
151 if ((R.layout
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dround.c55 } layout; member in union:__anon28740
65 } layout; member in union:__anon28742
122 msg, D.dbl, (D.layout.sign == 0 ? '+' : '-'),
123 D.layout.exp, D.layout.frac_hi, D.layout.frac_lo);
137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
151 if ((R.layout
[all...]
/external/chromium/chrome/browser/chromeos/input_method/
H A Dcandidate_window.cc23 #include "views/layout/fill_layout.h"
24 #include "views/layout/grid_layout.h"
91 views::GridLayout* layout = new views::GridLayout(wrapper); local
92 wrapper->SetLayoutManager(layout); // |wrapper| owns |layout|.
93 layout->SetInsets(insets);
95 views::ColumnSet* column_set = layout->AddColumnSet(0);
99 layout->StartRow(0, 0);
102 layout->AddView(view); // |view| is owned by |wraper|, not |layout|
634 views::GridLayout* layout = new views::GridLayout(this); local
773 views::GridLayout* layout = new views::GridLayout(this); local
1011 views::GridLayout* layout = new views::GridLayout(candidate_area_); local
[all...]
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.cc49 #include "views/layout/grid_layout.h"
1073 views::GridLayout* layout = new views::GridLayout(external_tab_view_); local
1075 views::ColumnSet* columns = layout->AddColumnSet(0);
1083 external_tab_view_->SetLayoutManager(layout);
1085 layout->StartRow(0, 0);
1086 layout->AddView(info_bar_container);
1087 layout->StartRow(1, 0);
1088 layout->AddView(tab_contents_container_);

Completed in 808 milliseconds

<<1112131415