Home
last modified time | relevance | path

Searched refs:cp_text (Results 1 – 4 of 4) sorted by relevance

/dports/comms/direwolf/direwolf-1.6/src/
H A Dax25_pad.c2335 char cp_text[120]; in ax25_hex_dump() local
2341 ctrl_to_text (c, cp_text, sizeof(cp_text)); // TODO: use ax25_frame_type() instead. in ax25_hex_dump()
2350 strlcat (cp_text, ", ", sizeof(cp_text)); in ax25_hex_dump()
2351 strlcat (cp_text, pid_text, sizeof(cp_text)); in ax25_hex_dump()
2356 strlcat (cp_text, l_text, sizeof(cp_text)); in ax25_hex_dump()
2358 dw_printf ("%s\n", cp_text); in ax25_hex_dump()
/dports/editors/vim/vim-8.2.3745/src/
H A Dinsexpand.c108 char_u *(cp_text[CPT_COUNT]); // text for the menu member
670 match->cp_text[i] = vim_strsave(cptext[i]); in ins_compl_add()
978 dict_add_string(dict, "abbr", match->cp_text[CPT_ABBR]); in ins_compl_dict_alloc()
979 dict_add_string(dict, "menu", match->cp_text[CPT_MENU]); in ins_compl_dict_alloc()
980 dict_add_string(dict, "kind", match->cp_text[CPT_KIND]); in ins_compl_dict_alloc()
1099 if (compl->cp_text[CPT_ABBR] != NULL) in ins_compl_show_pum()
1101 compl->cp_text[CPT_ABBR]; in ins_compl_show_pum()
1106 if (compl->cp_text[CPT_MENU] != NULL) in ins_compl_show_pum()
1108 compl->cp_text[CPT_MENU]; in ins_compl_show_pum()
1143 == compl_shown_match->cp_text[CPT_ABBR]) in ins_compl_show_pum()
[all …]
/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dedit.c149 char_u *(cp_text[CPT_COUNT]); // text for the menu member
2422 match->cp_text[i] = (cptext_allocated in ins_compl_add()
2822 if (compl->cp_text[CPT_ABBR] != NULL) { in ins_compl_show_pum()
2824 compl->cp_text[CPT_ABBR]; in ins_compl_show_pum()
2828 compl_match_array[i].pum_kind = compl->cp_text[CPT_KIND]; in ins_compl_show_pum()
2829 compl_match_array[i].pum_info = compl->cp_text[CPT_INFO]; in ins_compl_show_pum()
2830 if (compl->cp_text[CPT_MENU] != NULL) { in ins_compl_show_pum()
2832 compl->cp_text[CPT_MENU]; in ins_compl_show_pum()
2865 == compl_shown_match->cp_text[CPT_ABBR]) { in ins_compl_show_pum()
3159 xfree(match->cp_text[i]); in ins_compl_free()
[all …]
/dports/math/galculator/galculator-2.1.4/src/
H A Dcallbacks.c606 char *cp_text; in on_paste_activate() local
609 cp_text = gtk_clipboard_wait_for_text (gtk_clipboard_get (GDK_SELECTION_CLIPBOARD)); in on_paste_activate()
610 if (cp_text) { in on_paste_activate()
615 display_result_feed (cp_text, current_status.number); in on_paste_activate()
617 g_free (cp_text); in on_paste_activate()