OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tab_pos
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/views/controls/menu/
menu_win.cc
170
string16::size_type
tab_pos
= label.find(L'\t');
local
171
if (
tab_pos
!= string16::npos) {
172
accel = label.substr(
tab_pos
);
173
label = label.substr(0,
tab_pos
);
native_menu_win.cc
239
string16::size_type
tab_pos
= label.find(L'\t');
local
240
if (
tab_pos
!= string16::npos) {
241
accel = label.substr(
tab_pos
);
242
label = label.substr(0,
tab_pos
);
Completed in 212 milliseconds