Home
last modified time | relevance | path

Searched refs:p_error (Results 1 – 25 of 769) sorted by relevance

12345678910>>...31

/dports/multimedia/transcode/transcode-1.1.7/pvm3/
H A Dpvm_interface.c59 const char *p_error; in f_init_pvm_func() local
76 fputs(p_error, stderr); in f_init_pvm_func()
82 fputs(p_error, stderr); in f_init_pvm_func()
88 fputs(p_error, stderr); in f_init_pvm_func()
94 fputs(p_error, stderr); in f_init_pvm_func()
100 fputs(p_error, stderr); in f_init_pvm_func()
106 fputs(p_error, stderr); in f_init_pvm_func()
112 fputs(p_error, stderr); in f_init_pvm_func()
118 fputs(p_error, stderr); in f_init_pvm_func()
124 fputs(p_error, stderr); in f_init_pvm_func()
[all …]
/dports/databases/mantis/mantisbt-2.25.2/core/
H A Djson_api.php65 function json_error_handler( $p_type, $p_error, $p_file, $p_line ) { argument
79 $t_error_description = $p_error;
83 $t_error_description = $p_error;
86 $t_error_type = 'APPLICATION ERROR #' . $p_error;
87 $t_error_code = $p_error;
88 $t_error_description = error_string( $p_error );
91 $t_error_type = 'APPLICATION WARNING #' . $p_error;
92 $t_error_code = $p_error;
93 $t_error_description = error_string( $p_error );
98 $t_error_description = $p_error;
[all …]
H A Derror_api.php189 if( $p_error == ERROR_LANG_STRING_NOT_FOUND ) {
228 if( $p_error == ERROR_PHP ) {
242 $t_error_type = 'APPLICATION ERROR #' . $p_error;
243 $t_error_description = error_string( $p_error );
261 $t_error_description = error_string( $p_error )
428 * @param string $p_error Error message.
623 * @param integer $p_error Error string to localize.
627 function error_string( $p_error ) { argument
633 if( array_key_exists( $p_error, $t_err_msg ) ) {
634 $t_error = $t_err_msg[$p_error];
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/core/
H A Derror_macros.cpp71 void _err_print_error(const char *p_function, const char *p_file, int p_line, const char *p_error, … in _err_print_error() argument
72 _err_print_error(p_function, p_file, p_line, p_error, "", p_type); in _err_print_error()
75 void _err_print_error(const char *p_function, const char *p_file, int p_line, const String &p_error in _err_print_error() argument
76 _err_print_error(p_function, p_file, p_line, p_error.utf8().get_data(), "", p_type); in _err_print_error()
79 void _err_print_error(const char *p_function, const char *p_file, int p_line, const char *p_error, … in _err_print_error() argument
81 …OS::get_singleton()->print_error(p_function, p_file, p_line, p_error, p_message, (Logger::ErrorTyp… in _err_print_error()
87 l->errfunc(l->userdata, p_function, p_file, p_line, p_error, p_message, p_type); in _err_print_error()
94 void _err_print_error(const char *p_function, const char *p_file, int p_line, const String &p_error in _err_print_error() argument
95 _err_print_error(p_function, p_file, p_line, p_error.utf8().get_data(), p_message, p_type); in _err_print_error()
99 _err_print_error(p_function, p_file, p_line, p_error, p_message.utf8().get_data(), p_type); in _err_print_error()
[all …]
/dports/devel/godot/godot-3.2.3-stable/core/
H A Derror_macros.cpp71 void _err_print_error(const char *p_function, const char *p_file, int p_line, const char *p_error, … in _err_print_error() argument
72 _err_print_error(p_function, p_file, p_line, p_error, "", p_type); in _err_print_error()
75 void _err_print_error(const char *p_function, const char *p_file, int p_line, const String &p_error in _err_print_error() argument
76 _err_print_error(p_function, p_file, p_line, p_error.utf8().get_data(), "", p_type); in _err_print_error()
79 void _err_print_error(const char *p_function, const char *p_file, int p_line, const char *p_error, … in _err_print_error() argument
81 …OS::get_singleton()->print_error(p_function, p_file, p_line, p_error, p_message, (Logger::ErrorTyp… in _err_print_error()
87 l->errfunc(l->userdata, p_function, p_file, p_line, p_error, p_message, p_type); in _err_print_error()
94 void _err_print_error(const char *p_function, const char *p_file, int p_line, const String &p_error in _err_print_error() argument
95 _err_print_error(p_function, p_file, p_line, p_error.utf8().get_data(), p_message, p_type); in _err_print_error()
99 _err_print_error(p_function, p_file, p_line, p_error, p_message.utf8().get_data(), p_type); in _err_print_error()
[all …]
/dports/misc/kgeography/kgeography-21.12.3/src/
H A Dmapparser.cpp29 p_error.clear(); in parseMap()
51 p_error = i18n("The map image file for %1 does not exist", kgmap -> getName()); in parseMap()
115 p_error = i18n("The flag image file for %1 does not exist", kgdiv -> getName()); in parseMap()
129 p_error = i18n("Invalid value in tag %1", QStringLiteral("<ignore>")); in parseMap()
161 p_error = i18n("The map description file should begin with the %1 tag", QStringLiteral("map")); in parseMap()
167 p_error = i18n("Could not open %1 for reading.", path); in parseMap()
172 p_error = i18n("%1 does not exist.", path); in parseMap()
175 if (p_error.isNull()) return kgmap; in parseMap()
185 return p_error; in getError()
196p_error = i18n("The map description file should have a %1 tag inside %2", tagName, parentTag.tagNa… in getElementString()
[all …]
/dports/benchmarks/dbs/dbs-1.1.5/src/
H A Dscan.c154 p_error("Internal Error!! (scan)");
171 p_error("missing '}' or '{'");
233 p_error("syntax error.");
328 p_error("Unknown keyword.");
357 p_error("port number error.");
433 p_error("Unknown Keyword.");
656 p_error("'file' is not defined.");
767 p_error("word is too long");
805 p_error("line is too long");
814 p_error("line is too long");
[all …]
/dports/devel/upp/upp/bazaar/FreeType/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
162 *p_error = error; in ft_mem_qrealloc()
180 FT_Error *p_error ) in ft_mem_dup() argument
189 *p_error = error; in ft_mem_dup()
[all …]
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/extern/freetype2/src/base/
H A Dftutil.hpp52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
162 *p_error = error; in ft_mem_qrealloc()
180 FT_Error *p_error ) in ft_mem_dup() argument
189 *p_error = error; in ft_mem_dup()
[all …]
/dports/print/tex-xdvik/xdvik-22.87/libs/freetype2/freetype-2.5.3/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
162 *p_error = error; in ft_mem_qrealloc()
180 FT_Error *p_error ) in ft_mem_dup() argument
189 *p_error = error; in ft_mem_dup()
[all …]
/dports/misc/window/window/
H A Dparser2.c71 p_error("%s: No such command or alias.", name);
96 p_error("%s: Too many arguments.", name);
117 p_error("%s: Bad alias syntax.", name);
128 p_error("%s: Unknown argument \"%s\".",
145 p_error("%s: Argument %d (%s) duplicated.",
149 p_error("%s: Argument %d duplicated.",
160 p_error("%s: Argument %d (%s) type mismatch.",
164 p_error("%s: Argument %d type mismatch.",
190 p_error("%s: Recursive alias.", a->a_name);
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
162 *p_error = error; in ft_mem_qrealloc()
180 FT_Error *p_error ) in ft_mem_dup() argument
189 *p_error = error; in ft_mem_dup()
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/freetype/vtkfreetype/src/base/
H A Dftutil.c51 FT_Error *p_error ) in ft_mem_alloc() argument
59 *p_error = error; in ft_mem_alloc()
67 FT_Error *p_error ) in ft_mem_qalloc() argument
85 *p_error = error; in ft_mem_qalloc()
96 FT_Error *p_error ) in ft_mem_realloc() argument
107 *p_error = error; in ft_mem_realloc()
118 FT_Error *p_error ) in ft_mem_qrealloc() argument
163 *p_error = error; in ft_mem_qrealloc()
181 FT_Error *p_error ) in ft_mem_dup() argument
190 *p_error = error; in ft_mem_dup()
[all …]
/dports/games/iortcw/iortcw-1.51c/SP/code/freetype-2.9/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/games/iortcw/iortcw-1.51c/MP/code/freetype-2.9/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/modules/freetype2/src/base/
H A Dftutil.c51 FT_Error *p_error ) in ft_mem_alloc() argument
59 *p_error = error; in ft_mem_alloc()
67 FT_Error *p_error ) in ft_mem_qalloc() argument
85 *p_error = error; in ft_mem_qalloc()
96 FT_Error *p_error ) in ft_mem_realloc() argument
107 *p_error = error; in ft_mem_realloc()
118 FT_Error *p_error ) in ft_mem_qrealloc() argument
163 *p_error = error; in ft_mem_qrealloc()
181 FT_Error *p_error ) in ft_mem_dup() argument
190 *p_error = error; in ft_mem_dup()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/native/libfreetype/src/base/
H A Dftutil.c51 FT_Error *p_error ) in ft_mem_alloc() argument
59 *p_error = error; in ft_mem_alloc()
67 FT_Error *p_error ) in ft_mem_qalloc() argument
85 *p_error = error; in ft_mem_qalloc()
96 FT_Error *p_error ) in ft_mem_realloc() argument
107 *p_error = error; in ft_mem_realloc()
118 FT_Error *p_error ) in ft_mem_qrealloc() argument
163 *p_error = error; in ft_mem_qrealloc()
181 FT_Error *p_error ) in ft_mem_dup() argument
190 *p_error = error; in ft_mem_dup()
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/3rdparty/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/3rdparty/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/3rdparty/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/native/libfreetype/src/base/
H A Dftutil.c51 FT_Error *p_error ) in ft_mem_alloc() argument
59 *p_error = error; in ft_mem_alloc()
67 FT_Error *p_error ) in ft_mem_qalloc() argument
85 *p_error = error; in ft_mem_qalloc()
96 FT_Error *p_error ) in ft_mem_realloc() argument
107 *p_error = error; in ft_mem_realloc()
118 FT_Error *p_error ) in ft_mem_qrealloc() argument
163 *p_error = error; in ft_mem_qrealloc()
181 FT_Error *p_error ) in ft_mem_dup() argument
190 *p_error = error; in ft_mem_dup()
[all …]
/dports/devel/godot/godot-3.2.3-stable/thirdparty/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/native/libfreetype/src/base/
H A Dftutil.c51 FT_Error *p_error ) in ft_mem_alloc() argument
59 *p_error = error; in ft_mem_alloc()
67 FT_Error *p_error ) in ft_mem_qalloc() argument
85 *p_error = error; in ft_mem_qalloc()
96 FT_Error *p_error ) in ft_mem_realloc() argument
107 *p_error = error; in ft_mem_realloc()
118 FT_Error *p_error ) in ft_mem_qrealloc() argument
163 *p_error = error; in ft_mem_qrealloc()
181 FT_Error *p_error ) in ft_mem_dup() argument
190 *p_error = error; in ft_mem_dup()
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/3rdparty/freetype/src/base/
H A Dftutil.c52 FT_Error *p_error ) in ft_mem_alloc() argument
60 *p_error = error; in ft_mem_alloc()
68 FT_Error *p_error ) in ft_mem_qalloc() argument
86 *p_error = error; in ft_mem_qalloc()
97 FT_Error *p_error ) in ft_mem_realloc() argument
108 *p_error = error; in ft_mem_realloc()
119 FT_Error *p_error ) in ft_mem_qrealloc() argument
164 *p_error = error; in ft_mem_qrealloc()
182 FT_Error *p_error ) in ft_mem_dup() argument
191 *p_error = error; in ft_mem_dup()
[all …]

12345678910>>...31