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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ResizeState.java 17 package com.android.ide.common.layout;
40 * The layout containing the resized node
42 public final INode layout; field in class:ResizeState
81 * The actual view object for the layout containing the resizing operation,
90 * @param layout the parent layout containing the resized node
91 * @param layoutView the actual View instance for the layout, or null if not known
94 ResizeState(BaseLayoutRule rule, INode layout, Object layoutView, INode node) {
97 this.layout = layout;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLTracePerspective.java 33 public void createInitialLayout(IPageLayout layout) {
34 // Create a 3 column layout
40 IFolderLayout column2 = layout.createFolder(STATE_FOLDER_ID, IPageLayout.RIGHT, 0.65f,
41 layout.getEditorArea());
45 IFolderLayout column3 = layout.createFolder(FB_FOLDER_ID, IPageLayout.RIGHT, 0.6f,
50 IFolderLayout column3bottom = layout.createFolder(TEXTURE_VIEW_FOLDER_ID,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 17 package com.android.ide.eclipse.adt.internal.editors.layout;
41 // Single layout, horizontal, 2 buttons.
42 MockXmlNode layout = createLinearLayout(true /*horizontal*/, local
45 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames);
51 // Single layout, horizontal, with 2 buttons.
53 MockXmlNode layout = createLinearLayout(false /*horizontal*/, local
56 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames);
69 MockXmlNode layout = createLinearLayout(false /*horizontal*/, local
77 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames);
89 MockXmlNode layout = createRelativeLayout local
126 MockXmlNode layout = createRelativeLayout(new MockXmlNode[] { linear1, linear2 } ); local
159 MockXmlNode layout = createRelativeLayout(new MockXmlNode[] { linear1, linear2 } ); local
226 MockXmlNode layout = createRelativeLayout( local
243 MockXmlNode layout = new MockXmlNode(null, "LinearLayout", Node.ELEMENT_NODE, children); local
252 MockXmlNode layout = new MockXmlNode(null, "RelativeLayout", Node.ELEMENT_NODE, children); local
    [all...]
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.cc 32 #include "ui/views/layout/grid_layout.h"
33 #include "ui/views/layout/layout_constants.h"
87 // An approximate window size. After Layout() we'll get better bounds.
99 views::GridLayout* layout = views::GridLayout::CreatePanel(root_view); local
100 root_view->SetLayoutManager(layout);
104 columns = layout->AddColumnSet(0);
116 columns = layout->AddColumnSet(1);
123 columns = layout->AddColumnSet(2);
130 columns = layout->AddColumnSet(3);
139 columns = layout->AddColumnSet(4)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/sync/
one_click_signin_bubble_view.cc 26 #include "ui/views/layout/grid_layout.h"
27 #include "ui/views/layout/layout_constants.h"
41 // to layout views.
132 views::GridLayout* layout = new views::GridLayout(this); local
133 SetLayoutManager(layout);
138 views::ColumnSet* cs = layout->AddColumnSet(COLUMN_SET_FILL_ALIGN);
143 cs = layout->AddColumnSet(COLUMN_SET_CONTROLS);
152 is_sync_dialog_ ? InitDialogContent(layout) : InitBubbleContent(layout);
158 layout->StartRow(0, COLUMN_SET_CONTROLS)
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationActivity.java 33 setContentView(R.layout.animation_two);
40 LinearLayout layout = (LinearLayout) findViewById(R.id.container);
41 layout.addView(newButton);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Controls1.java 39 setContentView(R.layout.controls_1);
46 android.R.layout.simple_spinner_item, mStrings);
47 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
SavePasswordInfoBar.java 30 public void createContent(InfoBarLayout layout) {
35 layout.setCustomContent(mUseAdditionalAuthenticationCheckbox);
38 super.createContent(layout);
TranslateNeverPanel.java 24 public void createContent(Context context, InfoBarLayout layout) {
27 layout.setMessage(changeLanguage);
29 layout.setButtons(
  /external/chromium_org/media/base/
channel_layout.h 103 // layout is only intended for input for WebRTC. The Front C channel
128 // mean the channel at that index is not used for that layout. Values range
130 MEDIA_EXPORT int ChannelOrder(ChannelLayout layout, Channels channel);
133 MEDIA_EXPORT int ChannelLayoutToChannelCount(ChannelLayout layout);
135 // Given the number of channels, return the best layout,
139 // Returns a string representation of the channel layout.
140 MEDIA_EXPORT const char* ChannelLayoutToString(ChannelLayout layout);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_zscan.h 63 struct pipe_sampler_view *src, *layout, *quant; member in struct:vl_zscan_buffer
72 vl_zscan_layout(struct pipe_context *pipe, const int layout[64], unsigned blocks_per_line);
91 vl_zscan_set_layout(struct vl_zscan_buffer *buffer, struct pipe_sampler_view *layout);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_zscan.h 63 struct pipe_sampler_view *src, *layout, *quant; member in struct:vl_zscan_buffer
72 vl_zscan_layout(struct pipe_context *pipe, const int layout[64], unsigned blocks_per_line);
91 vl_zscan_set_layout(struct vl_zscan_buffer *buffer, struct pipe_sampler_view *layout);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LLEditTextThenButton.java 17 package android.widget.layout.linear;
37 setContentView(R.layout.linear_layout_edittext_then_button);
39 mLayout = (LinearLayout) findViewById(R.id.layout);
LLOfButtons1.java 17 package android.widget.layout.linear;
39 setContentView(R.layout.linear_layout_buttons);
51 return (LinearLayout) findViewById(R.id.layout);
LinearLayoutEditTextsTest.java 17 package android.widget.layout.linear;
19 import android.widget.layout.linear.LinearLayoutEditTexts;
41 mContainer = activity.findViewById(R.id.layout);
WeightTest.java 17 package android.widget.layout.linear;
26 import android.widget.layout.linear.Weight;
42 mContainer = activity.findViewById(R.id.layout);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TimeDialogActivity.java 33 FrameLayout layout = new FrameLayout(this); local
44 layout.addView(b);
46 setContentView(layout);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
Demo5.java 34 setContentView(R.layout.search_screen);
39 mSearchScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
40 mResultsScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this);
ScenesTestAutoTransition2.java 36 setContentView(R.layout.search_screen);
41 mSearchScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
42 mResultsScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this);
  /frameworks/minikin/sample/
example_skia.cpp 17 // This is a test program that uses Minikin to layout and draw some text.
28 #include <minikin/Layout.h>
82 void drawToSkia(SkCanvas *canvas, SkPaint *paint, Layout *layout, float x, float y) {
83 size_t nGlyphs = layout->nGlyphs();
92 MinikinFontSkia *mfs = static_cast<MinikinFontSkia *>(layout->getFont(i));
94 glyphs[i] = layout->getGlyphId(i);
95 pos[i].fX = x + layout->getX(i);
96 pos[i].fY = y + layout->getY(i);
115 Layout::init()
118 Layout layout; local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
Nordic.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
20 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
Qwerty.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
20 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
Qwertz.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
20 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
Spanish.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
20 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
Swiss.java 17 package com.android.inputmethod.keyboard.layout;
19 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
20 import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;

Completed in 884 milliseconds

1 2 3 4 5 6 7 8 91011>>