HomeSort by relevance Sort by last modified time
    Searched full:subview (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/ui/cocoa/
styled_text_field.mm 17 // Cocoa text fields are edited by placing an NSTextView as subview,
23 // could disrupt editing. This code repositions the subview directly,
32 // When editing, we should have exactly one subview, which is a
44 NSView* subview = [subviews objectAtIndex:0];
45 if (NSEqualRects(frame, [subview frame])) {
49 [subview setFrame:frame];
fast_resize_view.mm 45 // There should never be more than one subview. There can be zero, if we are
53 NSView* subview = [subviews objectAtIndex:0];
57 NSRect frame = [subview frame];
60 [subview setFrame:frame];
62 [subview setFrame:bounds];
view_id_util.mm 27 // ViewID, or nil if no subview has that ViewID.
32 for (NSView* subview in [view subviews]) {
33 NSView* result = FindViewWithID(subview, viewID);
fast_resize_view.h 14 // size is not changed and the subview is clipped to fit, if necessary. Fast
page_info_bubble_controller_unittest.mm 94 ADD_FAILURE() << "Unknown subview: " << [[view description] UTF8String];
198 for (NSView* subview in subviews) {
199 if ([subview isKindOfClass:[NSTextField class]]) {
200 NSTextField* desc = static_cast<NSTextField*>(subview);
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
layout_view_unittest.mm 58 NSView* subview = [[view_ subviews] objectAtIndex:0];
59 EXPECT_FLOAT_EQ(16, NSWidth([subview frame]));
60 EXPECT_FLOAT_EQ(55, NSHeight([subview frame]));
62 subview = [[view_ subviews] objectAtIndex:1];
63 EXPECT_FLOAT_EQ(24, NSWidth([subview frame]));
64 EXPECT_FLOAT_EQ(55, NSHeight([subview frame]));
autofill_layout.h 14 // * Subview indicates by calling -requestRelayout on the window controller.
16 // total size of the contentView, adjusts subview origins appropriately,
17 // and calls performLayout on each subview.
autofill_notification_container_unittest.mm 38 // Single notification adds one subview.
  /external/chromium_org/chrome/browser/ui/cocoa/
styled_text_field.mm 17 // Cocoa text fields are edited by placing an NSTextView as subview,
23 // could disrupt editing. This code repositions the subview directly,
32 // When editing, we should have exactly one subview, which is a
44 NSView* subview = [subviews objectAtIndex:0];
45 if (NSEqualRects(frame, [subview frame])) {
49 [subview setFrame:frame];
fast_resize_view.mm 52 // There should never be more than one subview. There can be zero, if we are
60 NSView* subview = [subviews objectAtIndex:0];
64 NSRect frame = [subview frame];
67 [subview setFrame:frame];
69 [subview setFrame:bounds];
nsview_additions.mm 49 - (void)cr_ensureSubview:(NSView*)subview
54 if ([[subview superview] isEqual:self] &&
55 [subview cr_isAboveView:otherView] == isAbove) {
59 [subview removeFromSuperview];
60 [self addSubview:subview
nsview_additions.h 24 // Ensures that the z-order of |subview| is correct relative to |otherView|.
25 - (void)cr_ensureSubview:(NSView*)subview
view_id_util.mm 27 // ViewID, or nil if no subview has that ViewID.
32 for (NSView* subview in [view subviews]) {
33 NSView* result = FindViewWithID(subview, viewID);
fast_resize_view.h 13 // size is not changed and the subview is clipped to fit, if necessary. Fast
history_overlay_controller.h 27 // The view above which self.view is inserted as a subview.
  /external/chromium_org/ui/base/cocoa/
view_description.mm 18 for (NSView* subview in [self subviews]) {
20 [subview cr_recursiveDescriptionWithPrefix:prefix]];
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
omnibox_popup_view.mm 11 // If there is only one subview, it is sized to fill all available space. If
12 // there are two subviews, the second subview is placed at the bottom of the
13 // view, and the first subview is sized to fill all remaining space.
omnibox_popup_view_unittest.mm 27 // A single subview should completely fill the popup view.
31 // Adding the subview should not change its frame.
35 // Resizing the popup view should also resize the subview.
  /external/chromium_org/chrome/browser/ui/cocoa/browser/
avatar_menu_bubble_controller_unittest.mm 80 for (NSView* subview in subviews) {
81 if ([viewController view] == subview) {
82 [subviews removeObject:subview];
88 // The one remaining subview should be the new user button.
93 for (NSView* subview in subviews) {
94 if ([subview isKindOfClass:[NSButton class]]) {
98 NSButton* button = static_cast<NSButton*>(subview);
102 } else if ([subview isKindOfClass:[NSBox class]]) {
106 EXPECT_FALSE(subview) << "Unexpected subview:
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
top_bar_view.js 47 throw Error('Invalid subview name');
56 // Let the subview change the color scheme of the top bar.
  /external/chromium_org/ui/app_list/cocoa/
app_list_view_controller.h 42 // Subview for drawing the background. Hidden when the signin view is visible.
45 // Subview of |backgroundView_| that slides out when search results are shown.
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
cookie_details_view_controller.mm 44 for (NSView* subview in [view subviews]) {
45 [self getLowestLabelVerticalPosition:subview
  /external/chromium_org/chrome/browser/ui/cocoa/content_settings/
cookie_details_view_controller.mm 45 for (NSView* subview in [view subviews]) {
46 [self getLowestLabelVerticalPosition:subview
  /cts/tests/tests/widget/src/android/widget/cts/
AdapterViewTest.java 91 ListView subView = new ListView(mActivity);
94 mAdapterView.addView(subView);
101 mAdapterView.addView(subView, 0);
108 mAdapterView.addView(subView, (ViewGroup.LayoutParams) null);
115 mAdapterView.addView(subView, 0, (ViewGroup.LayoutParams) null);
136 mAdapterView.removeView(subView);
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_view_unittest.mm 50 // accidentally hit a subview when trying to simulate a click in the

Completed in 194 milliseconds

1 2 3 4