/external/chromium_org/chrome/browser/ui/webui/performance_monitor/ |
performance_monitor_l10n.cc | 16 int string_id = 0; local 19 string_id = IDS_PERFORMANCE_MONITOR_AGGREGATION_NONE_NAME; 22 string_id = IDS_PERFORMANCE_MONITOR_AGGREGATION_MEDIAN_NAME; 25 string_id = IDS_PERFORMANCE_MONITOR_AGGREGATION_MEAN_NAME; 31 return l10n_util::GetStringUTF16(string_id); 36 int string_id = 0; local 39 string_id = IDS_PERFORMANCE_MONITOR_AGGREGATION_NONE_DESCRIPTION; 42 string_id = IDS_PERFORMANCE_MONITOR_AGGREGATION_MEDIAN_DESCRIPTION; 45 string_id = IDS_PERFORMANCE_MONITOR_AGGREGATION_MEAN_DESCRIPTION; 51 return l10n_util::GetStringUTF16(string_id); 57 int string_id = 0; local 77 int string_id = 0; local 97 int string_id = 0; local 194 int string_id = 0; local 232 int string_id = 0; local 263 int string_id = 0; local 287 int string_id = 0; local 311 int string_id = 0; local 347 int string_id = 0; local 396 int string_id = 0; local [all...] |
/external/chromium_org/ui/base/accelerators/ |
accelerator.cc | 102 int string_id = 0; local 105 string_id = IDS_APP_TAB_KEY; 108 string_id = IDS_APP_ENTER_KEY; 111 string_id = IDS_APP_ESC_KEY; 114 string_id = IDS_APP_PAGEUP_KEY; 117 string_id = IDS_APP_PAGEDOWN_KEY; 120 string_id = IDS_APP_END_KEY; 123 string_id = IDS_APP_HOME_KEY; 126 string_id = IDS_APP_INSERT_KEY; 129 string_id = IDS_APP_DELETE_KEY [all...] |
/art/runtime/ |
dex_file-inl.h | 27 inline int32_t DexFile::GetStringLength(const StringId& string_id) const { 28 const byte* ptr = begin_ + string_id.string_data_off_; 32 inline const char* DexFile::GetStringDataAndLength(const StringId& string_id, uint32_t* length) const { 34 const byte* ptr = begin_ + string_id.string_data_off_;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
parser.hpp | 105 const_argument_ptr operator[]( cstring string_id ) const; 106 cstring get( cstring string_id ) const; 109 T const& get( cstring string_id ) const 111 return arg_value<T>( valid_argument( string_id ) ); 115 void get( cstring string_id, boost::optional<T>& res ) const 117 const_argument_ptr actual_arg = (*this)[string_id]; 130 argument const& valid_argument( cstring string_id ) const;
|
parser.ipp | 71 parser::valid_argument( cstring string_id ) const 73 const_argument_ptr arg = (*this)[string_id]; 75 BOOST_RT_PARAM_VALIDATE_LOGIC( !!arg, "Actual argument for parameter " << string_id << " is not present" ); 165 parser::operator[]( cstring string_id ) const 170 if( curr_param->responds_to( string_id ) ) { 172 BOOST_RT_PARAM_LITERAL( "Ambiguous parameter string id: " ) << string_id ); 184 parser::get( cstring string_id ) const 186 return get<cstring>( string_id );
|
/external/chromium_org/chrome/third_party/mozilla_security_manager/ |
nsNSSCertHelper.cpp | 181 int string_id; local 185 string_id = IDS_CERT_OID_AVA_COMMON_NAME; 188 string_id = IDS_CERT_OID_AVA_STATE_OR_PROVINCE; 191 string_id = IDS_CERT_OID_AVA_ORGANIZATION_NAME; 194 string_id = IDS_CERT_OID_AVA_ORGANIZATIONAL_UNIT_NAME; 197 string_id = IDS_CERT_OID_AVA_DN_QUALIFIER; 200 string_id = IDS_CERT_OID_AVA_COUNTRY_NAME; 203 string_id = IDS_CERT_OID_AVA_SERIAL_NUMBER; 206 string_id = IDS_CERT_OID_AVA_LOCALITY; 209 string_id = IDS_CERT_OID_AVA_DC 762 int string_id; member in struct:mozilla_security_manager::__anon7052 876 int string_id; member in struct:mozilla_security_manager::MaskIdPair [all...] |
nsUsageArrayHelper.cpp | 53 int string_id; member in struct:mozilla_security_manager::__anon7053 68 usage_string_map[i].string_id));
|
/external/chromium_org/ui/base/models/ |
button_menu_item_model.cc | 39 int string_id, 41 : item_label_(l10n_util::GetStringUTF16(string_id)), 49 int command_id, int string_id) { 50 Item item = { command_id, TYPE_BUTTON, l10n_util::GetStringUTF16(string_id), 61 void ButtonMenuItemModel::AddButtonLabel(int command_id, int string_id) { 63 l10n_util::GetStringUTF16(string_id), -1, false };
|
simple_menu_model.cc | 93 void SimpleMenuModel::AddItemWithStringId(int command_id, int string_id) { 94 AddItem(command_id, l10n_util::GetStringUTF16(string_id)); 104 void SimpleMenuModel::AddCheckItemWithStringId(int command_id, int string_id) { 105 AddCheckItem(command_id, l10n_util::GetStringUTF16(string_id)); 117 void SimpleMenuModel::AddRadioItemWithStringId(int command_id, int string_id, 119 AddRadioItem(command_id, l10n_util::GetStringUTF16(string_id), group_id); 166 int string_id, MenuModel* model) { 167 AddSubMenu(command_id, l10n_util::GetStringUTF16(string_id), model); 179 int index, int command_id, int string_id) { 180 InsertItemAt(index, command_id, l10n_util::GetStringUTF16(string_id)); [all...] |
simple_menu_model.h | 78 void AddItemWithStringId(int command_id, int string_id); 80 void AddCheckItemWithStringId(int command_id, int string_id); 82 void AddRadioItemWithStringId(int command_id, int string_id, int group_id); 101 void AddSubMenuWithStringId(int command_id, int string_id, MenuModel* model); 105 void InsertItemWithStringIdAt(int index, int command_id, int string_id); 110 void InsertCheckItemWithStringIdAt(int index, int command_id, int string_id); 116 int index, int command_id, int string_id, int group_id); 122 int index, int command_id, int string_id, MenuModel* model);
|
button_menu_item_model.h | 41 ButtonMenuItemModel(int string_id, ButtonMenuItemModel::Delegate* delegate); 46 void AddGroupItemWithStringId(int command_id, int string_id); 54 void AddButtonLabel(int command_id, int string_id);
|
/external/chromium_org/chrome/browser/ui/apps/ |
apps_metro_handler_win.cc | 24 int string_id = win8_restart_command_id == IDC_WIN8_METRO_RESTART ? local 30 l10n_util::GetStringUTF16(string_id),
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
system_menu_model_delegate.cc | 48 int string_id = IDS_RESTORE_TAB; local 53 string_id = IDS_RESTORE_WINDOW; 55 return l10n_util::GetStringUTF16(string_id);
|
/external/chromium_org/chrome/common/extensions/permissions/ |
settings_override_permission.cc | 29 int string_id = -1; local 32 string_id = IDS_EXTENSION_PROMPT_WARNING_HOME_PAGE_SETTING_OVERRIDE; 36 string_id = IDS_EXTENSION_PROMPT_WARNING_START_PAGE_SETTING_OVERRIDE; 40 string_id = IDS_EXTENSION_PROMPT_WARNING_SEARCH_SETTINGS_OVERRIDE; 49 l10n_util::GetStringFUTF16(string_id, UTF8ToUTF16(setting_value_))));
|
/external/chromium_org/chrome/browser/download/ |
download_item_model.cc | 113 int string_id = 0; local 117 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_ACCESS_DENIED; 120 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_DISK_FULL; 123 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_PATH_TOO_LONG; 126 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_FILE_TOO_LARGE; 129 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_VIRUS; 132 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_TEMPORARY_PROBLEM; 135 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_BLOCKED; 138 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_SECURITY_CHECK_FAILED; 141 string_id = IDS_DOWNLOAD_INTERRUPTED_STATUS_FILE_TOO_SHORT 179 int string_id = 0; local [all...] |
/external/chromium_org/chrome/installer/util/prebuild/ |
create_string_rc.py | 103 Returns a list of tuples of (string_id, language, translated string). The 124 for string_id in kStringIds: 126 x.getAttribute('name') == string_id][0]) 136 for string_id, message_text in zip(kStringIds, message_texts): 137 translated_strings.append(TranslationStruct(string_id, 154 for i, string_id in enumerate(kStringIds): 157 translated_strings.append(TranslationStruct(string_id, 221 for string_id in kStringIds: 222 lines.append('#define %s_BASE %s_%s' % (string_id, 223 string_id, [all...] |
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_context_menu.cc | 81 void BookmarkContextMenu::AddItemWithStringId(int command_id, int string_id) { 83 command_id, UTF16ToWide(l10n_util::GetStringUTF16(string_id))); 90 void BookmarkContextMenu::AddCheckboxItem(int command_id, int string_id) { 92 UTF16ToWide(l10n_util::GetStringUTF16(string_id)),
|
bookmark_context_menu.h | 54 virtual void AddItemWithStringId(int command_id, int string_id); 56 virtual void AddCheckboxItem(int command_id, int string_id);
|
bookmark_context_menu_controller_views.h | 28 virtual void AddItemWithStringId(int command_id, int string_id) = 0; 30 virtual void AddCheckboxItem(int command_id, int string_id) = 0;
|
/external/chromium_org/cloud_print/service/win/ |
cloud_print_service.cc | 83 base::string16 GetOption(int string_id, const base::string16& default, 85 base::string16 prompt_format = cloud_print::LoadLocalString(string_id); 106 HRESULT ReportError(HRESULT hr, int string_id) { 108 std::cerr << cloud_print::LoadLocalString(string_id); 114 DWORD string_id = 0; local 117 string_id = IDS_SERVICE_NOT_FOUND; 120 string_id = IDS_SERVICE_STOPPED; 123 string_id = IDS_SERVICE_RUNNING; 126 return string_id ? cloud_print::LoadLocalString(string_id) : base::string16() [all...] |
/external/chromium_org/ash/system/tray/ |
special_popup_row.h | 30 void SetTextLabel(int string_id, ViewClickListener* listener);
|
special_popup_row.cc | 55 void SpecialPopupRow::SetTextLabel(int string_id, ViewClickListener* listener) { 68 rb.GetLocalizedString(string_id),
|
/external/chromium_org/ppapi/proxy/ |
pdf_resource.h | 39 PP_Var GetLocalizedString(PP_ResourceString string_id) OVERRIDE;
|
/external/chromium_org/ppapi/thunk/ |
ppb_pdf_api.h | 16 virtual PP_Var GetLocalizedString(PP_ResourceString string_id) = 0;
|
/external/chromium_org/chrome/browser/ui/webui/ntp/android/ |
bookmarks_handler.cc | 497 std::string string_id; 498 if (!args->GetString(0, &string_id) || string_id.empty()) { 503 bool is_partner = string_id[0] == 'p'; 504 bool is_managed = string_id[0] == 'm'; 507 string_id = string_id.substr(1); 510 if (!base::StringToInt64(string_id, &id)) {
|