Home
last modified time | relevance | path

Searched refs:chartable (Results 1 – 25 of 273) sorted by relevance

1234567891011

/dports/deskutils/gucharmap/gucharmap-3efb47b75b61d7c6db7e48d72f7aa8c4d4365011/gucharmap/
H A Dgucharmap-chartable.c183 widget = GTK_WIDGET (chartable); in gucharmap_chartable_set_font_desc_internal()
797 make_zoom_window (chartable); in gucharmap_chartable_show_zoom()
798 update_zoom_window (chartable); in gucharmap_chartable_show_zoom()
810 destroy_zoom_window (chartable); in gucharmap_chartable_hide_zoom()
1344 draw_borders (chartable, cr); in gucharmap_chartable_draw()
1828 if (!chartable) in gucharmap_chartable_paste_received_cb()
1856 *data = chartable; in gucharmap_chartable_paste_clipboard()
2331 priv = chartable->priv; in gucharmap_chartable_set_zoom_enabled()
2337 object = G_OBJECT (chartable); in gucharmap_chartable_set_zoom_enabled()
2378 priv = chartable->priv; in gucharmap_chartable_set_font_desc()
[all …]
H A Dgucharmap-chartable.h57 void (* set_scroll_adjustments) (GucharmapChartable *chartable,
60 gboolean (* move_cursor) (GucharmapChartable *chartable,
63 void (* activate) (GucharmapChartable *chartable);
64 void (* copy_clipboard) (GucharmapChartable *chartable);
65 void (* paste_clipboard) (GucharmapChartable *chartable);
67 void (* set_active_char) (GucharmapChartable *chartable, guint ch);
76 void gucharmap_chartable_set_font_desc (GucharmapChartable *chartable,
81 void gucharmap_chartable_set_font_fallback (GucharmapChartable *chartable,
91 void gucharmap_chartable_set_zoom_enabled (GucharmapChartable *chartable,
96 void gucharmap_chartable_set_snap_pow2 (GucharmapChartable *chartable,
[all …]
H A Dgucharmap-chartable-accessible.c102 GucharmapChartable *chartable; in gucharmap_chartable_accessible_ref_child() local
159 GucharmapChartable *chartable; in gucharmap_chartable_accessible_ref_at() local
187 GucharmapChartable *chartable; in gucharmap_chartable_accessible_ref_accessible_at_point() local
315 GucharmapChartable *chartable; in gucharmap_chartable_accessible_update_all_cells() local
432 g_object_get (chartable, in sync_adjustment()
453 GucharmapChartable *chartable; in gucharmap_chartable_accessible_initialize() local
567 GucharmapChartable *chartable; in gucharmap_chartable_accessible_get_n_columns() local
602 GucharmapChartable *chartable; in gucharmap_chartable_accessible_get_n_rows() local
642 GucharmapChartable *chartable; in gucharmap_chartable_accessible_get_index_at() local
662 GucharmapChartable *chartable; in gucharmap_chartable_accessible_get_column_at_index() local
[all …]
H A Dgucharmap-chartable-cell-accessible.c86 GucharmapChartable *chartable; in gucharmap_chartable_cell_accessible_get_extents() local
98 chartable = GUCHARMAP_CHARTABLE (cell->widget); in gucharmap_chartable_cell_accessible_get_extents()
99 chartable_priv = chartable->priv; in gucharmap_chartable_cell_accessible_get_extents()
109 *y = real_y + _gucharmap_chartable_y_offset (chartable, row); in gucharmap_chartable_cell_accessible_get_extents()
111 *height = _gucharmap_chartable_row_height (chartable, row); in gucharmap_chartable_cell_accessible_get_extents()
125 GucharmapChartable *chartable; in gucharmap_chartable_cell_accessible_grab_focus() local
127 chartable = GUCHARMAP_CHARTABLE (cell->widget); in gucharmap_chartable_cell_accessible_grab_focus()
129 gucharmap_chartable_set_active_character (chartable, cell->index); in gucharmap_chartable_cell_accessible_grab_focus()
146 GucharmapChartable *chartable; in idle_do_action() local
150 chartable = GUCHARMAP_CHARTABLE (cell->widget); in idle_do_action()
[all …]
H A Dgucharmap-private.h85 gint _gucharmap_chartable_cell_column (GucharmapChartable *chartable,
87 gint _gucharmap_chartable_column_width (GucharmapChartable *chartable,
89 gint _gucharmap_chartable_x_offset (GucharmapChartable *chartable,
91 gint _gucharmap_chartable_row_height (GucharmapChartable *chartable,
93 gint _gucharmap_chartable_y_offset (GucharmapChartable *chartable,
95 void _gucharmap_chartable_redraw (GucharmapChartable *chartable,
H A Dgucharmap-charmap.c38 GucharmapChartable *chartable; member
1149 chartable_sync_font_desc (GucharmapChartable *chartable, in chartable_sync_font_desc() argument
1449 chartable = gucharmap_chartable_new (); in gucharmap_charmap_init()
1450 priv->chartable = GUCHARMAP_CHARTABLE (chartable); in gucharmap_charmap_init()
1452 g_signal_connect_swapped (chartable, "status-message", in gucharmap_charmap_init()
1454 g_signal_connect (chartable, "notify::active-character", in gucharmap_charmap_init()
1456 g_signal_connect (chartable, "notify::font-desc", in gucharmap_charmap_init()
1458 g_signal_connect (chartable, "notify::codepoint-list", in gucharmap_charmap_init()
1460 g_signal_connect (chartable, "notify::snap-pow2", in gucharmap_charmap_init()
1464 gtk_widget_show (chartable); in gucharmap_charmap_init()
[all …]
H A Dmeson.build54 'gucharmap-chartable.h',
92 'gucharmap-chartable-accessible.c',
93 'gucharmap-chartable-accessible.h',
94 'gucharmap-chartable-cell-accessible.c',
95 'gucharmap-chartable-cell-accessible.h',
96 'gucharmap-chartable.c',
97 'gucharmap-chartable.h',
/dports/editors/gedit-plugins/gedit-plugins-40.1/plugins/charmap/charmap/
H A D__init__.py80 chartable = self.panel.get_chartable()
81 chartable.set_font_desc(font_desc)
85 chartable = self.panel.get_chartable()
97 def on_table_sync_active_char(self, chartable, pspec): argument
98 uc = chartable.get_active_character()
101 self.on_table_status_message(chartable, text)
103 def on_table_focus_out_event(self, chartable, event): argument
104 self.on_table_status_message (chartable, None)
108 def on_table_status_message(self, chartable, message): argument
116 def on_table_activate(self, chartable): argument
[all …]
H A Dpanel.py48 self.chartable = Gucharmap.Chartable()
50 scrolled_window.add(self.chartable)
64 self.chartable.set_codepoint_list(codepoint_list)
67 return self.chartable
/dports/devel/gtranslator/gtranslator-40.0/plugins/charmap/charmap/
H A D__init__.py66 chartable = self.panel.get_chartable()
67 chartable.set_font_desc(font_desc)
71 chartable = self.panel.get_chartable()
83 def on_table_sync_active_char(self, chartable, pspec): argument
84 uc = chartable.get_active_character()
99 self.on_table_status_message(chartable, text)
101 def on_table_focus_out_event(self, chartable, event): argument
102 self.on_table_status_message (chartable, None)
106 def on_table_status_message(self, chartable, message): argument
114 def on_table_activate(self, chartable): argument
[all …]
H A Dpanel.py49 self.chartable = Gucharmap.Chartable()
51 scrolled_window.add(self.chartable)
63 self.chartable.set_codepoint_list(codepoint_list)
66 return self.chartable
/dports/security/ccrypt/ccrypt-1.11/src/
H A Dccguess.c324 s[index[i]] = chartable[0]; in tryall()
503 char *chartable; member
517 cmd.chartable = NULL; in read_commandline()
557 cmd.chartable = NULL; in read_commandline()
560 cmd.chartable = optarg; in read_commandline()
599 char *chartable; in main() local
606 if (cmd.chartable) { in main()
610 bytes[((int)cmd.chartable[i]) & 0xff] = cmd.chartable[i]; in main()
618 chartable = bytes; in main()
624 chartable = bytes; in main()
[all …]
/dports/textproc/yodl/yodl-5fa97b175c85581d01329013cfdb4239f019b023/yodl/src/chartab/
H A Dctconstruct.c7 char **chartable = new_memory(256, sizeof(char *)); in ct_construct() local
13 chartable[idx] = new_str(std_char); in ct_construct()
16 ct_parse_table(chartable, table); in ct_construct()
18 return chartable; in ct_construct()
/dports/print/pdftk/pdftk-7d2ac3c1fa858f2c247c809fc6ef43f71f241098/java/com/gitlab/pdftk_java/com/lowagie/text/pdf/
H A DPangoArabicShapping.java76 r = chartable.length - 1; in charshape()
79 if (s == chartable[m][0]) { in charshape()
80 return chartable[m][which + 1]; in charshape()
82 else if (s < chartable[m][0]) { in charshape()
97 r = chartable.length - 1; in shapecount()
100 if (s == chartable[m][0]) { in shapecount()
101 return chartable[m].length - 1; in shapecount()
103 else if (s < chartable[m][0]) { in shapecount()
555 private static final char chartable[][] = { field in PangoArabicShapping
H A DArabicLigaturizer.java72 r = chartable.length - 1; in charshape()
75 if (s == chartable[m][0]) { in charshape()
76 return chartable[m][which + 1]; in charshape()
78 else if (s < chartable[m][0]) { in charshape()
95 r = chartable.length - 1; in shapecount()
98 if (s == chartable[m][0]) { in shapecount()
99 return chartable[m].length - 1; in shapecount()
101 else if (s < chartable[m][0]) { in shapecount()
630 private static final char chartable[][] = { field in ArabicLigaturizer
/dports/devel/m17n-docs/m17n-docs-1.5.5/usr/latex/
H A Dgroup__m17nChartable.tex13 \begin{CompactList}\small\item\em Create a new chartable. \item\end{CompactList}\item
19 \begin{CompactList}\small\item\em Return the assigned value of a character in a chartable. \item\en…
21 \begin{CompactList}\small\item\em Assign a value to a character in a chartable. \item\end{CompactLi…
27 \begin{CompactList}\small\item\em Call a function for characters in a chartable. \item\end{CompactL…
40 …lled {\em Chartable\/}. Although a chartable object is not a simple array, application programs ca…
42 A chartable is a managed object.
60 Create a new chartable.
85 Return the assigned value of a character in a chartable.
98 Assign a value to a character in a chartable.
100 …423d8846c765d4fe94acd0} function sets the value of character {\bf c} in chartable {\bf table} to {…
[all …]
/dports/www/vimb/vimb-3.6.0/src/
H A Dascii.h37 static const unsigned char chartable[256] = { variable
63 #define VB_IS_UPPER(c) ((chartable[(unsigned char)c] & VB_UPPER) != 0)
64 #define VB_IS_LOWER(c) ((chartable[(unsigned char)c] & VB_LOWER) != 0)
65 #define VB_IS_DIGIT(c) ((chartable[(unsigned char)c] & VB_DIGIT) != 0)
66 #define VB_IS_PUNKT(c) ((chartable[(unsigned char)c] & VB_PUNKT) != 0)
67 #define VB_IS_SPACE(c) ((chartable[(unsigned char)c] & VB_SPACE) != 0)
68 #define VB_IS_CTRL(c) ((chartable[(unsigned char)c] & VB_CTRL) != 0)
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/pdf/
H A DArabicLigaturizer.java69 r = chartable.length - 1; in charshape()
72 if (s == chartable[m][0]) { in charshape()
73 return chartable[m][which + 1]; in charshape()
75 else if (s < chartable[m][0]) { in charshape()
92 r = chartable.length - 1; in shapecount()
95 if (s == chartable[m][0]) { in shapecount()
96 return chartable[m].length - 1; in shapecount()
98 else if (s < chartable[m][0]) { in shapecount()
627 private static final char chartable[][] = { field in ArabicLigaturizer
/dports/print/dvisvg/dvisvg-0.7.1/
H A Ddvitfm.c102 BYTE *chartable[256]; variable
108 chartable[pp] == NULL; in dvitfminit()
131 chartable[k] = (BYTE *) malloc(sizeof(BYTE)*(hdr.ec-hdr.bc+1)); in dvitfm()
133 tfmmetr(in, chartable[k], metricstable[k], log_out); in dvitfm()
142 if(chartable[pp] != NULL) { in dvitfmfree()
144 free(chartable[pp]); in dvitfmfree()
/dports/irc/inspircd/inspircd-3.11.0/src/modules/
H A Dm_nationalchars.cpp385 int loadtable(std::ifstream& ifs , unsigned char* chartable, unsigned int maxindex) in loadtable() argument
402 memcpy(chartable, buf.c_str() + 1, i); in loadtable()
421 chartable[i] = symtoi(p + 2, 16); in loadtable()
423 chartable[i] = symtoi(p + 1, 8); in loadtable()
428 chartable[i] = symtoi(p + 1, 16); in loadtable()
432 chartable[i] = symtoi(p, 10); in loadtable()
439 chartable[i] = *(p + 2); in loadtable()
443 chartable[i] = *(p + 1); in loadtable()
/dports/lang/nx/nsf2.3.0/generic/
H A DnsfUtil.c164 static unsigned char chartable[255] = {0}; variable
173 newch = *(alphabet + chartable[(unsigned)*currentChar]); in NsfStringIncr()
184 newch = *(alphabet + chartable[(unsigned)*currentChar]); in NsfStringIncr()
245 chartable[(int)*p] = (unsigned char)(++i); in NsfStringIncrInit()
/dports/x11/mate-applets/mate-applets-1.26.0/charpick/
H A Dproperties.c116 GList *list = curr_data->chartable; in add_palette_cb()
139 if (curr_data->chartable == NULL) { in add_palette_cb()
140 curr_data->chartable = list; in add_palette_cb()
142 curr_data->charlist = g_strdup (curr_data->chartable->data); in add_palette_cb()
202 list = g_list_find (curr_data->chartable, charlist); in edit_palette_cb()
299 curr_data->chartable = g_list_remove (curr_data->chartable, charlist); in delete_palette()
303 curr_data->charlist = curr_data->chartable != NULL ? in delete_palette()
304 g_strdup (curr_data->chartable->data) : g_strdup (""); in delete_palette()
353 GList *list = curr_data->chartable; in create_palettes_tree()
H A Dcharpick.c90 static const gunichar * const chartable[] = { variable
296 GList *list = curr_data->chartable; in populate_menu()
410 if (g_list_length (p_curr_data->chartable) != 1) in build_table()
667 curr_data->chartable); in save_chartable()
678 curr_data->chartable = value; in get_chartable()
681 n = G_N_ELEMENTS (chartable); in get_chartable()
685 string = g_ucs4_to_utf8 (chartable[i], -1, NULL, NULL, NULL); in get_chartable()
686 curr_data->chartable = g_list_append (curr_data->chartable, string); in get_chartable()
756 curr_data->charlist = g_strdup (curr_data->chartable->data); in charpicker_applet_fill()
/dports/devel/p5-File-Tail-Scribe/File-Tail-Scribe-0.13/t/
H A Dscribe.t180 my @chartable = ( 'A' .. 'Z' );
184 push(@lines, join('', map { $chartable[int(rand(scalar @chartable))] } ( 0 .. int(rand(1000)) )));
/dports/devel/p5-File-Tail-Dir/File-Tail-Dir-0.14/t/
H A Dtail.t76 my @chartable = ( 'A' .. 'Z' );
84 … push(@lines, join('', map { $chartable[int(rand(scalar @chartable))] } ( 0 .. int(rand(1000)) )));

1234567891011