OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:arrowrect
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_notification_controller.mm
56
NSRect
arrowRect
= NSMakeRect(anchorPoint.x - autofill::kArrowWidth / 2.0,
65
[path moveToPoint:NSMakePoint(NSMinX(bounds), NSMinY(
arrowRect
))];
66
[path lineToPoint:
arrowRect
.origin];
67
[path lineToPoint:NSMakePoint(NSMidX(
arrowRect
), NSMaxY(
arrowRect
))];
68
[path lineToPoint:NSMakePoint(NSMaxX(
arrowRect
), NSMinY(
arrowRect
))];
69
[path lineToPoint:NSMakePoint(NSMaxX(bounds), NSMinY(
arrowRect
))];
/external/chromium/chrome/browser/ui/cocoa/
profile_menu_button.mm
268
NSRect
arrowRect
;
269
arrowRect
.size.width = kTabArrowWidth;
270
arrowRect
.size.height = kTabArrowHeight;
271
arrowRect
.origin.x = NSMinX(tabRect) + roundf((NSWidth(tabRect) -
272
NSWidth(
arrowRect
)) / 2.0);
273
arrowRect
.origin.y = NSMinY(tabRect) + roundf((tabRect.size.height -
274
arrowRect
.size.height) / 2.0);
275
NSBezierPath* arrowPath = [self downArrowPathWithRect:
arrowRect
];
/external/chromium_org/chrome/browser/ui/cocoa/
history_overlay_controller.mm
58
NSRect
arrowRect
= NSMakeRect(offset, 0, kShieldRadius, kShieldHeight);
59
arrowRect
= NSInsetRect(
arrowRect
, 10, 0); // Give a little padding.
62
[[NSImageView alloc] initWithFrame:
arrowRect
]);
Completed in 167 milliseconds