HomeSort by relevance Sort by last modified time
    Searched defs:Layout (Results 76 - 100 of 131) sorted by null

1 2 34 5 6

  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.cpp 55 static const char Layout[] = "Layout";
181 pushCurrentRecord(InspectorObject::create(), TimelineRecordType::Layout);
186 didCompleteCurrentRecord(TimelineRecordType::Layout);
  /external/chromium/chrome/browser/chromeos/notifications/
notification_panel.cc 139 virtual void Layout() {
140 // Layout bottom up
257 virtual void Layout() {
556 GetBalloonViewOf(balloon)->Layout();
739 scroll_view_->Layout();
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 30 #include "views/layout/grid_layout.h"
31 #include "views/layout/layout_constants.h"
137 views::GridLayout* layout = new views::GridLayout(this); local
138 layout->SetInsets(kOptInTopPadding, kOptInLeftPadding,
140 SetLayoutManager(layout);
144 views::ColumnSet* column_set = layout->AddColumnSet(first_column_set);
154 layout->StartRow(0, first_column_set);
155 layout->AddView(label);
156 layout->AddView(CreateButton(IDS_INSTANT_OPT_IN_ENABLE, button_font));
157 layout->AddView(CreateButton(IDS_INSTANT_OPT_IN_NO_THANKS, button_font))
    [all...]
  /external/chromium/chrome/browser/ui/views/
constrained_window_views.cc 169 virtual void Layout() OVERRIDE;
200 // Layout various sub-components of this view.
364 void ConstrainedWindowFrameView::Layout() {
task_manager_view.cc 33 #include "views/layout/layout_constants.h"
273 virtual void Layout();
508 void TaskManagerView::Layout() {
wrench_menu.cc 348 void Layout() {
453 void Layout() {
browser_actions_container.cc 318 void BrowserActionView::Layout() {
463 owner_view_->Layout();
535 void BrowserActionsContainer::Layout() {
824 Layout();
860 // calls Layout on the Toolbar, which needs this object to be constructed
861 // before its Layout function is called.
    [all...]
  /external/chromium/chrome/browser/ui/views/download/
download_item_view.cc 97 // The menu's alignment is determined based on the UI layout.
449 // In dangerous mode we have to layout our buttons.
450 void DownloadItemView::Layout() {
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
app_panel_browser_frame_view.cc 232 void AppPanelBrowserFrameView::Layout() {
glass_browser_frame_view.cc 259 void GlassBrowserFrameView::Layout() {
opaque_browser_frame_view.cc 398 void OpaqueBrowserFrameView::Layout() {
    [all...]
  /external/clang/lib/CodeGen/
CGRTTI.cpp 890 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
891 Offset = Layout.getBaseClassOffset(BaseDecl);
    [all...]
CGRecordLayoutBuilder.cpp 110 /// LayoutUnionField - Will layout a field in an union and return the type
113 const ASTRecordLayout &Layout);
115 /// LayoutUnion - Will layout a union RecordDecl.
118 /// LayoutField - try to layout all fields in the record decl.
122 /// Layout a single base, virtual or non-virtual
127 /// LayoutVirtualBase - layout a single virtual base.
131 /// LayoutVirtualBases - layout the virtual bases of a record decl.
133 const ASTRecordLayout &Layout);
135 /// MSLayoutVirtualBases - layout the virtual bases of a record decl,
138 const ASTRecordLayout &Layout);
527 const ASTRecordLayout &layout = Types.getContext().getASTRecordLayout(D); local
    [all...]
CGClass.cpp 39 // Get the layout.
40 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
46 Offset += Layout.getBaseClassOffset(BaseDecl);
89 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(Derived);
91 Offset = Layout.getVBaseClassOffset(Base);
93 Offset = Layout.getBaseClassOffset(Base);
185 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(Derived);
187 CharUnits VBaseOffset = Layout.getVBaseClassOffset(VBase);
299 const ASTRecordLayout &Layout =
302 Layout.getVBaseClassOffset(Base) :
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 1022 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
1024 Offset += Layout.getFieldOffset(idx);
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
TimelineAgent.js 38 Layout: "Layout",
  /external/chromium/chrome/browser/chromeos/login/
screen_locker.cc 139 // Skip if it's not a keyboard layout.
150 // We don't want to shut down the IME, even if the hardware layout is the
242 // GrabWidget's root view to layout the ScreenLockView at the center
257 virtual void Layout() {
272 Layout();
527 virtual void Layout() {
528 chromeos::BackgroundView::Layout();
546 Layout();
    [all...]
wizard_controller.cc 155 virtual void Layout() {
629 contents_->Layout();
659 contents_->Layout();
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.cc 323 // Force a layout, since the tab may have grown a favicon.
324 Layout();
634 Layout();
665 void TabRendererGtk::Layout() {
    [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
location_bar_view.cc 290 Layout();
304 Layout();
357 Layout();
390 // If the UI layout is RTL, the coordinate system is not transformed and
425 Layout();
439 void LocationBarView::Layout() {
443 // TODO(sky): baseline layout.
635 // Layout out the suggested text view right aligned to the location
646 // TODO(sky): need to layout when the user changes caret position.
812 Layout();
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
tab.cc 203 Layout();
228 void Tab::Layout() {
311 // mirrored if the View's layout is right-to-left.
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
DuplicateIdDetector.java 60 * Checks for duplicate ids within a layout and within an included layout
77 "Checks for duplicate ids within a single layout",
78 "Within a layout, id's should be unique since otherwise findViewById() can " +
107 return folderType == ResourceFolderType.LAYOUT || folderType == ResourceFolderType.MENU;
135 // Store this layout's set of ids for full project analysis in afterCheckProject
205 // Record include graph such that we can look for inter-layout duplicates after the
208 String layout = element.getAttribute(ATTR_LAYOUT); // NOTE: Not in android: namespace local
209 if (layout.startsWith(LAYOUT_RESOURCE_PREFIX)) { // Ignore @android:layout/ layout
593 assert visited == layout; local
619 assert occurrences.get(layout) == null : id + "," + layout; local
632 assert visited == layout; local
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.cc 463 void BookmarkBarView::Layout() {
477 // We only layout while parented. When we become parented, if our bounds
479 // layout. Therefore we always force a layout when added.
480 Layout();
682 // When the sync state changes, it is sufficient to invoke View::Layout since
683 // during layout we query the profile sync service and determine whether the
687 // enough to let the parent layout both of these children.
688 // TODO(sky): This should not require Layout() and SchedulePaint(). Needs
691 Layout();
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 96 getFieldOffset(const ASTRecordLayout &Layout, unsigned FieldNo) const {
97 uint64_t FieldOffset = Layout.getFieldOffset(FieldNo);
148 const ASTRecordLayout &Layout = Context.getASTRecordLayout(BaseDecl);
151 EmptySize = Layout.getSize();
154 EmptySize = Layout.getSizeOfLargestEmptySubobject();
175 const ASTRecordLayout &Layout = Context.getASTRecordLayout(MemberDecl);
178 EmptySize = Layout.getSize();
181 EmptySize = Layout.getSizeOfLargestEmptySubobject();
239 const ASTRecordLayout &Layout = Context.getASTRecordLayout(Info->Class);
245 CharUnits BaseOffset = Offset + Layout.getBaseClassOffset(Base->Class)
    [all...]
VTableBuilder.cpp 1 //===--- VTableBuilder.cpp - C++ vtable layout builder --------------------===//
10 // This contains code dealing with generation of the layout of virtual tables.
63 /// Offset - the base offset of the overrider in the layout class.
75 /// construction vtable, this holds the offset from the layout class to the
79 /// LayoutClass - The class we're using for layout information. Will be
86 /// MostDerivedClassLayout - the AST record layout of the most derived class.
102 /// derived class as well as the layout class.
238 const ASTRecordLayout &Layout = Context.getASTRecordLayout(Element.Class);
243 NonVirtualOffset += Layout.getBaseClassOffset(Base);
363 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD)
    [all...]

Completed in 1275 milliseconds

1 2 34 5 6