HomeSort by relevance Sort by last modified time
    Searched refs:container (Results 151 - 175 of 1514) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/support/v13/java/android/support/v13/app/
FragmentPagerAdapter.java 83 public void startUpdate(ViewGroup container) {
87 public Object instantiateItem(ViewGroup container, int position) {
95 String name = makeFragmentName(container.getId(), itemId);
103 mCurTransaction.add(container.getId(), fragment,
104 makeFragmentName(container.getId(), itemId));
115 public void destroyItem(ViewGroup container, int position, Object object) {
125 public void setPrimaryItem(ViewGroup container, int position, Object object) {
141 public void finishUpdate(ViewGroup container) {
  /frameworks/support/v4/java/android/support/v4/app/
FragmentPagerAdapter.java 79 public void startUpdate(ViewGroup container) {
83 public Object instantiateItem(ViewGroup container, int position) {
91 String name = makeFragmentName(container.getId(), itemId);
99 mCurTransaction.add(container.getId(), fragment,
100 makeFragmentName(container.getId(), itemId));
111 public void destroyItem(ViewGroup container, int position, Object object) {
121 public void setPrimaryItem(ViewGroup container, int position, Object object) {
137 public void finishUpdate(ViewGroup container) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Containers_and_folders.py 22 """<Inheritance> - inherits some of its properties from the container class """
97 class container(aetools.ComponentItem): class in inherits:aetools.ComponentItem
98 """container - An item that contains other items """
101 """completely expanded - (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """
105 """container window - the container window for this folder """
109 """entire contents - the entire contents of the container, including the contents of its children """
113 """expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """
117 """expanded - (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists) """
131 containers = container
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 86 Composite container = new Composite(parent, SWT.NONE); local
87 container.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
89 container.setLayout(new GridLayout(3, false));
91 Label allLabel = new Label(container, SWT.NONE);
95 mAllField = new Text(container, SWT.BORDER | SWT.LEFT);
99 Button allButton = new Button(container, SWT.NONE);
103 Label label = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL);
106 Label leftLabel = new Label(container, SWT.NONE);
110 mLeftField = new Text(container, SWT.BORDER | SWT.LEFT);
114 Button leftButton = new Button(container, SWT.NONE)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizardPage.java 66 Composite container = new Composite(parent, SWT.NULL); local
68 setControl(container);
69 container.setLayout(new GridLayout(4, false));
71 Label overviewLabel = new Label(container, SWT.WRAP | SWT.SHADOW_NONE);
77 Label spacing = new Label(container, SWT.NONE);
80 mInstallNewRadio = new Button(container, SWT.RADIO);
86 Label indentLabel = new Label(container, SWT.NONE);
91 mInstallLatestCheckbox = new Button(container, SWT.CHECK);
98 new Label(container, SWT.NONE);
99 mInstallCommonCheckbox = new Button(container, SWT.CHECK)
    [all...]
  /external/chromium_org/cc/base/
region_unittest.cc 292 Region container; local
293 container.Union(gfx::Rect(0, 0, 40, 20));
294 container.Union(gfx::Rect(0, 20, 41, 20));
295 TEST_CONTAINS(container, gfx::Rect(5, 5, 30, 30));
297 container.Clear();
298 container.Union(gfx::Rect(0, 0, 10, 10));
299 container.Union(gfx::Rect(0, 30, 10, 10));
300 container.Union(gfx::Rect(30, 30, 10, 10));
301 container.Union(gfx::Rect(30, 0, 10, 10));
302 TEST_NO_CONTAINS(container, gfx::Rect(5, 5, 30, 30))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TextAutosizer.cpp 150 // The layoutRoot could be neither a container nor a cluster, so walk up the tree till we find each of these.
151 RenderBlock* container = layoutRoot->isRenderBlock() ? toRenderBlock(layoutRoot) : layoutRoot->containingBlock(); local
152 while (container && !isAutosizingContainer(container))
153 container = container->containingBlock();
155 RenderBlock* cluster = container;
160 processCluster(clusterInfo, container, layoutRoot, windowInfo);
176 void TextAutosizer::processClusterInternal(TextAutosizingClusterInfo& clusterInfo, RenderBlock* container, RenderObject* subtreeRoot, const TextAutosizingWindowInfo& windowInfo, float multiplier)
178 processContainer(multiplier, container, clusterInfo, subtreeRoot, windowInfo)
    [all...]
  /development/samples/devbytes/graphics/BitmapScaling/src/com/example/android/bitmapscaling/
BitmapScaling.java 43 LinearLayout container = (LinearLayout) findViewById(R.id.scaledImageContainer); local
51 addScaledImageView(bitmap, i, container);
55 private void addScaledImageView(Bitmap original, int sampleSize, LinearLayout container) {
73 container.addView(scaledImageView);
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 19 PanelScrollerContainer* container; member in struct:PanelScroller::Panel
36 panel->container = new PanelScrollerContainer(this, new views::View());
42 panel->container = new PanelScrollerContainer(this, new views::View());
48 panel->container = new PanelScrollerContainer(this, new views::View());
54 panel->container = new PanelScrollerContainer(this, new views::View());
60 panel->container = new PanelScrollerContainer(this, new views::View());
64 AddChildView(panels_[0]->container);
65 AddChildView(panels_[1]->container);
66 AddChildView(panels_[2]->container);
67 AddChildView(panels_[3]->container);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container.h 12 // A specialized container derived from GtkFixed, which expands the size of its
13 // children to fill the container, in one or both directions. The usage of this
14 // container is similar to GtkFixed.
17 // widgets to customized size other than the container's size. It should have
20 // void (*child_size_request)(GtkExpandedContainer* container,
25 // the container. Your handler may adjust the value of the requisition. If the
61 void gtk_expanded_container_put(GtkExpandedContainer* container,
63 void gtk_expanded_container_move(GtkExpandedContainer* container,
65 void gtk_expanded_container_set_has_window(GtkExpandedContainer* container,
67 gboolean gtk_expanded_container_get_has_window(GtkExpandedContainer* container);
    [all...]
  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_container_win.cc 20 TabContentsContainer* container)
21 : container_(container) {
143 TabContentsContainer* container) {
144 return new NativeTabContentsContainerWin(container);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
demo_user_login.css 32 #logo-container {
46 #lower-container {
  /external/chromium_org/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 28 scoped_ptr<views::View> container(new views::View());
29 container->SetBounds(0, 0, 200, 200);
30 container->SetVisible(true);
34 container->AddChildView(image_view.get());
  /external/chromium_org/crypto/
capi_util.h 26 LPCWSTR container,
  /external/chromium_org/ui/base/animation/
animation.cc 51 // Notify the container first as the delegate may delete us.
77 void Animation::SetContainer(AnimationContainer* container) {
78 if (container == container_.get())
84 if (container)
85 container_ = container;
  /external/chromium_org/ui/base/gtk/
gtk_expanded_container.h 13 // A specialized container derived from GtkFixed, which expands the size of its
14 // children to fill the container, in one or both directions. The usage of this
15 // container is similar to GtkFixed.
18 // widgets to customized size other than the container's size. It should have
21 // void (*child_size_request)(GtkExpandedContainer* container,
26 // the container. Your handler may adjust the value of the requisition. If the
62 UI_EXPORT void gtk_expanded_container_put(GtkExpandedContainer* container,
64 UI_EXPORT void gtk_expanded_container_move(GtkExpandedContainer* container,
67 GtkExpandedContainer* container,
70 GtkExpandedContainer* container);
    [all...]
  /external/chromium_org/ui/views/examples/
checkbox_example.h 24 virtual void CreateExampleView(View* container) OVERRIDE;
link_example.h 22 virtual void CreateExampleView(View* container) OVERRIDE;
message_box_example.h 27 virtual void CreateExampleView(View* container) OVERRIDE;
progress_bar_example.h 24 virtual void CreateExampleView(View* container) OVERRIDE;
radio_button_example.h 28 virtual void CreateExampleView(View* container) OVERRIDE;
single_split_view_example.h 23 virtual void CreateExampleView(View* container) OVERRIDE;
slider_example.h 24 virtual void CreateExampleView(View* container) OVERRIDE;
webview_example.h 27 virtual void CreateExampleView(View* container) OVERRIDE;
  /external/marisa-trie/lib/marisa/
container.h 11 class Container;
14 class Container<std::vector<T> *> {
16 Container(std::vector<T> *vec) : vec_(vec) {}
17 Container(const Container &container) : vec_(container.vec_) {}
31 Container &operator=(const Container &query);
35 class Container<T *>
    [all...]

Completed in 574 milliseconds

1 2 3 4 5 67 8 91011>>