Searched defs:label (Results 176 - 200 of 801) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/gui/
H A DClassSpecificationsPanel.java195 private final JLabel label = new JLabel(); field in class:ClassSpecificationsPanel.MyListCellRenderer
210 label.setText(comments != null ? comments.trim() :
217 label.setBackground(list.getSelectionBackground());
218 label.setForeground(list.getSelectionForeground());
222 label.setBackground(list.getBackground());
223 label.setForeground(list.getForeground());
226 label.setOpaque(true);
228 return label;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTabSpec.java23 private CharSequence label; field in class:ShadowTabSpec
48 return this.label.toString();
60 return label.toString();
69 public TabHost.TabSpec setIndicator(CharSequence label) { argument
70 this.label = label;
75 public TabHost.TabSpec setIndicator(CharSequence label, Drawable icon) { argument
76 this.label = label;
/external/srec/srec/ca/
H A Drec_resu.c54 int CA_FullResultLabel(CA_Recog *hRecog, char *label, int len) argument
59 rc = srec_get_top_choice_transcription(hRecog->recm, label, len, 1);
H A Dvoc_basi.c110 int CA_CheckEntryInDictionary(CA_Vocab *hVocab, const char *label) argument
117 pronCount = get_prons(&hVocab->voc, label, prons, sizeof(prons));
123 for (i = 0; label[i]; i++) {
125 lower[i] = tolower(label[i]);
138 int CA_GetFullEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize);
140 int CA_GetEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize) argument
145 rc = CA_GetFullEntryInDictionary(hVocab, label, pron, pronSize, pronMaxSize);
153 int CA_GetFullEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize) argument
160 pronCount = get_prons(&hVocab->voc, label, pron, pronMaxSize);
166 for (i = 0; label[
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproject.h38 typename A::Label label = project_type_ == PROJECT_INPUT local
40 return A(label, label, arc.weight, arc.nextstate);
55 // input label to the output label or vice versa. This version modifies
69 // input label to the output label or vice versa. This version is a delayed
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-tlsprf.c20 * @label: A unique label for each purpose of the PRF
30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, argument
48 MD5_addr[1] = (unsigned char *) label;
49 MD5_len[1] = os_strlen(label);
55 SHA1_addr[1] = (unsigned char *) label;
56 SHA1_len[1] = os_strlen(label);
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-tlsprf.c20 * @label: A unique label for each purpose of the PRF
30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, argument
48 MD5_addr[1] = (unsigned char *) label;
49 MD5_len[1] = os_strlen(label);
55 SHA1_addr[1] = (unsigned char *) label;
56 SHA1_len[1] = os_strlen(label);
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-tlsprf.c20 * @label: A unique label for each purpose of the PRF
30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, argument
48 MD5_addr[1] = (unsigned char *) label;
49 MD5_len[1] = os_strlen(label);
55 SHA1_addr[1] = (unsigned char *) label;
56 SHA1_len[1] = os_strlen(label);
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DRubyTarget.java118 } else if ( formatName.equals( "label" ) ) {
119 return label( idString );
277 private String label( String value ) { method in class:RubyTarget.RubyRenderer
/external/bison/src/
H A Dgraphviz.c63 output_node (int id, char const *label, FILE *fout) argument
65 fprintf (fout, " %d [label=\"%s\"]\n", id, label);
69 output_edge (int source, int destination, char const *label, argument
73 if (label)
74 fprintf (fout, " label=%s", quote (label));
123 char *label = obstack_finish0 (out); local
124 fprintf (fout, "label=\"[%s]\", ", label);
[all...]
/external/chromium/chrome/browser/autofill/
H A Dautofill_common_test.cc18 void CreateTestFormField(const char* label, argument
23 *field = webkit_glue::FormField(ASCIIToUTF16(label), ASCIIToUTF16(name),
/external/chromium/chrome/browser/chromeos/login/
H A Dcaptcha_view.cc21 #include "views/controls/label.h"
166 Label* label = new views::Label( local
168 label->SetMultiLine(true);
169 layout->AddView(label);
186 label = new views::Label(UTF16ToWide(
188 label->SetMultiLine(true);
189 layout->AddView(label);
H A Dguest_user_view.cc20 const std::wstring& label)
21 : WideButton(button_listener, label),
18 UserEntryButton(views::ButtonListener* button_listener, UserController* user_controller, const std::wstring& label) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dglobal_menu_bar.cc200 std::string label = local
205 menu_item = gtk_check_menu_item_new_with_mnemonic(label.c_str());
207 menu_item = gtk_menu_item_new_with_mnemonic(label.c_str());
H A Dgtk_chrome_link_button.cc104 gtk_label_set_markup(GTK_LABEL(button->label),
121 GtkWidget* label = button->label; local
124 gtk_label_set_markup(GTK_LABEL(label), button->pressed_markup);
128 gtk_label_set_markup(GTK_LABEL(label),
135 gtk_container_propagate_expose(GTK_CONTAINER(widget), label, event); local
187 // We put a label in a button so we can connect to the click event. We don't
189 // them through to the label.
190 button->label = gtk_label_new(NULL);
200 gtk_container_add(GTK_CONTAINER(button), button->label);
[all...]
H A Dtheme_install_bubble_view_gtk.cc85 // Widgematically, the bubble is just a label in a popup window.
88 GtkWidget* label = gtk_label_new(NULL); local
93 gtk_label_set_markup(GTK_LABEL(label), markup);
96 gtk_widget_modify_fg(label, GTK_STATE_NORMAL, &gtk_util::kGdkWhite);
97 gtk_container_add(GTK_CONTAINER(widget_), label); local
99 // We need to show the label so we'll know the widget's actual size when we
101 gtk_widget_show_all(label);
/external/chromium/chrome/browser/ui/gtk/importer/
H A Dimport_progress_dialog_gtk.cc21 void SetItemImportStatus(GtkWidget* label, int res_id, bool is_done) { argument
29 gtk_label_set_text(GTK_LABEL(label), status.c_str());
/external/chromium/chrome/browser/ui/
H A Dinput_window_dialog_gtk.cc21 const std::string& label,
49 const std::string& label,
68 GtkWidget* label_widget = gtk_label_new(label.c_str());
139 const std::wstring& label,
144 WideToUTF8(label),
47 InputWindowDialogGtk(GtkWindow* parent, const std::string& window_title, const std::string& label, const std::string& contents, Delegate* delegate) argument
137 Create(gfx::NativeWindow parent, const std::wstring& window_title, const std::wstring& label, const std::wstring& contents, Delegate* delegate) argument
H A Dinput_window_dialog_win.cc11 #include "views/controls/label.h"
29 const std::wstring& label,
38 const std::wstring& label() const { return label_; } function in class:WinInputWindowDialog
187 views::Label* label = new views::Label(delegate_->label()); local
188 layout->AddView(label);
203 const std::wstring& label,
207 label_(label),
229 const std::wstring& label,
234 label,
201 WinInputWindowDialog(HWND parent, const std::wstring& window_title, const std::wstring& label, const std::wstring& contents, Delegate* delegate) argument
227 Create(HWND parent, const std::wstring& window_title, const std::wstring& label, const std::wstring& contents, Delegate* delegate) argument
[all...]
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_gtk.cc71 GtkWidget* label = gtk_label_new(UTF16ToUTF8(explanation).c_str()); local
72 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
73 gtk_box_pack_start(GTK_BOX(root_.get()), label, FALSE, FALSE, 0); local
/external/chromium/crypto/
H A Drsa_private_key_mac.cc29 CSSM_DATA label = { 9, local
33 CSSM_KEYATTR_RETURN_DATA | CSSM_KEYATTR_EXTRACTABLE, &label,
35 CSSM_KEYATTR_RETURN_DATA | CSSM_KEYATTR_EXTRACTABLE, &label, NULL,
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsslsocketfactory.h65 void SetLogging(LoggingSeverity level, const std::string& label, argument
68 logging_label_ = label;
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwAutofillManagerDelegate.java79 * @param label Label of the suggestion.
84 String name, String label, int uniqueId) {
85 array[index] = new AutofillSuggestion(name, label, uniqueId);
83 addToAutofillSuggestionArray(AutofillSuggestion[] array, int index, String name, String label, int uniqueId) argument
/external/chromium_org/ash/accelerators/
H A Dexit_warning_handler.cc20 #include "ui/views/controls/label.h"
67 views::Label* label = new ExitWarningLabel; local
68 label->SetText(text_);
69 label->SetHorizontalAlignment(gfx::ALIGN_CENTER);
70 label->SetFont(font_);
71 label->SetEnabledColor(kForegroundColor);
72 label->SetDisabledColor(kForegroundColor);
73 label->SetAutoColorReadabilityEnabled(false);
74 AddChildView(label);
/external/chromium_org/ash/system/chromeos/network/
H A Dtray_vpn.cc54 base::string16 label; local
56 GetNetworkStateHandlerImageAndLabel(&image, &label, &animating);
62 SetLabel(label);
63 SetAccessibleName(label);
73 base::string16* label,
82 if (label) {
83 *label = l10n_util::GetStringUTF16(
92 if (label) {
93 *label = network_icon::GetLabelForNetwork(
72 GetNetworkStateHandlerImageAndLabel(gfx::ImageSkia* image, base::string16* label, bool* animating) argument

Completed in 442 milliseconds

1234567891011>>