Searched refs:layout (Results 1 - 25 of 824) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Dlayout_settings.css5 #layout-settings .layout-settings-select {
/external/chromium_org/third_party/opus/src/src/
H A Dopus_multistream.c41 int validate_layout(const ChannelLayout *layout) argument
45 max_channel = layout->nb_streams+layout->nb_coupled_streams;
48 for (i=0;i<layout->nb_channels;i++)
50 if (layout->mapping[i] >= max_channel && layout->mapping[i] != 255)
57 int get_left_channel(const ChannelLayout *layout, int stream_id, int prev) argument
61 for (;i<layout->nb_channels;i++)
63 if (layout->mapping[i]==stream_id*2)
69 int get_right_channel(const ChannelLayout *layout, in argument
81 get_mono_channel(const ChannelLayout *layout, int stream_id, int prev) argument
[all...]
/external/libopus/src/
H A Dopus_multistream.c41 int validate_layout(const ChannelLayout *layout) argument
45 max_channel = layout->nb_streams+layout->nb_coupled_streams;
48 for (i=0;i<layout->nb_channels;i++)
50 if (layout->mapping[i] >= max_channel && layout->mapping[i] != 255)
57 int get_left_channel(const ChannelLayout *layout, int stream_id, int prev) argument
61 for (;i<layout->nb_channels;i++)
63 if (layout->mapping[i]==stream_id*2)
69 int get_right_channel(const ChannelLayout *layout, in argument
81 get_mono_channel(const ChannelLayout *layout, int stream_id, int prev) argument
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dblockimport.c40 struct Block_layout *layout = (struct Block_layout *)(void *)vv;
41 printf("isa %p\n", layout->isa);
42 printf("flags %x\n", layout->flags);
43 printf("descriptor %p\n", layout->descriptor);
44 printf("descriptor->size %d\n", layout->descriptor->size);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dstringquery.cpp19 QGridLayout *layout = new QGridLayout; local
20 layout->addWidget(new QLabel(label), 0, 0);
21 layout->addWidget(edit, 0, 1);
22 setLayout(layout);
/external/chromium_org/ash/display/
H A Ddisplay_layout_store.cc20 char layout; local
22 if (sscanf(value.c_str(), "%c,%d", &layout, &offset) == 2) {
23 if (layout == 't')
25 else if (layout == 'b')
27 else if (layout == 'r')
29 else if (layout == 'l')
39 void DisplayLayoutStore::SetDefaultDisplayLayout(const DisplayLayout& layout) { argument
42 default_display_layout_ = layout;
48 const DisplayLayout& layout) {
49 paired_layouts_[std::make_pair(id1, id2)] = layout;
45 RegisterLayoutForDisplayIdPair( int64 id1, int64 id2, const DisplayLayout& layout) argument
62 DisplayLayout layout = GetRegisteredDisplayLayout(pair); local
86 DisplayLayout layout = default_display_layout_; local
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dopen_pdf_in_reader_bubble_view.cc12 #include "ui/views/layout/grid_layout.h"
13 #include "ui/views/layout/layout_constants.h"
30 GridLayout* layout = new views::GridLayout(this);
31 SetLayoutManager(layout);
34 views::ColumnSet* column_set = layout->AddColumnSet(single_column_set_id);
40 layout->StartRow(0, single_column_set_id);
41 layout->AddView(title_label);
43 layout->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
49 layout->StartRow(0, single_column_set_id);
50 layout
[all...]
H A Dlogin_view.cc11 #include "ui/views/layout/grid_layout.h"
12 #include "ui/views/layout/layout_constants.h"
39 GridLayout* layout = GridLayout::CreatePanel(this); local
40 SetLayoutManager(layout);
46 layout->AddColumnSet(single_column_view_set_id);
52 column_set = layout->AddColumnSet(labels_column_set_id);
61 layout->StartRow(0, single_column_view_set_id);
62 layout->AddView(message_label_);
64 layout->AddPaddingRow(0, views::kUnrelatedControlLargeVerticalSpacing);
66 layout
[all...]
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dopaque_browser_frame_view_platform_specific.cc19 OpaqueBrowserFrameViewLayout* layout,
17 Create( OpaqueBrowserFrameView* view, OpaqueBrowserFrameViewLayout* layout, Profile* profile) argument
/external/chromium_org/content/test/
H A Dmock_keyboard.cc19 int MockKeyboard::GetCharacters(Layout layout, argument
25 // Change the keyboard layout only when we have to because it takes a lot of
26 // time to load a keyboard-layout driver.
27 // When we change the layout, we reset the modifier status to force updating
29 if (layout != keyboard_layout_) {
30 if (!driver_.SetLayout(layout))
32 keyboard_layout_ = layout;
/external/chromium_org/third_party/skia/src/views/
H A DSkViewPriv.h17 Layout_SkTagList(SkView::Layout* layout) argument
18 : SkTagList(kViewLayout_SkTagList), fLayout(layout)
20 SkASSERT(layout);
21 layout->ref();
/external/objenesis/tck/test/
H A Dlog4j.properties29 log4j.appender.stdout.layout.ConversionPattern=%p [%c] - %m%n
30 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
/external/skia/src/views/
H A DSkViewPriv.h17 Layout_SkTagList(SkView::Layout* layout) argument
18 : SkTagList(kViewLayout_SkTagList), fLayout(layout)
20 SkASSERT(layout);
21 layout->ref();
/external/chromium_org/media/base/
H A Dchannel_layout.cc46 // The channel orderings for each layout as specified by FFmpeg. Each value
47 // represents the index of each channel in each layout. Values of -1 mean the
48 // channel at that index is not used for that layout. For example, the left side
49 // surround sound channel in FFmpeg's 5.1 layout is in the 5th position (because
155 int ChannelLayoutToChannelCount(ChannelLayout layout) { argument
156 DCHECK_LT(static_cast<size_t>(layout), arraysize(kLayoutToChannels));
157 return kLayoutToChannels[layout];
160 // Converts a channel count into a channel layout.
185 int ChannelOrder(ChannelLayout layout, Channels channel) { argument
186 DCHECK_LT(static_cast<size_t>(layout), arraysiz
191 ChannelLayoutToString(ChannelLayout layout) argument
[all...]
/external/chromium_org/ui/views/examples/
H A Dmessage_box_example.cc10 #include "ui/views/layout/grid_layout.h"
30 GridLayout* layout = new GridLayout(container); local
31 container->SetLayoutManager(layout);
36 ColumnSet* column_set = layout->AddColumnSet(message_box_column);
39 layout->StartRow(1 /* expand */, message_box_column);
40 layout->AddView(message_box_view_);
43 column_set = layout->AddColumnSet(button_column);
49 layout->StartRow(0 /* no expand */, button_column);
51 layout->AddView(status_);
52 layout
[all...]
H A Dradio_button_example.cc11 #include "ui/views/layout/grid_layout.h"
38 GridLayout* layout = new GridLayout(container); local
39 container->SetLayoutManager(layout);
41 ColumnSet* column_set = layout->AddColumnSet(0);
45 layout->StartRow(0, 0);
46 layout->AddView(radio_buttons_[i]);
48 layout->StartRow(0, 0);
49 layout->AddView(select_);
50 layout->StartRow(0, 0);
51 layout
[all...]
H A Dtextfield_example.cc14 #include "ui/views/layout/grid_layout.h"
54 GridLayout* layout = new GridLayout(container); local
55 container->SetLayoutManager(layout);
57 ColumnSet* column_set = layout->AddColumnSet(0);
62 layout->StartRow(0, 0);
63 layout->AddView(new Label(ASCIIToUTF16("Name:")));
64 layout->AddView(name_);
65 layout->StartRow(0, 0);
66 layout->AddView(new Label(ASCIIToUTF16("Password:")));
67 layout
[all...]
H A Dtabbed_pane_example.cc10 #include "ui/views/layout/grid_layout.h"
30 GridLayout* layout = new GridLayout(container); local
31 container->SetLayoutManager(layout);
34 ColumnSet* column_set = layout->AddColumnSet(tabbed_pane_column);
37 layout->StartRow(1 /* expand */, tabbed_pane_column);
38 layout->AddView(tabbed_pane_);
46 column_set = layout->AddColumnSet(button_column);
52 layout->StartRow(0 /* no expand */, button_column);
53 layout->AddView(add_);
54 layout
[all...]
H A Dprogress_bar_example.cc12 #include "ui/views/layout/grid_layout.h"
40 GridLayout* layout = new GridLayout(container); local
41 container->SetLayoutManager(layout);
43 ColumnSet* column_set = layout->AddColumnSet(0);
53 layout->StartRow(0, 0);
55 layout->AddView(minus_button_);
57 layout->AddView(progress_bar_);
59 layout->AddView(plus_button_);
/external/clang/test/CodeGen/
H A Dblockstret.c55 const char *layout; // conditional on BLOCK_HAS_OBJC member in struct:block_descriptor_big
61 const char *layout; // conditional on BLOCK_HAS_OBJC member in struct:block_descriptor_small
73 struct block_layout_abi *layout = (struct block_layout_abi *)block; local
74 if ((layout->flags & BLOCK_HAS_OBJC_TYPE) != BLOCK_HAS_OBJC_TYPE) return 0;
75 if (layout->flags & BLOCK_HAS_COPY_DISPOSE)
76 return layout->descriptor->signature;
78 return ((struct block_descriptor_small *)layout->descriptor)->signature;
82 struct block_layout_abi *layout = (struct block_layout_abi *)block; local
84 return (layout->flags & want) == want;
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dbundle_installed_bubble.cc19 #include "ui/views/layout/grid_layout.h"
20 #include "ui/views/layout/layout_constants.h"
40 GridLayout* layout = GridLayout::CreatePanel(this); local
41 SetLayoutManager(layout);
42 views::ColumnSet* column_set = layout->AddColumnSet(kColumnSetId);
58 layout->StartRow(0, kColumnSetId);
60 AddContent(layout, bundle);
66 void AddContent(GridLayout* layout, const BundleInstaller* bundle) { argument
74 layout->StartRow(0, kColumnSetId);
75 AddHeading(layout, installed_headin
102 AddItemList(GridLayout* layout, const BundleInstaller::ItemList& items) argument
119 AddCloseButton(GridLayout* layout, views::ButtonListener* listener) argument
132 AddHeading(GridLayout* layout, const base::string16& heading) argument
[all...]
/external/chromium_org/ui/views/layout/
H A Dgrid_layout_unittest.cc5 #include "ui/views/layout/grid_layout.h"
56 GridLayoutTest() : layout(&host) {}
64 pref = layout.GetPreferredSize(&host);
70 GridLayout layout; member in class:views::GridLayoutTest
77 layout(&host) {}
85 ColumnSet* c1 = layout.AddColumnSet(0);
87 layout.StartRow(1, 0);
88 layout.AddView(&v1);
89 gfx::Size pref = layout.GetPreferredSize(&host);
92 layout
99 GridLayout layout; member in class:views::GridLayoutAlignmentTest
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMediaControlElements.cpp42 void RenderTextTrackContainerElement::layout() function in class:blink::RenderTextTrackContainerElement
44 RenderBlockFlow::layout();
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
H A Dutil.js28 * @param {string} layout The wallpaper layout.
31 WallpaperUtil.saveWallpaperInfo = function(url, layout, source) {
34 layout: layout,
81 * Sets wallpaper to online wallpaper specified by url and layout
83 * @param {string} layout The layout of online wallpaper.
87 WallpaperUtil.setOnlineWallpaper = function(url, layout, onSuccess, onFailure) {
89 chrome.wallpaperPrivate.setWallpaperIfExists(url, layout, functio
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DDateTimeSuggestionListAdapter.java25 super(context, R.layout.date_time_suggestion, objects);
31 View layout = convertView;
34 layout = inflater.inflate(R.layout.date_time_suggestion, parent, false);
36 TextView labelView = (TextView) layout.findViewById(R.id.date_time_suggestion_value);
37 TextView sublabelView = (TextView) layout.findViewById(R.id.date_time_suggestion_label);
47 return layout;

Completed in 4770 milliseconds

1234567891011>>