HomeSort by relevance Sort by last modified time
    Searched refs:layout (Results 701 - 725 of 4661) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_linkage.c 118 util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigned efficient_slots, unsigned num_slots)
124 memset(layout, 0xff, num_slots);
136 layout[i] = i;
141 layout[i - first] = i;
147 layout[idx++] = i;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_texture.h 45 /** Per-tile layout mode */
48 LP_TEX_LAYOUT_NONE = 0, /**< no layout for the tile data yet */
49 LP_TEX_LAYOUT_TILED, /**< the tile data is in tiled layout */
50 LP_TEX_LAYOUT_LINEAR, /**< the tile data is in linear layout */
64 * linear layout (for texture sampling) and another in a tiled layout (for
82 * The former are tiled and have per-tile layout flags.
115 /** array [level][face or slice][tile_y][tile_x] of layout values) */
116 enum lp_texture_layout *layout[LP_MAX_TEXTURE_LEVELS]; member in struct:llvmpipe_resource
178 enum lp_texture_layout layout);
    [all...]
lp_texture.c 84 * 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[0][0] == LP_TEX_LAYOUT_NONE)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.c 118 util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigned efficient_slots, unsigned num_slots)
124 memset(layout, 0xff, num_slots);
136 layout[i] = i;
141 layout[i - first] = i;
147 layout[idx++] = i;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.h 45 /** Per-tile layout mode */
48 LP_TEX_LAYOUT_NONE = 0, /**< no layout for the tile data yet */
49 LP_TEX_LAYOUT_TILED, /**< the tile data is in tiled layout */
50 LP_TEX_LAYOUT_LINEAR, /**< the tile data is in linear layout */
64 * linear layout (for texture sampling) and another in a tiled layout (for
82 * The former are tiled and have per-tile layout flags.
115 /** array [level][face or slice][tile_y][tile_x] of layout values) */
116 enum lp_texture_layout *layout[LP_MAX_TEXTURE_LEVELS]; member in struct:llvmpipe_resource
178 enum lp_texture_layout layout);
    [all...]
lp_texture.c 84 * 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[0][0] == LP_TEX_LAYOUT_NONE)
    [all...]
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
InterruptionTest.java 41 setContentView(R.layout.interruption);
45 mScene1 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_1, this);
46 mScene2 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_2, this);
47 mScene3 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_3, this);
48 mScene4 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_4, this);
LoginActivity.java 42 setContentView(R.layout.activity_login);
46 mLoginScene = Scene.getSceneForLayout(mSceneRoot, R.layout.activity_login, this);
47 mPasswordScene = Scene.getSceneForLayout(mSceneRoot, R.layout.login_password, this);
48 mIncorrectPasswordScene = Scene.getSceneForLayout(mSceneRoot, R.layout.incorrect_password, this);
49 mUsernameTakenScene = Scene.getSceneForLayout(mSceneRoot, R.layout.username_taken, this);
50 mSuccessScene = Scene.getSceneForLayout(mSceneRoot, R.layout.success, this);
51 mNewUserScene = Scene.getSceneForLayout(mSceneRoot, R.layout.new_user, this);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
SettingsToast.java 58 View layout = inflater.inflate(R.layout.toast_notification, null); local
60 mTextView = (TextView) layout.findViewById(R.id.text);
65 mIconView = (ImageView) layout.findViewById(R.id.icon);
68 setView(layout);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
Hebrew.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.Symbols.RtlSymbols;
20 import com.android.inputmethod.keyboard.layout.SymbolsShifted.RtlSymbolsShifted;
21 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
22 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
SymbolsShifted.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.LayoutBase.LayoutCustomizer;
20 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
21 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
22 import com.android.inputmethod.keyboard.layout.expected.AbstractLayoutBase;
25 * The symbols shifted keyboard layout.
72 // Common symbols shifted keyboard layout.
  /external/chromium_org/ash/system/user/
accounts_detailed_view.cc 25 #include "ui/views/layout/box_layout.h"
26 #include "ui/views/layout/grid_layout.h"
160 // Configuring layout manager.
161 views::GridLayout* layout = new views::GridLayout(account_list_); local
162 account_list_->SetLayoutManager(layout);
164 layout->AddColumnSet(kPrimaryAccountColumnSetID);
172 layout->AddColumnSet(kSecondaryAccountColumnSetID);
188 layout->AddPaddingRow(0.0, kPaddingBetweenAccounts);
189 layout->StartRow(0.0, kPrimaryAccountColumnSetID);
196 layout->AddView(primary_account_label)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateLanguagePanel.java 68 public void createContent(Context context, InfoBarLayout layout) {
73 layout.setMessage(changeLanguage);
77 layout.setCustomContent(mSourceSpinner, mTargetSpinner);
80 layout.setButtons(context.getString(R.string.translate_button_done),
94 mSourceAdapter = new LanguageArrayAdapter(context, R.layout.translate_spinner,
96 mTargetAdapter = new LanguageArrayAdapter(context, R.layout.translate_spinner,
207 FrameLayout layout = new FrameLayout(getContext()); local
209 R.layout.infobar_text, null);
210 layout.addView(estimator);
223 R.layout.infobar_spinner_item, null)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view_layout_unittest.cc 27 void set_download_shelf_needs_layout(bool layout) {
28 download_shelf_needs_layout_ = layout;
143 BrowserViewLayout* layout() { return layout_.get(); } function in class:BrowserViewLayoutTest
219 EXPECT_TRUE(layout()->browser());
220 EXPECT_TRUE(layout()->GetWebContentsModalDialogHost());
221 EXPECT_FALSE(layout()->InfobarVisible());
224 // Test the core layout functions.
225 TEST_F(BrowserViewLayoutTest, Layout) {
230 layout()->Layout(root_view())
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout.cc 31 #include "hb-ot-layout-private.hh"
33 #include "hb-ot-layout-gdef-table.hh"
34 #include "hb-ot-layout-gsub-table.hh"
35 #include "hb-ot-layout-gpos-table.hh"
36 #include "hb-ot-layout-jstf-table.hh"
49 hb_ot_layout_t *layout = (hb_ot_layout_t *) calloc (1, sizeof (hb_ot_layout_t)); local
50 if (unlikely (!layout))
53 layout->gdef_blob = OT::Sanitizer<OT::GDEF>::sanitize (face->reference_table (HB_OT_TAG_GDEF));
54 layout->gdef = OT::Sanitizer<OT::GDEF>::lock_instance (layout->gdef_blob)
    [all...]
  /external/chromium_org/ui/views/examples/
examples_window.cc 39 #include "ui/views/layout/fill_layout.h"
40 #include "ui/views/layout/grid_layout.h"
137 GridLayout* layout = new GridLayout(this); local
138 SetLayoutManager(layout);
139 ColumnSet* column_set = layout->AddColumnSet(0);
144 layout->AddPaddingRow(0, 5);
145 layout->StartRow(0 /* no expand */, 0);
146 layout->AddView(combobox_);
149 layout->StartRow(1, 0);
152 layout->AddView(example_shown_)
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 31 #include "hb-ot-layout-private.hh"
33 #include "hb-ot-layout-gdef-table.hh"
34 #include "hb-ot-layout-gsub-table.hh"
35 #include "hb-ot-layout-gpos-table.hh"
36 #include "hb-ot-layout-jstf-table.hh"
49 hb_ot_layout_t *layout = (hb_ot_layout_t *) calloc (1, sizeof (hb_ot_layout_t)); local
50 if (unlikely (!layout))
53 layout->gdef_blob = OT::Sanitizer<OT::GDEF>::sanitize (face->reference_table (HB_OT_TAG_GDEF));
54 layout->gdef = OT::Sanitizer<OT::GDEF>::lock_instance (layout->gdef_blob)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MenuInflateFromXml.java 78 // Create a simple layout
79 LinearLayout layout = new LinearLayout(this); local
80 layout.setOrientation(LinearLayout.VERTICAL);
84 android.R.layout.simple_spinner_item, sMenuExampleNames);
85 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
102 layout.addView(mSpinner,
117 layout.addView(mInstructionsText, lp);
119 // Set the layout as our content view
120 setContentView(layout);
  /external/chromium_org/ash/display/
display_layout.cc 114 DisplayLayout* layout) {
116 return converter.Convert(value, layout);
120 bool DisplayLayout::ConvertToValue(const DisplayLayout& layout,
126 const std::string position_str = GetStringFromPosition(layout.position);
128 dict_value->SetInteger(kOffsetKey, layout.offset);
129 dict_value->SetBoolean(kMirroredKey, layout.mirrored);
130 dict_value->SetString(kPrimaryIdKey, base::Int64ToString(layout.primary_id));
mouse_cursor_event_filter_unittest.cc 283 DisplayLayout layout(DisplayLayout::RIGHT, 0);
284 display_manager->SetLayoutForCurrentDisplays(layout);
293 layout.offset = 5;
294 display_manager->SetLayoutForCurrentDisplays(layout);
306 layout.offset = 200;
307 display_manager->SetLayoutForCurrentDisplays(layout);
316 layout.offset = -5;
317 display_manager->SetLayoutForCurrentDisplays(layout);
338 DisplayLayout layout(DisplayLayout::LEFT, 0);
339 display_manager->SetLayoutForCurrentDisplays(layout);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/toolbar/
home_button.cc 19 #include "ui/views/layout/grid_layout.h"
20 #include "ui/views/layout/layout_constants.h"
92 views::GridLayout* layout = new views::GridLayout(this); local
93 SetLayoutManager(layout);
96 views::ColumnSet* cs = layout->AddColumnSet(0);
97 cs = layout->AddColumnSet(1);
107 layout->StartRow(0, 1);
108 layout->AddView(message_label);
113 layout->AddView(undo_link);
  /external/chromium_org/chrome/browser/ui/views/
create_application_shortcut_view.cc 41 #include "ui/base/layout.h"
50 #include "ui/views/layout/grid_layout.h"
51 #include "ui/views/layout/layout_constants.h"
85 // Sets up layout manager.
146 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
147 SetLayoutManager(layout);
150 views::ColumnSet* column_set = layout->AddColumnSet(kColumnSetId);
157 layout->StartRow(0, kColumnSetId);
158 layout->AddView(icon_, 1, description_ ? 2 : 1);
159 layout->AddView(title_)
299 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-main.c 1397 SyscallArgLayout layout; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_message_bubble_view.cc 32 #include "ui/views/layout/grid_layout.h"
41 // Layout constants.
131 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
132 layout->SetInsets(kInsetTop, kInsetLeft,
134 SetLayoutManager(layout);
140 views::ColumnSet* top_columns = layout->AddColumnSet(headline_column_set_id);
144 layout->StartRow(0, headline_column_set_id);
148 layout->AddView(headline_);
150 layout->AddPaddingRow(0, kHeadlineRowPadding);
153 views::ColumnSet* upper_columns = layout->AddColumnSet(text_column_set_id)
    [all...]
  /external/qemu/android/skin/
window.c 798 typedef struct Layout {
808 } Layout;
810 #define LAYOUT_LOOP_BUTTONS(layout,button) \
812 Button* __button = (layout)->buttons; \
813 Button* __button_end = __button + (layout)->num_buttons; \
821 #define LAYOUT_LOOP_DISPLAYS(layout,display) \
823 ADisplay* __display = (layout)->displays; \
824 ADisplay* __display_end = __display + (layout)->num_displays; \
834 layout_done( Layout* layout )
940 Layout layout; member in struct:SkinWindow
1430 Layout layout; local
1583 Layout* layout = &window->layout; local
    [all...]

Completed in 1525 milliseconds

<<21222324252627282930>>