Home
last modified time | relevance | path

Searched refs:n_text (Results 1 – 25 of 136) sorted by relevance

123456

/dports/math/reduce/Reduce-svn5758-src/csl/cslbase/
H A Ddoxtract.cpp571 static int n_text; variable
577 n_text = 0; in C_until_comment_end()
578 text[n_text] = 0; in C_until_comment_end()
591 if (n_text>=2 && std::strcmp(&text[n_text-2], "*/") == 0) in C_until_comment_end()
593 while (n_text>= 1 && text[n_text-1]==' ') n_text--; in C_until_comment_end()
596 else if (n_text>=4 && std::strcmp(&text[n_text-4], "\n *\n") == 0 || in C_until_comment_end()
597 n_text>=4 && std::strcmp(&text[n_text-4], "\n * ") == 0 || in C_until_comment_end()
598 n_text==3 && std::strcmp(&text[n_text-3], " *\n") == 0 || in C_until_comment_end()
599 n_text==3 && std::strcmp(&text[n_text-3], " * ") == 0) in C_until_comment_end()
760 n_text = 0; in lisp_until_comment_end()
[all …]
/dports/graphics/gimageview/gimageview-0.2.27/plugins/image_saver/
H A Dpng_saver.c60 gint *n_text) in create_png_text() argument
65 g_return_val_if_fail (n_text, NULL); in create_png_text()
67 *n_text = gimv_image_saver_get_n_comments (saver) + 2; in create_png_text()
69 text = g_new0 (png_text, *n_text); in create_png_text()
78 for (i = 2; i < *n_text; i++) { in create_png_text()
86 *n_text = i; in create_png_text()
109 gint i, n_text; in save_png() local
155 text = create_png_text (saver, filename, &n_text); in save_png()
157 png_set_text (png_ptr, info_ptr, text, n_text); in save_png()
/dports/devel/libnotify/libnotify-0.7.9/tools/
H A Dnotify-send.c132 static char **n_text = NULL; in main() local
167 &n_text, NULL, in main()
200 if (n_text != NULL && n_text[0] != NULL && *n_text[0] != '\0') in main()
201 summary = n_text[0]; in main()
208 if (n_text[1] != NULL) { in main()
209 body = g_strcompress (n_text[1]); in main()
211 if (n_text[2] != NULL) { in main()
/dports/archivers/arj/arj-3.10.22/
H A Dfardata.c359 char *n_text, *t_text; in flush_cbuf() local
367 n_text=t_text=text; in flush_cbuf()
381 fprintf(new_stdout, strform, n_text); in flush_cbuf()
384 printf(strform, n_text); in flush_cbuf()
390 scr_out(n_text); in flush_cbuf()
401 printf(strform, n_text); in flush_cbuf()
404 n_text=t_text+1; in flush_cbuf()
429 fprintf(new_stdout, strform, n_text); in flush_cbuf()
431 printf(strform, n_text); in flush_cbuf()
434 scr_out(n_text); in flush_cbuf()
[all …]
/dports/graphics/libspng/libspng-0.7.2/examples/
H A Dexample.c214 uint32_t n_text = 0; in main() local
217 ret = spng_get_text(ctx, NULL, &n_text); in main()
231 text = malloc(n_text * sizeof(struct spng_text)); in main()
235 ret = spng_get_text(ctx, text, &n_text); in main()
244 for(i=0; i < n_text; i++) in main()
/dports/graphics/dia/dia-0.97.3/plug-ins/python/
H A Dotypes.py98 n_text = 0
114 elif p in text_props : n_text = n_text + 1
130 if n_text == len(text_props) :
/dports/graphics/libspng/libspng-0.7.2/tests/
H A Dspng_read_fuzzer.c66 uint32_t n_text = 4, n_splt = 4, n_chunks = 4; in LLVMFuzzerTestOneInput() local
113 if(!spng_get_text(ctx, text, &n_text)) in LLVMFuzzerTestOneInput()
115 spng_get_text(ctx, NULL, &n_text); in LLVMFuzzerTestOneInput()
118 for(i=0; i < n_text; i++) in LLVMFuzzerTestOneInput()
H A Dtestsuite.c405 if(!spng_get_text(ctx, NULL, &spng->n_text)) spng->have.text = 1; in get_chunks()
417 spng->text = malloc(spng->n_text * sizeof(struct spng_text)); in get_chunks()
421 spng_get_text(ctx, spng->text, &spng->n_text); in get_chunks()
471 if(spng->have.text) spng_set_text(dst, spng->text, spng->n_text); in set_chunks()
517 png.n_text = png_get_text(png_ptr, info_ptr, &png_text, NULL); in compare_chunks()
518 if(png.n_text) png.have.text = 1; in compare_chunks()
750 if(spng.n_text != png.n_text) in compare_chunks()
752 printf("text chunk count mismatch: %u(spng), %d(libpng)\n", spng.n_text, png.n_text); in compare_chunks()
758 for(i=0; i < spng.n_text; i++) in compare_chunks()
H A Dspngt_common.h37 uint32_t n_text, n_splt, n_plte_entries, n_unknown_chunks; member
/dports/graphics/libspng/libspng-0.7.2/docs/
H A Dchunk.md99 int spng_get_text(spng_ctx *ctx, struct spng_text *text, uint32_t *n_text)
104 `n_text` should be greater than or equal to the number of stored text chunks.
106 If `text` is NULL and `n_text` is non-NULL then `n_text` is set to the number
288 int spng_set_text(spng_ctx *ctx, struct spng_text *text, uint32_t n_text)
293 `text` should point to an `spng_text` array of `n_text` elements.
/dports/databases/spatialite/libspatialite-5.0.1/src/spatialite/
H A Dvirtualgeojson.c202 col->n_text = 0; in geojson_create_column()
211 col->n_text = 1; in geojson_create_column()
432 col->n_text += 1; in geojson_add_column()
1657 if (col->n_text > 0 && col->n_int == 0 && col->n_double == 0 in geojson_sql_create_virtual_table()
1660 if (col->n_text == 0 && col->n_int > 0 && col->n_double == 0 in geojson_sql_create_virtual_table()
1663 if (col->n_text == 0 && (col->n_int > 0 && col->n_bool > 0) in geojson_sql_create_virtual_table()
1666 if (col->n_text == 0 && col->n_int == 0 && col->n_double > 0 in geojson_sql_create_virtual_table()
1676 if (col->n_text > 0 && col->n_int == 0 && col->n_double == 0 in geojson_sql_create_virtual_table()
1682 if (col->n_text == 0 && (col->n_int > 0 && col->n_bool > 0) in geojson_sql_create_virtual_table()
1746 if (col->n_text == 0 && (col->n_int > 0 && col->n_bool > 0) in geojson_sql_create_table()
[all …]
/dports/java/java-subversion/subversion-1.14.1/subversion/svn/
H A Dnotify.c156 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__conflict_stats_get_paths() local
162 if (n_text == 0 && n_prop == 0 && n_tree == 0) in svn_cl__conflict_stats_get_paths()
168 if (n_text > 0) in svn_cl__conflict_stats_get_paths()
223 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__print_conflict_stats() local
230 if (n_text > 0 || n_text_r > 0 in svn_cl__print_conflict_stats()
239 if (n_text > 0) in svn_cl__print_conflict_stats()
242 n_text)); in svn_cl__print_conflict_stats()
254 if (n_text > 0 || n_text_r > 0) in svn_cl__print_conflict_stats()
257 remaining_str(scratch_pool, n_text), in svn_cl__print_conflict_stats()
/dports/devel/py-subversion/subversion-1.14.1/subversion/svn/
H A Dnotify.c156 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__conflict_stats_get_paths() local
162 if (n_text == 0 && n_prop == 0 && n_tree == 0) in svn_cl__conflict_stats_get_paths()
168 if (n_text > 0) in svn_cl__conflict_stats_get_paths()
223 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__print_conflict_stats() local
230 if (n_text > 0 || n_text_r > 0 in svn_cl__print_conflict_stats()
239 if (n_text > 0) in svn_cl__print_conflict_stats()
242 n_text)); in svn_cl__print_conflict_stats()
254 if (n_text > 0 || n_text_r > 0) in svn_cl__print_conflict_stats()
257 remaining_str(scratch_pool, n_text), in svn_cl__print_conflict_stats()
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/svn/
H A Dnotify.c156 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__conflict_stats_get_paths() local
162 if (n_text == 0 && n_prop == 0 && n_tree == 0) in svn_cl__conflict_stats_get_paths()
168 if (n_text > 0) in svn_cl__conflict_stats_get_paths()
223 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__print_conflict_stats() local
230 if (n_text > 0 || n_text_r > 0 in svn_cl__print_conflict_stats()
239 if (n_text > 0) in svn_cl__print_conflict_stats()
242 n_text)); in svn_cl__print_conflict_stats()
254 if (n_text > 0 || n_text_r > 0) in svn_cl__print_conflict_stats()
257 remaining_str(scratch_pool, n_text), in svn_cl__print_conflict_stats()
/dports/devel/p5-subversion/subversion-1.14.1/subversion/svn/
H A Dnotify.c156 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__conflict_stats_get_paths() local
162 if (n_text == 0 && n_prop == 0 && n_tree == 0) in svn_cl__conflict_stats_get_paths()
168 if (n_text > 0) in svn_cl__conflict_stats_get_paths()
223 int n_text = apr_hash_count(conflict_stats->text_conflicts); in svn_cl__print_conflict_stats() local
230 if (n_text > 0 || n_text_r > 0 in svn_cl__print_conflict_stats()
239 if (n_text > 0) in svn_cl__print_conflict_stats()
242 n_text)); in svn_cl__print_conflict_stats()
254 if (n_text > 0 || n_text_r > 0) in svn_cl__print_conflict_stats()
257 remaining_str(scratch_pool, n_text), in svn_cl__print_conflict_stats()
/dports/graphics/gimageview/gimageview-0.2.27/plugins/image_loader/
H A Dpng_loader.c238 gint n_text = 0; in gimv_png_load() local
296 png_get_text (png_ptr, png_info, &text, &n_text); in gimv_png_load()
297 for (i = 0; i < n_text; i++) { in gimv_png_load()
/dports/graphics/vips/vips-8.12.0/libvips/foreign/
H A Dspngload.c215 guint32 n_text; in vips_foreign_load_png_set_header() local
254 if( !spng_get_text( png->ctx, NULL, &n_text ) ) { in vips_foreign_load_png_set_header()
261 if( !png->unlimited && n_text > MAX_PNG_TEXT_CHUNKS ) { in vips_foreign_load_png_set_header()
268 n_text, struct spng_text ); in vips_foreign_load_png_set_header()
269 if( !spng_get_text( png->ctx, text, &n_text ) ) { in vips_foreign_load_png_set_header()
272 for( i = 0; i < n_text; i++ ) in vips_foreign_load_png_set_header()
/dports/archivers/arj/debian/patches/
H A Dsecurity_format.patch31 fprintf(new_stdout, strform, n_text);
35 printf(strform, n_text);
51 printf(strform, n_text);
55 n_text=t_text+1;
/dports/multimedia/mencoder/mplayer-export-2021-12-29/libmpdemux/
H A Ddemux_ogg.c158 int n_text; member
382 return (index < 0) ? index : (index >= ogg_d->n_text) ? -1 : ogg_d->text_ids[index]; in demux_ogg_sub_id()
394 for (i = 0; i < ogg_d->n_text; i++) in demux_ogg_sub_reverse_id()
1114 ogg_d->num_sub, ogg_d->n_text); in demux_ogg_open()
1117 ogg_d->subs[ogg_d->num_sub].id = ogg_d->n_text; in demux_ogg_open()
1118 new_sh_sub(demuxer, ogg_d->n_text, NULL); in demux_ogg_open()
1119 ogg_d->n_text++; in demux_ogg_open()
1121 ogg_d->text_ids[ogg_d->n_text - 1] = ogg_d->num_sub; in demux_ogg_open()
1123 ogg_d->text_langs[ogg_d->n_text - 1] = NULL; in demux_ogg_open()
1201 ogg_d->n_text, ogg_d->n_text > 1 ? "s" : ""); in demux_ogg_open()
[all …]
/dports/multimedia/mplayer/mplayer-export-2021-12-29/libmpdemux/
H A Ddemux_ogg.c158 int n_text; member
382 return (index < 0) ? index : (index >= ogg_d->n_text) ? -1 : ogg_d->text_ids[index]; in demux_ogg_sub_id()
394 for (i = 0; i < ogg_d->n_text; i++) in demux_ogg_sub_reverse_id()
1114 ogg_d->num_sub, ogg_d->n_text); in demux_ogg_open()
1117 ogg_d->subs[ogg_d->num_sub].id = ogg_d->n_text; in demux_ogg_open()
1118 new_sh_sub(demuxer, ogg_d->n_text, NULL); in demux_ogg_open()
1119 ogg_d->n_text++; in demux_ogg_open()
1121 ogg_d->text_ids[ogg_d->n_text - 1] = ogg_d->num_sub; in demux_ogg_open()
1123 ogg_d->text_langs[ogg_d->n_text - 1] = NULL; in demux_ogg_open()
1201 ogg_d->n_text, ogg_d->n_text > 1 ? "s" : ""); in demux_ogg_open()
[all …]
/dports/math/gretl/gretl-2021d/gui/
H A Dclipboard.c86 static int n_text = G_N_ELEMENTS(text_targets);
234 n_targs = n_text; in gretl_clipboard_set()
/dports/devel/R-cran-rlang/rlang/R/
H A Dtrace.R346 n_text <- sprintf(" with %d more %s", n, call_text) functionVar
347 n_text <- silver(n_text)
349 n_text <- ""
352 paste0(what, n_text)
/dports/audio/espeak/espeak-1.48.04-source/platforms/windows/windows_sapi/
H A Dttsengobj.h98 …ragList(const SPVTEXTFRAG* pTextFragList, wchar_t *pW, ISpTTSEngineSite* pOutputSite, int *n_text);
H A Dttsengobj.cpp513 …st(const SPVTEXTFRAG* pTextFragList, wchar_t *pW_start, ISpTTSEngineSite* pOutputSite, int *n_text) in ProcessFragList() argument
570 …if((pW != NULL) && (*n_text == 1) && ((len == 1) || ((len==2) && (pTextFragList->pTextStart[1]==' … in ProcessFragList()
729 *n_text = frag_count; in ProcessFragList()
/dports/databases/spatialite/libspatialite-5.0.1/src/headers/spatialite/
H A Dgeojson.h238 int n_text; member

123456