Home
last modified time | relevance | path

Searched refs:in_code (Results 1 – 25 of 473) sorted by relevance

12345678910>>...19

/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/shared_core/
H A DError.cpp151 Code(in_code), in Impl()
157 Code(in_code), in Impl()
164 Code(in_code), in Impl()
171 Code(in_code), in Impl()
263 int in_code, in Error() argument
483 return Error(in_code.category().name(), in_code.value(), in_code.message(), in_location); in systemError()
491 Error systemError(int in_code, in systemError() argument
501 …return Error(in_code.category().name(), in_code.value(), in_code.message(), in_cause, in_location); in systemError()
514 Error systemError(int in_code, in systemError() argument
541 Error systemError(int in_code, in systemError() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/man/src/
H A Dfilter_demo_output.py92 in_code = False
96 if in_code:
98 in_code = False
101 if not in_code:
103 in_code = True
113 if in_code:
119 in_code = False
123 if in_code:
128 if not in_code:
130 in_code = True
[all …]
/dports/games/openspades/openspades-0.1.3/Sources/AngelScript/source/
H A Das_scriptcode.cpp61 int asCScriptCode::SetCode(const char *in_name, const char *in_code, bool in_makeCopy) in SetCode() argument
63 return SetCode(in_name, in_code, 0, in_makeCopy); in SetCode()
66 int asCScriptCode::SetCode(const char *in_name, const char *in_code, size_t in_length, bool in_make… in SetCode() argument
68 if( !in_code) return asINVALID_ARG; in SetCode()
74 in_length = strlen(in_code); in SetCode()
82 memcpy(code, in_code, in_length); in SetCode()
87 code = const_cast<char*>(in_code); in SetCode()
94 if( in_code[n] == '\n' ) linePositions.PushLast(n+1); in SetCode()
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/angelscript/source/
H A Das_scriptcode.cpp61 int asCScriptCode::SetCode(const char *in_name, const char *in_code, bool in_makeCopy) in SetCode() argument
63 return SetCode(in_name, in_code, 0, in_makeCopy); in SetCode()
66 int asCScriptCode::SetCode(const char *in_name, const char *in_code, size_t in_length, bool in_make… in SetCode() argument
68 if( !in_code) return asINVALID_ARG; in SetCode()
74 in_length = strlen(in_code); in SetCode()
82 memcpy(code, in_code, in_length); in SetCode()
87 code = const_cast<char*>(in_code); in SetCode()
94 if( in_code[n] == '\n' ) linePositions.PushLast(n+1); in SetCode()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/AngelScript/source/
H A Das_scriptcode.cpp61 int asCScriptCode::SetCode(const char *in_name, const char *in_code, bool in_makeCopy) in SetCode() argument
63 return SetCode(in_name, in_code, 0, in_makeCopy); in SetCode()
66 int asCScriptCode::SetCode(const char *in_name, const char *in_code, size_t in_length, bool in_make… in SetCode() argument
68 if( !in_code) return asINVALID_ARG; in SetCode()
74 in_length = strlen(in_code); in SetCode()
82 memcpy(code, in_code, in_length); in SetCode()
87 code = const_cast<char*>(in_code); in SetCode()
94 if( in_code[n] == '\n' ) linePositions.PushLast(n+1); in SetCode()
/dports/lang/angelscript/sdk/angelscript/source/
H A Das_scriptcode.cpp61 int asCScriptCode::SetCode(const char *in_name, const char *in_code, bool in_makeCopy) in SetCode() argument
63 return SetCode(in_name, in_code, 0, in_makeCopy); in SetCode()
66 int asCScriptCode::SetCode(const char *in_name, const char *in_code, size_t in_length, bool in_make… in SetCode() argument
68 if( !in_code) return asINVALID_ARG; in SetCode()
74 in_length = strlen(in_code); in SetCode()
82 memcpy(code, in_code, in_length); in SetCode()
87 code = const_cast<char*>(in_code); in SetCode()
94 if( in_code[n] == '\n' ) linePositions.PushLast(n+1); in SetCode()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/shared_core/include/shared_core/
H A DError.hpp277 Error(std::string in_name, int in_code, const ErrorLocation& in_location);
287 Error(std::string in_name, int in_code, const Error& in_cause, const ErrorLocation& in_location);
299 … Error(std::string in_name, int in_code, std::string in_message, const ErrorLocation& in_location);
312 int in_code,
574 Error systemError(int in_code, const ErrorLocation& in_location);
584 Error systemError(const std::error_code& in_code, const ErrorLocation& in_location);
605 Error systemError(int in_code, const Error& in_cause, const ErrorLocation& in_location);
680 int in_code,
697 const std::error_code& in_code,
730 int in_code,
[all …]
/dports/sysutils/cfengine-devel/core-d08ae9eff/contrib/
H A Dcfdoc53 if ($in_code) {
55 $in_code = 0;
69 if (!$in_code) {
71 $in_code = 1;
82 print $end_verbatim if $in_code;
/dports/net/krill/krill-0.9.4/cargo-crates/tiny_http-0.8.2/src/
H A Dcommon.rs87 fn from(in_code: i8) -> StatusCode { in from()
88 StatusCode(in_code as u16) in from()
93 fn from(in_code: u8) -> StatusCode { in from()
94 StatusCode(in_code as u16) in from()
99 fn from(in_code: i16) -> StatusCode { in from()
100 StatusCode(in_code as u16) in from()
105 fn from(in_code: u16) -> StatusCode { in from()
106 StatusCode(in_code) in from()
111 fn from(in_code: i32) -> StatusCode { in from()
112 StatusCode(in_code as u16) in from()
[all …]
/dports/www/py-beautifulsoup/beautifulsoup4-4.10.0/doc/source/
H A Dcheck_doc.py5 self.in_code = False
15 if self.in_code:
17 self.in_code = False
21 self.in_code = True
/dports/devel/sccache/sccache-0.2.15/cargo-crates/tiny_http-0.6.2/src/
H A Dcommon.rs101 fn from(in_code: i8) -> StatusCode { in from()
102 StatusCode(in_code as u16) in from()
107 fn from(in_code: u8) -> StatusCode { in from()
108 StatusCode(in_code as u16) in from()
113 fn from(in_code: i16) -> StatusCode { in from()
114 StatusCode(in_code as u16) in from()
119 fn from(in_code: u16) -> StatusCode { in from()
120 StatusCode(in_code) in from()
125 fn from(in_code: i32) -> StatusCode { in from()
126 StatusCode(in_code as u16) in from()
[all …]
/dports/lang/parrot/parrot-8.1.0/t/examples/
H A Dpod.t93 my $in_code = 0;
96 if ( $in_code ) {
102 $in_code = 0;
109 $in_code = 1;
/dports/print/texinfo/texinfo-6.8/tp/Texinfo/XS/parsetexi/
H A Dindices.c80 add_index_internal (char *name, int in_code) in add_index_internal() argument
87 idx->in_code = in_code; in add_index_internal()
116 add_index (char *name, int in_code) in add_index() argument
121 idx = add_index_internal (name, in_code); in add_index()
163 struct def { char *name; int in_code; } in init_index_commands() member
222 idx = add_index_internal (strdup (p->name), p->in_code); in init_index_commands()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/freetype/src/lzw/
H A Dftzopen.c246 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
275 in_code = 0; in ft_lzwstate_io()
322 in_code = code; /* save code for later */ in ft_lzwstate_io()
375 old_code = in_code; in ft_lzwstate_io()
388 state->in_code = in_code; in ft_lzwstate_io()
/dports/devel/upp/upp/uppsrc/plugin/FT_fontsys/src/lzw/
H A Dftzopen.c246 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
275 in_code = 0; in ft_lzwstate_io()
322 in_code = code; /* save code for later */ in ft_lzwstate_io()
378 old_code = in_code; in ft_lzwstate_io()
391 state->in_code = in_code; in ft_lzwstate_io()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/freetype/src/lzw/
H A Dftzopen.c246 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
275 in_code = 0; in ft_lzwstate_io()
322 in_code = code; /* save code for later */ in ft_lzwstate_io()
378 old_code = in_code; in ft_lzwstate_io()
391 state->in_code = in_code; in ft_lzwstate_io()
/dports/math/gretl/gretl-2021d/utils/scriptfix/
H A Dscriptfix.c266 int in_code = 0; in main() local
283 in_code = 1; in main()
325 code_start = in_code = 1; in main()
328 in_code = 0; in main()
331 sample_start = in_code = 1; in main()
334 in_code = 0; in main()
347 if (in_code) { in main()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/freetype/src/lzw/
H A Dftzopen.c264 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
293 in_code = 0; in ft_lzwstate_io()
341 in_code = code; /* save code for later */ in ft_lzwstate_io()
401 old_code = in_code; in ft_lzwstate_io()
414 state->in_code = in_code; in ft_lzwstate_io()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/freetype/vtkfreetype/src/lzw/
H A Dftzopen.c269 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
298 in_code = 0; in ft_lzwstate_io()
346 in_code = code; /* save code for later */ in ft_lzwstate_io()
406 old_code = in_code; in ft_lzwstate_io()
419 state->in_code = in_code; in ft_lzwstate_io()
/dports/games/iortcw/iortcw-1.51c/SP/code/freetype-2.9/src/lzw/
H A Dftzopen.c264 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
293 in_code = 0; in ft_lzwstate_io()
341 in_code = code; /* save code for later */ in ft_lzwstate_io()
401 old_code = in_code; in ft_lzwstate_io()
414 state->in_code = in_code; in ft_lzwstate_io()
/dports/games/iortcw/iortcw-1.51c/MP/code/freetype-2.9/src/lzw/
H A Dftzopen.c264 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
293 in_code = 0; in ft_lzwstate_io()
341 in_code = code; /* save code for later */ in ft_lzwstate_io()
401 old_code = in_code; in ft_lzwstate_io()
414 state->in_code = in_code; in ft_lzwstate_io()
/dports/www/firefox-esr/firefox-91.8.0/modules/freetype2/src/lzw/
H A Dftzopen.c264 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
293 in_code = 0; in ft_lzwstate_io()
341 in_code = code; /* save code for later */ in ft_lzwstate_io()
401 old_code = in_code; in ft_lzwstate_io()
414 state->in_code = in_code; in ft_lzwstate_io()
/dports/games/supertux2/SuperTux-v0.6.3-Source/external/SDL_ttf/external/freetype-2.4.12/src/lzw/
H A Dftzopen.c255 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
284 in_code = 0; in ft_lzwstate_io()
332 in_code = code; /* save code for later */ in ft_lzwstate_io()
392 old_code = in_code; in ft_lzwstate_io()
405 state->in_code = in_code; in ft_lzwstate_io()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/3rdparty/freetype/src/lzw/
H A Dftzopen.c264 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
293 in_code = 0; in ft_lzwstate_io()
341 in_code = code; /* save code for later */ in ft_lzwstate_io()
401 old_code = in_code; in ft_lzwstate_io()
414 state->in_code = in_code; in ft_lzwstate_io()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/3rdparty/freetype/src/lzw/
H A Dftzopen.c264 FT_UInt in_code = state->in_code; in ft_lzwstate_io() local
293 in_code = 0; in ft_lzwstate_io()
341 in_code = code; /* save code for later */ in ft_lzwstate_io()
401 old_code = in_code; in ft_lzwstate_io()
414 state->in_code = in_code; in ft_lzwstate_io()

12345678910>>...19