OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:textfield_
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.cc
149
textfield_
= new AutocompleteTextfield(this);
150
textfield_
->SetController(this);
153
textfield_
->SetFont(ui::ResourceBundle::GetSharedInstance().GetFont(
158
textfield_
->SetReadOnly(true);
262
textfield_
->SetBounds(insets.left(), insets.top(),
289
textfield_
->GetSelectedRange(&selection);
317
textfield_
->SelectRange(state->view_state.selection_range);
341
return
textfield_
->text();
387
return
textfield_
->text() ==
textfield_
->GetSelectedText()
[
all
...]
autocomplete_edit_view_views.h
161
views::Textfield*
textfield_
;
member in class:AutocompleteEditViewViews
/external/chromium/chrome/browser/ui/cocoa/
js_modal_dialog_cocoa.mm
24
NSTextField*
textField_
; // WEAK; owned by alert_
43
textField_
= [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 300, 22)];
44
[[
textField_
cell] setLineBreakMode:NSLineBreakByTruncatingTail];
45
[alert_ setAccessoryView:
textField_
];
46
[
textField_
release];
48
return
textField_
;
63
if (
textField_
)
64
input = base::SysNSStringToWide([
textField_
stringValue]);
Completed in 51 milliseconds