OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:textview_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_notification_controller.mm
115
textview_
.reset([[HyperlinkTextView alloc] initWithFrame:NSZeroRect]);
118
[
textview_
setMessage:base::SysUTF16ToNSString(notification->display_text())
119
withFont:[NSFont labelFontOfSize:[[
textview_
font] pointSize]]
124
[
textview_
setDelegate:self];
125
[
textview_
addLinkRange:notification->link_range().ToNSRange()
130
[
textview_
setHidden:notification->HasCheckbox()];
136
[checkbox_ setAttributedTitle:[
textview_
textStorage]];
154
[view setSubviews:@[
textview_
, checkbox_, [tooltipController_ view] ]];
173
return
textview_
;
195
if (![
textview_
isHidden])
[
all
...]
autofill_notification_controller.h
27
base::scoped_nsobject<HyperlinkTextView>
textview_
;
member in namespace:NSViewController
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_sync_promo_controller.mm
61
NSRect frame = [[
textView_
textStorage]
92
textView_
.reset([[HyperlinkTextView alloc] init]);
93
[
textView_
setMessageAndLink:base::SysUTF16ToNSString(promoTextWithoutLink)
99
[
textView_
setAcceptsFirstResponder:NO];
100
[[
textView_
textContainer] setLineFragmentPadding:0.0];
101
RemoveUnderlining(
textView_
, offset, linkText.size());
102
[
textView_
setDelegate:self];
104
[promoView setContentView:
textView_
];
bookmark_sync_promo_controller.h
24
base::scoped_nsobject<HyperlinkTextView>
textView_
;
Completed in 57 milliseconds