Searched refs:container (Results 51 - 75 of 280) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/policy/
H A Ddevice_policy_cache.cc273 const em::DevicePolicyRefreshRateProto container = local
275 if (container.has_policy_refresh_rate()) {
277 DecodeIntegerValue(container.policy_refresh_rate()));
282 const em::DeviceProxySettingsProto container = local
284 if (container.has_proxy_mode()) {
286 Value::CreateStringValue(container.proxy_mode()));
288 if (container.has_proxy_server()) {
290 Value::CreateStringValue(container.proxy_server()));
292 if (container.has_proxy_pac_url()) {
294 Value::CreateStringValue(container
[all...]
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar.h36 void set_container(InfoBarContainer* container) { container_ = container; } argument
44 // container (triggering its deletion), and its delegate is closed.
74 const InfoBarContainer* container() const { return container_; } function in class:InfoBar
90 // container our state has changed if either the heights have changed or
94 // Checks whether we're closed. If so, notifies the container that it should
/external/stlport/stlport/stl/
H A D_iterator.h166 _Container *container; member in class:back_insert_iterator
171 explicit back_insert_iterator(_Container& __x) : container(&__x) {}
174 container = __other.container;
178 container->push_back(__val);
196 _Container *container; member in class:front_insert_iterator
200 explicit front_insert_iterator(_Container& __x) : container(&__x) {}
203 container = __other.container;
207 container
225 _Container *container; member in class:insert_iterator
[all...]
/external/chromium/chrome/browser/resources/ntp/
H A Dmost_visited.css9 .thumbnail-container {
17 .thumbnail-container:focus {
22 .thumbnail-container > .title {
28 .thumbnail-container > .title {
95 .thumbnail-container:focus .edit-bar,
96 .thumbnail-container:hover .edit-bar {
155 .thumbnail-container > .title > div {
167 html[dir=rtl] .thumbnail-container > .title > div {
193 .thumbnail-container:focus .thumbnail,
194 .thumbnail-container
[all...]
/external/webkit/Source/WebCore/page/
H A DFocusController.cpp488 void FocusController::findFocusCandidateInContainer(Node* container, const IntRect& startingRect, FocusDirection direction, KeyboardEvent* event, FocusCandidate& closest) argument
490 ASSERT(container);
493 Node* node = container->firstChild();
499 for (; node; node = (node->isFrameOwnerElement() || canScrollInDirection(node, direction)) ? node->traverseNextSibling(container) : node->traverseNextNode(container)) {
513 candidate.enclosingScrollableBox = container;
518 bool FocusController::advanceFocusDirectionallyInContainer(Node* container, const IntRect& startingRect, FocusDirection direction, KeyboardEvent* event) argument
520 if (!container || !container->document())
526 newStartingRect = virtualRectForDirection(direction, nodeRectInAbsoluteCoordinates(container));
575 Node* container = focusCandidate.enclosingScrollableBox; local
598 Node* container = focusedDocument; local
[all...]
H A DSpatialNavigation.cpp291 // Checks if |node| is offscreen the visible area (viewport) of its container
308 // If the container has overflow:hidden, we cannot scroll, so we do not pass direction
371 bool scrollInDirection(Node* container, FocusDirection direction) argument
373 ASSERT(container);
374 if (container->isDocumentNode())
375 return scrollInDirection(static_cast<Document*>(container)->frame(), direction);
377 if (!container->renderBox())
380 if (canScrollInDirection(container, direction)) {
385 dx = - min(Scrollbar::pixelsPerLineStep(), container->renderBox()->scrollLeft());
388 ASSERT(container
452 canScrollInDirection(const Node* container, FocusDirection direction) argument
[all...]
H A DFocusController.h67 bool advanceFocusDirectionallyInContainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*);
68 void findFocusCandidateInContainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*, FocusCandidate& closest);
/external/clang/include/clang/AST/
H A DAttr.h221 specific_attr_begin(const Container& container) { argument
222 return specific_attr_iterator<SpecificAttr, Container>(container.begin());
226 specific_attr_end(const Container& container) { argument
227 return specific_attr_iterator<SpecificAttr, Container>(container.end());
231 inline bool hasSpecificAttr(const Container& container) { argument
232 return specific_attr_begin<SpecificAttr>(container) !=
233 specific_attr_end<SpecificAttr>(container);
236 inline SpecificAttr *getSpecificAttr(const Container& container) { argument
238 specific_attr_begin<SpecificAttr>(container);
239 if (i != specific_attr_end<SpecificAttr>(container))
[all...]
/external/webkit/Source/WebCore/css/
H A DmediaControlsGtk.css52 audio::-webkit-media-controls-timeline-container, video::-webkit-media-controls-timeline-container {
89 audio::-webkit-media-controls-volume-slider-container, video::-webkit-media-controls-volume-slider-container {
90 -webkit-appearance: media-volume-slider-container;
/external/chromium/base/
H A Dstack_container.h29 // be sure to reserve() in the container up to the stack buffer size. Otherwise
30 // the container will allocate a small array which will "use up" the stack
38 // Backing store for the allocator. The container owner is responsible for
123 // initial capacity of the vector is based on. Growing the container beyond the
124 // stack capacity will transparently overflow onto the heap. The container must
137 // Allocator must be constructed before the container!
139 // Make the container use the stack allocation by reserving our buffer size
144 // Getters for the actual container.
149 // copy into a "real" container for longer-lived objects.
150 ContainerType& container() { retur function in class:StackContainer
151 const ContainerType& container() const { return container_; } function in class:StackContainer
[all...]
/external/chromium/chrome/browser/resources/chromeos/
H A Dchoose_mobile_network.js23 var container = $('choosing');
24 container.innerHTML = '';
30 container.appendChild(elem);
/external/chromium-trace/trace-viewer/src/tracks/
H A Dtimeline_thread_track.css12 .timeline-thread-track > .timeline-slice-group-track.first-visible-child > .timeline-slice-track.first-visible-child .timeline-canvas-based-track-canvas-container {
19 .timeline-process-track.first-visible-child > .timeline-thread-track.first-visible-child > .timeline-slice-group-track.first-visible-child > .timeline-slice-track.first-visible-child .timeline-canvas-based-track-canvas-container {
29 .timeline-thread-track .timeline-canvas-based-track:last-child .timeline-canvas-based-track-canvas-container {
/external/webkit/Source/WebKit/win/
H A DCOMEnumVariant.h59 COMEnumVariant(const ContainerType& container) argument
61 , m_container(container)
76 COMEnumVariant<typename ContainerType>* COMEnumVariant<ContainerType>::adopt(ContainerType& container) argument
79 instance->m_container.swap(container);
86 COMEnumVariant<typename ContainerType>* COMEnumVariant<ContainerType>::createInstance(const ContainerType& container) argument
88 COMEnumVariant* instance = new COMEnumVariant(container);
/external/chromium/chrome/browser/ui/gtk/
H A Dfullscreen_exit_bubble_gtk.h21 // We place the bubble in |container|.
22 explicit FullscreenExitBubbleGtk(GtkFloatingContainer* container);
39 // A pointer to the floating container that is our parent.
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dnative_tab_contents_container.h20 // Creates an appropriate native container for the current platform.
22 TabContentsContainer* container);
24 // Attaches the new TabContents to the native container.
27 // Detaches the old TabContents from the native container.
30 // Tells the container to update less frequently during resizing operations
34 // Tells the container that the RenderViewHost for the attached TabContents
39 // Tells the container that |tab_contents| got the focus.
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DLeaksViewer.css26 #url-prompt-container {
84 .data-grid .data-container {
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtimeline_view.css23 .timeline-view .summary-container {
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_gtk.h39 void set_container(InfoBarContainerGtk* container) { container_ = container; } argument
51 // Closes the InfoBar immediately and removes it from its container. Notifies
120 // The InfoBar's container
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_view.h26 // A class that represents the container that this view is in.
56 // Sets the container for this view.
57 void SetContainer(Container* container) { container_ = container; } argument
101 // The container this view is in (not necessarily its direct superview).
102 // Note: the view does not own its container.
/external/chromium-trace/trace-viewer/src/
H A Dprofiling_view.css12 .profiling-view > .container {
/external/clang/test/SemaTemplate/
H A Ddependent-base-member-init.cpp26 _Container* container; member in class:insert_iterator
27 insert_iterator(_Container& __x) : container(&__x) {}
/external/kernel-headers/original/linux/
H A Dtransport_class.h2 * transport_class.h - a generic container for all transport classes
40 struct attribute_container container; member in struct:anon_transport_class
48 . container = { \
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLOperator.h38 RenderMathMLOperator(Node* container);
39 RenderMathMLOperator(Node* container, UChar operatorChar);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceContainer.h85 if (RenderSVGResourceContainer* container = getRenderSVGResourceContainerById(document, id))
86 return container->cast<Renderer>();
/external/webkit/Source/WebCore/editing/
H A DDeleteButtonController.cpp157 Node* container = range->commonAncestorContainer(ec); local
158 ASSERT(container);
163 if (!container->rendererIsEditable())
166 Node* element = enclosingNodeOfType(firstPositionInNode(container), &isDeletableElement);
189 RefPtr<HTMLDivElement> container = HTMLDivElement::create(m_target->document()); local
190 container->setIdAttribute(containerElementIdentifier);
192 CSSMutableStyleDeclaration* style = container->getInlineStyleDecl();
222 container->appendChild(outline.get(), ec);
249 container->appendChild(button.get(), ec);
254 m_containerElement = container
[all...]

Completed in 1067 milliseconds

1234567891011>>