Searched refs:container (Results 201 - 225 of 821) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_parse.cpp34 std::auto_ptr<dxbc_container> container(new dxbc_container());
35 container->data = data;
46 container->chunk_map[fourcc] = i;
47 container->chunks.push_back(chunk);
49 return container.release();
/external/chromium_org/ash/test/
H A Dtest_session_state_animator.cc86 SessionStateAnimator::Container container,
93 container(container),
164 SessionStateAnimator::Container container,
167 active_animations_.find(container);
270 SessionStateAnimator::Container container,
278 container,
284 // container at a time.
285 AbortAnimation(container);
286 active_animations_[container]
83 ActiveAnimation( int animation_epoch, base::TimeDelta duration, SessionStateAnimator::Container container, AnimationType type, AnimationSpeed speed, base::Closure success_callback, base::Closure failed_callback) argument
163 IsContainerAnimated( SessionStateAnimator::Container container, SessionStateAnimator::AnimationType type) const argument
269 AddAnimation( SessionStateAnimator::Container container, AnimationType type, AnimationSpeed speed, base::Closure success_callback, base::Closure failed_callback) argument
289 AbortAnimation( SessionStateAnimator::Container container) argument
[all...]
/external/chromium_org/ash/wm/
H A Dwindow_util.cc186 void SetSnapsChildrenToPhysicalPixelBoundary(aura::Window* container) { argument
187 DCHECK(!container->GetProperty(kSnapChildrenToPixelBoundary))
188 << container->name();
189 container->SetProperty(kSnapChildrenToPixelBoundary, true);
197 aura::Window* container = *iter; local
198 if (container->id() < 0) // not a container
200 if (container->GetProperty(kSnapChildrenToPixelBoundary)) {
201 if (!container->layout_manager())
202 container
[all...]
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...]
H A Dstacking_controller.cc116 // all modal windows are placed into the normal modal container.
126 // Otherwise those that originate from LockScreen container and above are
127 // placed in the screen lock modal container.
130 aura::Window* container = NULL; local
132 container = GetContainerById(root, kShellWindowId_SystemModalContainer);
134 container = GetContainerById(root, kShellWindowId_LockSystemModalContainer);
137 return container;
H A Dvideo_detector.cc137 for (std::vector<aura::Window*>::const_iterator container =
138 containers.begin(); container != containers.end(); ++container) {
139 const aura::Window::Windows& windows = (*container)->children();
/external/chromium_org/ui/app_list/views/
H A Dspeech_view.cc120 // actually has a single child of 'container' which has white background and
122 views::View* container = new views::View(); local
123 container->set_background(
130 container->AddChildView(logo_);
135 container->AddChildView(indicator_);
139 container->AddChildView(mic_button_);
150 container->AddChildView(speech_result_);
152 AddChildView(container);
155 indicator_animator_.reset(new views::BoundsAnimator(container));
177 views::View* container local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcolorSuggestionPicker.js100 var container = createElement("div", "color-swatch-container");
101 container.addEventListener("click", this._handleSwatchClick.bind(this), false);
108 container.appendChild(swatch);
113 container.style.width = containerWidth + "px";
114 container.style.maxHeight = (SwatchBorderBoxHeight * SwatchesMaxRow) + "px";
115 this._element.appendChild(container);
119 this._container = container;
/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);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCPUProfileDataGrid.js311 * @param {!WebInspector.ProfileDataGridNode|!WebInspector.ProfileDataGridTree} container
315 WebInspector.ProfileDataGridNode.merge = function(container, child, shouldAbsorb)
317 container.selfTime += child.selfTime;
320 container.totalTime += child.totalTime;
322 var children = container.children.slice();
324 container.removeChildren();
330 container.appendChild(children[index]);
338 var existingChild = container.childrenByCallUID[orphanedChild.callUID];
343 container.appendChild(orphanedChild);
348 * @param {!WebInspector.ProfileDataGridNode|!WebInspector.ProfileDataGridTree} container
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dspectrum.css2 .spectrum-container {
32 .spectrum-range-container {
48 .spectrum-range-container * {
53 .spectrum-range-container label {
97 .spectrum-container .swatch {
/external/chromium_org/third_party/libxslt/libexslt/
H A Ddynamic.c104 xmlDocPtr oldDoc, container = NULL; local
157 container = xsltCreateRVT(tctxt);
158 if (container == NULL) {
160 "dyn:map : internal error container == NULL\n");
163 xsltRegisterLocalRVT(tctxt, container);
187 if (container != NULL) {
189 xmlNewChild((xmlNodePtr) container, NULL,
206 if (container != NULL) {
211 xmlNewChild((xmlNodePtr) container, NULL,
229 if (container !
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLineBoxList.cpp231 void RenderLineBoxList::dirtyLinesFromChangedChild(RenderObject* container, RenderObject* child) argument
233 if (!container->parent() || (container->isRenderBlock() && (container->selfNeedsLayout() || !container->isRenderBlockFlow())))
236 RenderInline* inlineContainer = container->isRenderInline() ? toRenderInline(container) : 0;
243 if (container->isInline() && !container->ancestorLineBoxDirty()) {
244 container
[all...]
/external/deqp/modules/glshared/
H A DglsLifetimeTests.hpp213 virtual void attach (GLuint element, GLuint container) = 0;
214 virtual void detach (GLuint element, GLuint container) = 0;
215 virtual GLuint getAttachment (GLuint container) = 0;
238 virtual void drawContainer (GLuint container, Surface& dst) = 0;
250 virtual void setupContainer (GLuint seed, GLuint container) = 0;
295 void drawContainer (GLuint container, Surface& dst);
303 void setupContainer (GLuint seed, GLuint container);
314 void attach (GLuint element, GLuint container);
315 void detach (GLuint element, GLuint container);
316 GLuint getAttachment (GLuint container);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DSpatialNavigation.cpp280 // Checks if |node| is offscreen the visible area (viewport) of its container
297 // If the container has overflow:hidden, we cannot scroll, so we do not pass direction
360 bool scrollInDirection(Node* container, FocusType type) argument
362 ASSERT(container);
363 if (container->isDocumentNode())
364 return scrollInDirection(toDocument(container)->frame(), type);
366 if (!container->renderBox())
369 if (canScrollInDirection(container, type)) {
374 dx = - std::min<LayoutUnit>(ScrollableArea::pixelsPerLineStep(), container->renderBox()->scrollLeft());
377 ASSERT(container
442 canScrollInDirection(const Node* container, FocusType type) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Ddestination_settings.css53 .throbber-container {
58 .throbber-container .throbber {
62 .destination-throbber-name-container {
/external/chromium_org/chrome/browser/resources/user_manager/
H A Duser_manager.css12 #outer-container {
118 .name-container,
119 .pod.focused:not(.multiprofiles-policy-applied) .auth-container {
124 .pod.focused:not(.locked) .name-container {
134 .pod.focused:not(.locked) .auth-container {
138 .pod.focused.locked .password-entry-container {
/external/chromium_org/chrome/common/extensions/docs/static/js/
H A Darticle.js41 function addPermalinkHeadings(container) {
42 if (container) {
44 [].forEach.call(container.querySelectorAll(h), addPermalink);
/external/chromium_org/ui/chromeos/network/
H A Dnetwork_list.cc231 views::View* container = NULL; local
235 container = delegate_->CreateViewForNetwork(*info);
236 content_->AddChildViewAt(container, index);
239 container = found->second;
240 container->RemoveAllChildViews(true);
241 delegate_->UpdateViewForNetwork(container, *info);
242 container->Layout();
243 container->SchedulePaint();
244 needs_relayout = PlaceViewAtIndex(container, index);
247 container
[all...]
/external/fio/
H A Dgerror.c27 GtkWidget *container; local
36 container = gtk_info_bar_get_content_area(GTK_INFO_BAR(ui->error_info_bar));
37 gtk_container_add(GTK_CONTAINER(container), ui->error_label);
/external/chromium-trace/trace-viewer/src/ui/
H A Dquad_stack.css17 quad-stack > view-container {
32 quad-stack > view-container > rect-view {
/external/chromium_org/ash/first_run/
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/wm/panels/
H A Dattached_panel_window_targeter.h15 // A window targeter installed on a panel container to disallow touch
21 AttachedPanelWindowTargeter(aura::Window* container,
/external/chromium_org/athena/wm/
H A Dwindow_overview_mode.h37 aura::Window* container,

Completed in 2333 milliseconds

1234567891011>>