Home
last modified time | relevance | path

Searched refs:p_text (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/dports/ftp/vsftpd-ext/vsFTPd-3.0.3-ext.1/
H A Dutility.c16 die(const char* p_text) in die() argument
19 bug(p_text); in die()
41 bug(const char* p_text) in bug() argument
50 (void) vsf_sysutil_write_loop(VSFTP_COMMAND_FD, p_text, in bug()
51 vsf_sysutil_strlen(p_text)); in bug()
57 vsf_exit(const char* p_text) in vsf_exit() argument
59 (void) vsf_sysutil_write_loop(VSFTP_COMMAND_FD, p_text, in vsf_exit()
60 vsf_sysutil_strlen(p_text)); in vsf_exit()
65 vsf_print(const char* p_text) in vsf_print() argument
67 (void) vsf_sysutil_write_loop(VSFTP_COMMAND_FD, p_text, in vsf_print()
[all …]
H A Dftpcmdio.c27 const char* p_text, char sep);
52 ftp_write_text_common(p_sess, status, p_text, ' '); in vsf_cmdio_write()
57 const char* p_text) in vsf_cmdio_write_hyphen() argument
59 ftp_write_text_common(p_sess, status, p_text, '-'); in vsf_cmdio_write_hyphen()
63 vsf_cmdio_write_raw(struct vsf_session* p_sess, const char* p_text) in vsf_cmdio_write_raw() argument
67 str_alloc_text(&s_the_str, p_text); in vsf_cmdio_write_raw()
80 vsf_cmdio_write_raw_quiet(struct vsf_session* p_sess, const char* p_text) in vsf_cmdio_write_raw_quiet() argument
84 str_alloc_text(&s_the_str, p_text); in vsf_cmdio_write_raw_quiet()
102 vsf_cmdio_write(p_sess, status, p_text); in vsf_cmdio_write_exit()
109 const char* p_text, char sep) in ftp_write_text_common() argument
[all …]
H A Dftpcmdio.h23 const char* p_text);
35 const char* p_text);
46 void vsf_cmdio_write_raw(struct vsf_session* p_sess, const char* p_text);
57 void vsf_cmdio_write_raw_quiet(struct vsf_session* p_sess, const char* p_text);
65 const char* p_text, int exit_val);
H A Dutility.h13 void die(const char* p_text);
32 void bug(const char* p_text);
41 void vsf_exit(const char* p_text);
49 void vsf_print(const char* p_text);
/dports/databases/mantis/mantisbt-2.25.2/core/
H A Dmention_api.php56 * @param string $p_text The text to process.
60 function mention_get_candidates( $p_text ) { argument
61 if( is_blank( $p_text ) ) {
85 preg_match_all( $s_pattern, $p_text, $t_mentions );
95 * @param string $p_text The text to process.
98 function mention_get_users( $p_text ) { argument
103 $t_matches = mention_get_candidates( $p_text );
139 * @param string $p_text The text to process.
144 $t_mentioned_users = mention_get_users( $p_text );
146 return $p_text;
[all …]
/dports/databases/mantis/mantisbt-2.25.2/plugins/MantisCoreFormatting/core/
H A DMantisMarkdown.php76 * @param string $p_text The text to convert.
79 public static function convert_text( $p_text ) { argument
85 $p_text = str_replace( ">", ">", $p_text );
87 return self::$mantis_markdown->text( $p_text );
92 * @param string $p_text The text to convert.
95 public static function convert_line( $p_text ) { argument
97 return self::$mantis_markdown->line( $p_text );
291 * @param string $p_text Text block to process
294 private function processAmpersand( &$p_text ) { argument
295 $p_text = str_replace( '&', '&', $p_text );
/dports/ftp/vsftpd/vsftpd-3.0.5/
H A Dutility.c16 die(const char* p_text) in die() argument
19 bug(p_text); in die()
41 bug(const char* p_text) in bug() argument
50 (void) vsf_sysutil_write_loop(VSFTP_COMMAND_FD, p_text, in bug()
51 vsf_sysutil_strlen(p_text)); in bug()
57 vsf_exit(const char* p_text) in vsf_exit() argument
59 (void) vsf_sysutil_write_loop(VSFTP_COMMAND_FD, p_text, in vsf_exit()
60 vsf_sysutil_strlen(p_text)); in vsf_exit()
H A Dftpcmdio.c26 const char* p_text, char sep);
49 vsf_cmdio_write(struct vsf_session* p_sess, int status, const char* p_text) in vsf_cmdio_write() argument
51 ftp_write_text_common(p_sess, status, p_text, ' '); in vsf_cmdio_write()
56 const char* p_text) in vsf_cmdio_write_hyphen() argument
58 ftp_write_text_common(p_sess, status, p_text, '-'); in vsf_cmdio_write_hyphen()
62 vsf_cmdio_write_raw(struct vsf_session* p_sess, const char* p_text) in vsf_cmdio_write_raw() argument
66 str_alloc_text(&s_the_str, p_text); in vsf_cmdio_write_raw()
79 vsf_cmdio_write_exit(struct vsf_session* p_sess, int status, const char* p_text, in vsf_cmdio_write_exit() argument
88 vsf_cmdio_write(p_sess, status, p_text); in vsf_cmdio_write_exit()
95 const char* p_text, char sep) in ftp_write_text_common() argument
[all …]
/dports/lang/ocaml/ocaml-4.05.0/ocamldoc/
H A Dodoc_text.ml82 let rec p_text b t = function
95 | Bold t -> p b "{b " ; p_text b t ; p b "}"
96 | Italic t -> p b "{i " ; p_text b t ; p b "}"
99 | Left t -> p b "{L " ; p_text b t ; p b "}"
100 | Right t -> p b "{R " ; p_text b t ; p b "}"
104 | Block t -> p_text b t
112 p_text b t ;
117 p_text b t ;
147 | Some t -> p_text b t; p b "}"
159 p_text b t;
[all …]
/dports/lang/ocaml-nox11/ocaml-4.05.0/ocamldoc/
H A Dodoc_text.ml82 let rec p_text b t = function
95 | Bold t -> p b "{b " ; p_text b t ; p b "}"
96 | Italic t -> p b "{i " ; p_text b t ; p b "}"
99 | Left t -> p b "{L " ; p_text b t ; p b "}"
100 | Right t -> p b "{R " ; p_text b t ; p b "}"
104 | Block t -> p_text b t
112 p_text b t ;
117 p_text b t ;
147 | Some t -> p_text b t; p b "}"
159 p_text b t;
[all …]
/dports/math/gambit/gambit-16.0.1/library/include/gambit/
H A Dnumber.h38 Number(const std::string &p_text) in Number() argument
39 : m_text(p_text), m_rational(lexical_cast<Rational>(p_text)), in Number()
43 Number &operator=(const std::string &p_text)
47 m_rational = lexical_cast<Rational>(p_text);
48 m_text = p_text;
/dports/math/gambit/gambit-16.0.1/src/gui/
H A Defgdisplay.cc156 p_text.Right(p_text.Length() - 1).ToLong(&pl); in OnDropPlayer()
172 const wxString &p_text) in OnDropCopyNode() argument
175 p_text.Right(p_text.Length() - 1).ToLong(&n); in OnDropCopyNode()
186 const wxString &p_text) in OnDropMoveNode() argument
189 p_text.Right(p_text.Length() - 1).ToLong(&n); in OnDropMoveNode()
200 const wxString &p_text) in OnDropInfoset() argument
203 p_text.Right(p_text.Length() - 1).ToLong(&n); in OnDropInfoset()
219 const wxString &p_text) in OnDropSetOutcome() argument
222 p_text.Right(p_text.Length() - 1).ToLong(&n); in OnDropSetOutcome()
233 p_text.Right(p_text.Length() - 1).ToLong(&n); in OnDropMoveOutcome()
[all …]
/dports/audio/espeak/espeak-1.48.04-source/src/
H A Despeak.cpp391 char *p_text=NULL; local
718 p_text = argv[optind];
742 if(p_text != NULL)
745 size = strlen(p_text);
752 p_text = (char *)malloc(max);
759 p_text[max-1] = 0;
770 p_text[ix++] = fgetc(stdin);
774 p_text = (char *)realloc(p_text,max);
779 p_text[ix-1] = 0;
793 fread(p_text,1,filesize,f_text);
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/arib/
H A Dsubstext.h99 r->p_text = text_segment_New( p_region->psz_text ); in SubpictureTextUpdate()
107 r->p_text->style = text_style_Create( STYLE_NO_DEFAULTS ); in SubpictureTextUpdate()
108 … r->p_text->style->psz_fontname = p_region->psz_fontname ? strdup( p_region->psz_fontname ) : NULL; in SubpictureTextUpdate()
109 r->p_text->style->i_font_size = p_region->i_fontheight; in SubpictureTextUpdate()
110 r->p_text->style->i_font_color = p_region->i_font_color; in SubpictureTextUpdate()
111 r->p_text->style->i_features |= STYLE_HAS_FONT_COLOR; in SubpictureTextUpdate()
114 r->p_text->style->i_style_flags |= STYLE_HALFWIDTH; in SubpictureTextUpdate()
115 r->p_text->style->i_features |= STYLE_HAS_FLAGS; in SubpictureTextUpdate()
117 r->p_text->style->i_spacing = p_region->i_horint; in SubpictureTextUpdate()
/dports/mail/osbf-lua/osbf-lua-2.0.4/
H A Dosbf_bayes.c116 unsigned char *p_ini = p_text; in get_next_token()
122 while ((p_text < max_p) && in get_next_token()
123 (!isgraph ((int) *p_text) || strchr (delims, (int) *p_text))) in get_next_token()
124 p_text++; in get_next_token()
125 p_ini = p_text; in get_next_token()
130 while ((p_text < max_p) && isgraph ((int) *p_text) && in get_next_token()
132 p_text++; in get_next_token()
137 while ((p_text < max_p) && (p_text < (p_ini + max_token_size)) && in get_next_token()
138 isgraph ((int) *p_text) && !strchr (delims, (int) *p_text)) in get_next_token()
139 p_text++; in get_next_token()
[all …]
/dports/devel/godot/godot-3.2.3-stable/modules/mono/utils/
H A Dstring_utils.cpp40 int sfind(const String &p_text, int p_from) { in sfind() argument
45 int len = p_text.length(); in sfind()
50 const CharType *src = p_text.c_str(); in sfind()
86 String sformat(const String &p_text, const Variant &p1, const Variant &p2, const Variant &p3, const… in sformat() argument
87 if (p_text.length() < 2) in sformat()
88 return p_text; in sformat()
118 while ((result = sfind(p_text, search_from)) >= 0) { in sformat()
119 CharType c = p_text[result + 1]; in sformat()
123 new_string += p_text.substr(search_from, result - search_from); in sformat()
128 new_string += p_text.substr(search_from, p_text.length() - search_from); in sformat()
/dports/devel/godot-tools/godot-3.2.3-stable/modules/mono/utils/
H A Dstring_utils.cpp40 int sfind(const String &p_text, int p_from) { in sfind() argument
45 int len = p_text.length(); in sfind()
50 const CharType *src = p_text.c_str(); in sfind()
86 String sformat(const String &p_text, const Variant &p1, const Variant &p2, const Variant &p3, const… in sformat() argument
87 if (p_text.length() < 2) in sformat()
88 return p_text; in sformat()
118 while ((result = sfind(p_text, search_from)) >= 0) { in sformat()
119 CharType c = p_text[result + 1]; in sformat()
123 new_string += p_text.substr(search_from, result - search_from); in sformat()
128 new_string += p_text.substr(search_from, p_text.length() - search_from); in sformat()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/emulators/qemu/qemu-6.2.0/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/emulators/qemu60/qemu-6.0.0/roms/u-boot-sam460ex/board/ACube/menu/
H A Dmenu.c17 *p_text, in menu_draw_help() local
37 p_text = p_break = p_start = buffer; in menu_draw_help()
42 if (*p_text == ' ' && in_word == true) in menu_draw_help()
45 p_break = p_text; in menu_draw_help()
47 else if (*p_text != ' ') in menu_draw_help()
51 if ((p_text - p_start >= 72) || *p_text == 0) // flush in menu_draw_help()
53 if (*p_text == '\0') p_break = p_text; in menu_draw_help()
56 if (*p_text == '\0') return; in menu_draw_help()
58 while (p_break < p_text && *p_break == ' ') in menu_draw_help()
65 else p_text++; in menu_draw_help()
/dports/audio/praat/praat-6.2.03/melder/
H A Dmelder_kar.h103 inline void Melder_skipHorizontalSpace (char32 **p_text) {
104 while (Melder_isHorizontalSpace (**p_text)) (*p_text) ++;
135 inline void Melder_skipHorizontalOrVerticalSpace (char32 **p_text) {
136 while (Melder_isHorizontalOrVerticalSpace (**p_text)) (*p_text) ++;
138 inline void Melder_skipHorizontalOrVerticalSpace (const char32 **p_text) {
139 while (Melder_isHorizontalOrVerticalSpace (**p_text)) (*p_text) ++;
157 inline void Melder_skipToEndOfLine (char32 **p_text) {
158 while (Melder_staysWithinLine (**p_text)) (*p_text) ++;

12345678910>>...25