Searched defs:label (Results 276 - 300 of 801) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/extensions/
H A Dextension_context_menu_browsertest.cc35 bool HasExtensionItemWithLabel(const std::string& label) { argument
36 string16 label16 = UTF8ToUTF16(label);
49 // has a label, that is put in |result| and we return true. Otherwise returns
181 // for an extension item with the given |label|, and returns true if the item
186 const std::string& label) {
189 return menu->HasExtensionItemWithLabel(label);
266 // Create a context menu, then find the item's label. It should be properly
272 string16 label; local
273 ASSERT_TRUE(menu->GetItemLabel(item->id(), &label));
274 ASSERT_TRUE(label
183 MenuHasItemWithLabel(const GURL& page_url, const GURL& link_url, const GURL& frame_url, const std::string& label) argument
341 string16 label; local
[all...]
/external/chromium/chrome/browser/first_run/
H A Dtry_chrome_dialog_view.cc145 views::Label* label = new views::Label(heading); local
146 label->SetFont(rb.GetFont(ResourceBundle::MediumBoldFont));
147 label->SetMultiLine(true);
148 label->SizeToFit(200);
149 label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
150 layout->AddView(label);
/external/chromium/chrome/browser/sync/
H A Dsync_ui_util.cc73 string16 label; local
76 return label;
/external/chromium/chrome/browser/ui/gtk/
H A Dabout_chrome_dialog.cc59 GtkWidget* label = gtk_label_new(NULL); local
61 gtk_label_set_markup(GTK_LABEL(label), markup);
65 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
67 return label;
H A Dcontent_setting_bubble_gtk.cc98 // Add the content label.
99 GtkWidget* label = gtk_label_new(content.title.c_str()); local
100 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
101 gtk_box_pack_start(GTK_BOX(bubble_content), label, FALSE, FALSE, 0); local
115 GtkWidget* label = gtk_label_new(BuildElidedText(name).c_str()); local
117 gtk_box_pack_start(GTK_BOX(label_box), label, FALSE, FALSE, 0); local
202 GtkWidget* label = gtk_label_new(BuildElidedText(i->title).c_str()); local
203 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
205 gtk_box_pack_start(GTK_BOX(label_box), label, FALSE, FALSE, 0); local
H A Dcrypto_module_password_dialog.cc158 GtkWidget* label = gtk_label_new(text.c_str()); local
159 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
160 gtk_util::LeftAlignMisc(label);
161 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog_)->vbox), label,
H A Dpage_info_bubble_gtk.cc228 GtkWidget* label = gtk_label_new(UTF16ToUTF8(section.headline).c_str()); local
229 gtk_label_set_selectable(GTK_LABEL(label), TRUE);
230 labels_.push_back(label);
234 gtk_label_set_attributes(GTK_LABEL(label), attributes);
236 gtk_util::SetLabelWidth(label, 400);
239 gtk_label_set_line_wrap_mode(GTK_LABEL(label), PANGO_WRAP_WORD_CHAR);
240 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); local
242 GtkWidget* label = gtk_label_new(UTF16ToUTF8(section.description).c_str()); local
243 gtk_label_set_selectable(GTK_LABEL(label), TRUE);
244 labels_.push_back(label);
249 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); local
[all...]
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_bubble_gtk.cc101 GtkWidget* label = gtk_label_new(l10n_util::GetStringUTF8( local
104 labels_.push_back(label);
120 gtk_misc_set_alignment(GTK_MISC(label), 0, 1);
121 gtk_box_pack_start(GTK_BOX(top), label, local
144 // We want the buttons on the right, so just use an expanding label to fill
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_install_dialog_gtk.cc31 GtkWidget* label = gtk_label_new(NULL); local
33 gtk_label_set_markup(GTK_LABEL(label), markup);
37 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
39 return label;
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dtranslate_infobar_base_gtk.cc132 GtkWidget* label = gtk_label_new(text.c_str()); local
133 gtk_widget_modify_fg(label, GTK_STATE_NORMAL, &gtk_util::kGdkBlack);
134 return label;
200 GtkWidget* label = gtk_label_new( local
202 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); local
/external/chromium/chrome/browser/ui/toolbar/
H A Dwrench_menu_model.cc82 string16& label = it->second; local
87 AddCheckItem(id, label);
92 AddRadioItem(id, label, group_id);
/external/chromium/chrome/browser/ui/views/
H A Dcookie_info_view.cc21 #include "views/controls/label.h"
161 views::View* label, views::View* value) {
163 layout->AddView(label);
170 views::View* label, views::View* control) {
172 layout->AddView(label);
160 AddLabelRow(int layout_id, views::GridLayout* layout, views::View* label, views::View* value) argument
169 AddControlRow(int layout_id, views::GridLayout* layout, views::View* label, views::View* control) argument
H A Dedit_search_engine_dialog.cc19 #include "views/controls/label.h"
228 views::Label* label = local
230 label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
231 return label;
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_install_dialog_view.cc18 #include "views/controls/label.h"
176 views::Label* label = new views::Label(UTF16ToWide(permissions[i])); local
177 label->SetMultiLine(true);
178 label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
179 permission_box_->AddChildView(label);
180 permissions_.push_back(label);
/external/chromium/chrome/browser/webdata/
H A Dweb_database_migration_unittest.cc33 string16* label,
37 DCHECK(label);
40 *label = s.ColumnString16(0);
62 string16* label,
65 DCHECK(label);
69 *label = s.ColumnString16(1);
105 string16* label,
110 DCHECK(label);
114 *label = s.ColumnString16(0);
491 // the test makes sure a stored label i
31 AutofillProfile31FromStatement(const sql::Statement& s, AutofillProfile* profile, string16* label, int* unique_id, int64* date_modified) argument
60 AutofillProfile32FromStatement(const sql::Statement& s, AutofillProfile* profile, string16* label, int64* date_modified) argument
103 CreditCard31FromStatement(const sql::Statement& s, CreditCard* credit_card, string16* label, int* unique_id, std::string* encrypted_number, int64* date_modified) argument
[all...]
/external/chromium_org/android_webview/native/
H A Daw_autofill_manager_delegate.cc122 ScopedJavaLocalRef<jstring> label = local
129 label.obj(),
/external/chromium_org/ash/system/chromeos/network/
H A Dtray_sms.cc25 #include "ui/views/controls/label.h"
66 base::string16 label = l10n_util::GetStringFUTF16( local
68 SetLabel(label);
69 SetAccessibleName(label);
/external/chromium_org/ash/system/chromeos/
H A Dtray_display.cc28 #include "ui/views/controls/label.h"
245 views::Label* label() { return label_; } function in class:ash::internal::DisplayView
306 views::Label* label = new views::Label(message); local
307 label->SetMultiLine(true);
308 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
309 UpdateView(label);
432 return static_cast<DisplayView*>(default_)->label()->text();
/external/chromium_org/ash/system/date/
H A Ddate_view.cc19 #include "ui/views/controls/label.h"
66 views::Label* label = new views::Label; local
67 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
68 label->SetBackgroundColor(SkColorSetARGB(0, 255, 255, 255));
69 return label;
282 void TimeView::SetupLabel(views::Label* label) { argument
283 label->set_owned_by_client();
284 SetupLabelForTray(label);
285 gfx::Font font = label->font();
286 label
[all...]
/external/chromium_org/ash/system/
H A Dtray_accessibility.cc24 #include "ui/views/controls/label.h"
71 base::string16 label = bundle.GetLocalizedString( local
73 SetLabel(label);
74 SetAccessibleName(label);
93 views::Label* label = new views::Label( local
96 label->SetMultiLine(true);
97 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
98 return label;
/external/chromium_org/base/debug/
H A Dstack_trace_posix.cc262 const char* label; member in struct:base::debug::__anon3707::__anon3708
319 PrintToStderr(registers[i].label);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DCertificateViewer.java159 private void addSectionTitle(LinearLayout certificateView, String label) { argument
160 TextView title = addLabel(certificateView, label);
164 private void addItem(LinearLayout certificateView, String label, String value) { argument
167 addLabel(certificateView, label);
171 private TextView addLabel(LinearLayout certificateView, String label) { argument
174 t.setText(label);
/external/chromium_org/chrome/browser/chromeos/contacts/
H A Dcontact_test_util.cc44 email.type().label() + "," +
51 phone.type().label() + "," +
58 postal.type().label() + "," +
67 im.type().label() + "," +
182 const std::string& label,
189 email->mutable_type()->set_label(label);
195 const std::string& label,
202 phone->mutable_type()->set_label(label);
208 const std::string& label,
215 postal->mutable_type()->set_label(label);
180 AddEmailAddress(const std::string& address, Contact_AddressType_Relation relation, const std::string& label, bool primary, Contact* contact) argument
193 AddPhoneNumber(const std::string& number, Contact_AddressType_Relation relation, const std::string& label, bool primary, Contact* contact) argument
206 AddPostalAddress(const std::string& address, Contact_AddressType_Relation relation, const std::string& label, bool primary, Contact* contact) argument
219 AddInstantMessagingAddress( const std::string& address, Contact_InstantMessagingAddress_Protocol protocol, Contact_AddressType_Relation relation, const std::string& label, bool primary, Contact* contact) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Denrollment_dialog_view.cc19 #include "ui/views/controls/label.h"
149 views::Label* label = new views::Label( local
152 label->SetFont(ui::ResourceBundle::GetSharedInstance().GetFont(
154 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
155 label->SetMultiLine(true);
156 label->SetAllowCharacterBreak(true);
179 grid_layout->AddView(label);
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Ddesktop_notifications.cc223 const std::string& system_path, const std::string& label, bool is_parent,
256 message = label.empty() ?
260 IDS_MULTIPART_DEVICE_UNSUPPORTED_MESSAGE, UTF8ToUTF16(label));
264 message = label.empty() ?
267 UTF8ToUTF16(label));
269 message = label.empty() ?
272 UTF8ToUTF16(label));
222 ManageNotificationsOnMountCompleted( const std::string& system_path, const std::string& label, bool is_parent, bool success, bool is_unsupported) argument

Completed in 516 milliseconds

<<11121314151617181920>>