Searched defs:container (Results 76 - 100 of 384) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFragmentPagerAdapter.java24 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
25 fragmentManager.beginTransaction().add(container.getId(), (Fragment) object).commit();
29 public Object instantiateItem(ViewGroup container, int position) { argument
/external/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h43 explicit PODIterator(Container* container) : container_(container) {} argument
59 Container* container() { return container_; } function in class:sfntly::PODIterator
70 explicit RefIterator(Container* container) : container_(container) {} argument
86 Container* container() { return container_; } function in class:sfntly::RefIterator
/external/chromium_org/ash/first_run/
H A Ddesktop_cleaner.cc33 explicit ContainerHider(aura::Window* container) argument
34 : container_was_hidden_(!container->IsVisible()),
35 container_(container) {
100 aura::Window* container = local
102 container_hiders_.push_back(make_linked_ptr(new ContainerHider(container)));
H A Dfirst_run_helper_unittest.cc86 aura::Window* container = local
88 EXPECT_TRUE(container->IsVisible());
97 aura::Window* container = local
99 EXPECT_TRUE(!container->IsVisible());
/external/chromium_org/ash/test/
H A Dtest_session_state_animator.h23 // If a new animation is started on a container the existing one will be
54 // |container|.
55 bool IsContainerAnimated(SessionStateAnimator::Container container,
91 SessionStateAnimator::Container container,
104 // The container which is being animated.
105 SessionStateAnimator::Container container; member in struct:ash::test::TestSessionStateAnimator::ActiveAnimation
124 // Starts an animation in the |animation_sequence| for each container
133 // animation is already active for the given |container| then it will be
136 void AddAnimation(SessionStateAnimator::Container container,
142 // If an animation is currently active for the given |container| i
[all...]
/external/chromium_org/ash/wm/
H A Dalways_on_top_controller.cc59 aura::Window* container = GetContainer(window); local
60 if (window->parent() != container)
61 container->AddChild(window);
H A Dash_focus_rules.cc16 // These are the list of container ids of containers which may contain windows
106 // If the container of the window losing focus is in the list, start from that
107 // container.
113 aura::Window* container = Shell::GetContainer(root, kWindowContainerIds[i]); local
114 if (container && container->Contains(ignore)) {
120 // Look for windows to focus in |ignore|'s container. If none are found, we
121 // look in all the containers in front of |ignore|'s container, then all
151 aura::Window* container,
154 container
150 GetTopmostWindowToActivateInContainer( aura::Window* container, aura::Window* ignore) const argument
[all...]
/external/chromium_org/athena/system/
H A Dpower_button_controller.cc59 views::View* container = new views::View; local
60 container->AddChildView(label);
63 container->SetLayoutManager(new views::BoxLayout(
65 container->set_background(
67 container->SetBorder(views::Border::CreateSolidBorder(1, SK_ColorBLACK));
69 shutdown_warning_message_->SetContentsView(container);
70 shutdown_warning_message_->CenterWindow(container->GetPreferredSize());
/external/chromium_org/athena/wm/
H A Dtitle_drag_controller.cc31 TitleDragController::TitleDragController(aura::Window* container, argument
33 : container_(container),
/external/chromium_org/cc/base/
H A Dregion_unittest.cc292 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, gf
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegionTest.cpp312 Region container; local
313 container.unite(IntRect(0, 0, 40, 20));
314 container.unite(IntRect(0, 20, 41, 20));
315 TEST_CONTAINS(container, IntRect(5, 5, 30, 30));
317 container = Region();
318 container.unite(IntRect(0, 0, 10, 10));
319 container.unite(IntRect(0, 30, 10, 10));
320 container.unite(IntRect(30, 30, 10, 10));
321 container.unite(IntRect(30, 0, 10, 10));
322 TEST_NO_CONTAINS(container, IntRec
[all...]
/external/chromium_org/third_party/skia/tests/
H A DSmallAllocatorTest.cpp80 DummyContainer* container = alloc.createT<DummyContainer>(&d); local
81 REPORTER_ASSERT(reporter, container != NULL);
82 REPORTER_ASSERT(reporter, container->getDummy() == &d);
/external/chromium_org/ui/gfx/animation/
H A Danimation.cc51 // Notify the container first as the delegate may delete us.
78 void Animation::SetContainer(AnimationContainer* container) { argument
79 if (container == container_.get())
85 if (container)
86 container_ = container;
H A Danimation.h53 // Sets the container used to manage the timer. A value of NULL results in
55 void SetContainer(AnimationContainer* container);
70 // Invoked from Stop after we're removed from the container but before the
79 AnimationContainer* container() { return container_.get(); } function in class:gfx::Animation
/external/chromium_org/ui/views/examples/
H A Dbubble_example.cc72 void BubbleExample::CreateExampleView(View* container) { argument
75 container->SetLayoutManager(new BoxLayout(BoxLayout::kHorizontal, 0, 0, 10));
77 container->AddChildView(no_shadow_);
79 container->AddChildView(big_shadow_);
81 container->AddChildView(small_shadow_);
83 container->AddChildView(align_to_edge_);
85 container->AddChildView(persistent_);
H A Dtabbed_pane_example.cc23 void TabbedPaneExample::CreateExampleView(View* container) { argument
30 GridLayout* layout = new GridLayout(container);
31 container->SetLayoutManager(layout);
H A Dtextfield_example.cc38 void TextfieldExample::CreateExampleView(View* container) { argument
54 GridLayout* layout = new GridLayout(container);
55 container->SetLayoutManager(layout);
/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DForwardingScrollStepStrategy.java61 public void doScroll(UiElement container, PhysicalDirection direction) { argument
62 delegate().doScroll(container, direction);
H A DScrollStepStrategy.java33 * @param containerFinder Finder for the container that can scroll, for
50 * @param containerFinder Finder for the container that can scroll, for
64 * @param containerFinder Finder for the container that can scroll, for
74 * Performs the scroll action on {@code container}. Subclasses can override
78 * @param container the container that can scroll
81 void doScroll(UiElement container, PhysicalDirection direction); argument
/external/libcxxabi/test/
H A Dtest_fallback_malloc.cpp15 typedef std::deque<void *> container; typedef
21 container alloc_series ( size_t sz ) {
22 container ptrs;
30 container alloc_series ( size_t sz, float growth ) {
31 container ptrs;
42 container alloc_series ( const size_t *first, size_t len ) {
43 container ptrs;
56 void *pop ( container &c, bool from_end ) {
70 container ptrs;
79 for ( container
[all...]
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DReturnsDeepStubs.java61 InvocationContainerImpl container = (InvocationContainerImpl) handler.getInvocationContainer();
64 for (StubbedInvocationMatcher stubbedInvocationMatcher : container.getStubbedInvocations()) {
65 if(container.getInvocationForStubbing().matches(stubbedInvocationMatcher.getInvocation())) {
71 return recordDeepStubMock(createNewDeepStubMock(returnTypeGenericMetadata), container);
110 private Object recordDeepStubMock(final Object mock, InvocationContainerImpl container) throws Throwable { argument
112 container.addAnswer(new Answer<Object>() {
/external/skia/tests/
H A DSmallAllocatorTest.cpp80 DummyContainer* container = alloc.createT<DummyContainer>(&d); local
81 REPORTER_ASSERT(reporter, container != NULL);
82 REPORTER_ASSERT(reporter, container->getDummy() == &d);
/external/chromium_org/ash/system/chromeos/audio/
H A Daudio_detailed_view.cc100 HoverHighlightView* container = new HoverHighlightView(this); local
101 container->AddCheckableLabel(text, style, checked);
102 scroll_content()->AddChildView(container);
103 return container;
140 HoverHighlightView* container = AddScrollListItem( local
144 device_map_[container] = output_devices_[i];
153 HoverHighlightView* container = AddScrollListItem( local
157 device_map_[container] = input_devices_[i];
/external/chromium_org/ash/system/tray/
H A Dspecial_popup_row.cc55 HoverHighlightView* container = new HoverHighlightView(listener); local
56 container->SetLayoutManager(new
59 container->set_highlight_color(SkColorSetARGB(0, 0, 0, 0));
60 container->set_default_color(SkColorSetARGB(0, 0, 0, 0));
61 container->set_text_highlight_color(kHeaderTextColorHover);
62 container->set_text_default_color(kHeaderTextColorNormal);
64 container->AddIconAndLabel(
69 container->SetBorder(
72 container->SetAccessibleName(
74 SetContent(container);
[all...]
/external/chromium_org/ash/wm/maximize_mode/
H A Dworkspace_backdrop_delegate.cc26 WorkspaceBackdropDelegate::WorkspaceBackdropDelegate(aura::Window* container) argument
28 container_(container),
66 // The container size has changed and the layer needs to be adapt to it.
139 // Cover the entire container window.

Completed in 452 milliseconds

1234567891011>>