Home
last modified time | relevance | path

Searched refs:unquoted_string (Results 1 – 25 of 73) sorted by relevance

123

/dports/textproc/p5-CSS-Sass/CSS-Sass-3.6.4/t/sass-spec/spec/core_functions/color/
H A Dalpha.hrx177 <===> error/unquoted_string/no_equals/options.yml
182 <===> error/unquoted_string/no_equals/input.scss
185 <===> error/unquoted_string/no_equals/error
195 <===> error/unquoted_string/non_identifier_before_equals/options.yml
200 <===> error/unquoted_string/non_identifier_before_equals/input.scss
203 <===> error/unquoted_string/non_identifier_before_equals/error
/dports/devel/glibmm/glibmm-2.64.2/glib/glibmm/
H A Dshell.cc49 shell_quote(const std::string& unquoted_string) in shell_quote() argument
51 const auto buf = make_unique_ptr_gfree(g_shell_quote(unquoted_string.c_str())); in shell_quote()
H A Dshell.h99 std::string shell_quote(const std::string& unquoted_string);
/dports/devel/glibmm/glibmm-2.64.2/glib/src/
H A Dshell.ccg40 shell_quote(const std::string& unquoted_string)
42 const auto buf = make_unique_ptr_gfree(g_shell_quote(unquoted_string.c_str()));
H A Dshell.hg53 * string to mean @a unquoted_string. If you pass a filename to the shell,
56 * @param unquoted_string A literal string.
60 std::string shell_quote(const std::string& unquoted_string);
/dports/devel/glib20/glib-2.70.4/glib/
H A Dgshell.c209 g_shell_quote (const gchar *unquoted_string) in g_shell_quote() argument
219 g_return_val_if_fail (unquoted_string != NULL, NULL); in g_shell_quote()
223 p = unquoted_string; in g_shell_quote()
H A Dgshell.h45 gchar* g_shell_quote (const gchar *unquoted_string);
/dports/x11-toolkits/gtk-sharp-beans/gtk-sharp-beans-2.14.1/GLib.Sources/
H A DShell.cs31 static extern IntPtr g_shell_quote (IntPtr unquoted_string); in g_shell_quote() argument
/dports/math/R-cran-haven/haven/src/readstat/txt/
H A Dreadstat_sas_commands_read.rl172 unquoted_string = [A-Za-z] [_A-Za-z0-9\.]*;
208 …let_macro = "%LET"i whitespace+ identifier whitespace* "=" whitespace* (unquoted_string | quoted_s…
224 unquoted_string %{ label_type = LABEL_TYPE_STRING; } %copy_string |
243 data_cmd = "DATA"i (whitespace+ identifier_eval | unquoted_string | quoted_string )+
H A Dreadstat_stata_dictionary_read.rl117unquoted_string = [A-Za-z0-9_/\\\.\-]+ >{ str_start = fpc; } %{ str_len = fpc - str_start; };
127 filename = ( quoted_string | unquoted_string ) %copy_filename;
/dports/lang/mono/mono-5.10.1.57/mono/eglib/
H A Dgshell.c148 g_shell_quote (const gchar *unquoted_string) in g_shell_quote() argument
153 for (p = unquoted_string; *p; p++){ in g_shell_quote()
/dports/lang/fpc-source/fpc-3.2.2/packages/gtk2/src/glib/
H A Dgshell.inc23 function g_shell_quote(unquoted_string:Pgchar):Pgchar;cdecl;external gliblib name 'g_shell_quote';
/dports/x11-toolkits/fpc-gtk2/fpc-3.2.2/packages/gtk2/src/glib/
H A Dgshell.inc23 function g_shell_quote(unquoted_string:Pgchar):Pgchar;cdecl;external gliblib name 'g_shell_quote';
/dports/net/belle-sip/belle-sip-1.6.3-0/src/
H A Dbelle_sip_utils.c175 char* unquoted_string = belle_sip_malloc0(value_size-2+1); in _belle_sip_str_dup_and_unquote_string() local
176 strncpy(unquoted_string,quoted_string+1,value_size-2); in _belle_sip_str_dup_and_unquote_string()
177 return unquoted_string; in _belle_sip_str_dup_and_unquote_string()
/dports/graphics/wdune/wdune-1.926/src/
H A DFieldValue.cpp464 char *unquoted_string = strdup(string); in writeJavaLongArray() local
465 char *ptr = unquoted_string + 1; in writeJavaLongArray()
475 free(unquoted_string); in writeJavaLongArray()
/dports/math/pspp/pspp-1.4.1/tests/language/lexer/
H A Dsegment.at490 unquoted_string my_title
701 unquoted_string /*_Not_a_*/_quoted_string_title
706 unquoted_string Not_a_quoted_string_/*_subtitle
714 unquoted_string isn't_quoted
734 unquoted_string not_quoted_here_either
/dports/x11-toolkits/guile-gnome-platform/guile-gnome-platform-2.16.5/glib/doc/glib/
H A Ddefuns-shell.xml.texi4 @deffn Function g-shell-quote (unquoted_string@tie{}@code{mchars}) @result{}@tie{} (ret@tie{}@code…
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/
H A DUtil.php198 $unquoted_string = mb_substr($quoted_string, 1, -1);
200 $unquoted_string = str_replace(
203 $unquoted_string
206 return $unquoted_string;
/dports/devel/anjuta/anjuta-3.34.0/plugins/gdb/
H A Ddebugger.c173 static gchar * gdb_quote (const gchar *unquoted_string) in gdb_quote() argument
176 g_return_val_if_fail (unquoted_string != NULL, NULL); in gdb_quote()
179 p = strpbrk (unquoted_string, "\"\\"); in gdb_quote()
183 return g_strdup (unquoted_string); in gdb_quote()
189 dest = g_string_new_len (unquoted_string, p - unquoted_string); in gdb_quote()
193 unquoted_string = p; in gdb_quote()
194 p = strpbrk (unquoted_string + 1, "\"\\"); in gdb_quote()
197 g_string_append (dest, unquoted_string); in gdb_quote()
202 g_string_append_len (dest, unquoted_string, p - unquoted_string); in gdb_quote()
/dports/print/xreader/xreader-3.2.2/backend/comics/
H A Dcomics-document.c147 comics_regex_quote (const gchar *unquoted_string) in comics_regex_quote() argument
154 p = unquoted_string; in comics_regex_quote()
/dports/graphics/atril-lite/atril-1.26.0/backend/comics/
H A Dcomics-document.c147 comics_regex_quote (const gchar *unquoted_string) in comics_regex_quote() argument
154 p = unquoted_string; in comics_regex_quote()
/dports/graphics/atril/atril-1.26.0/backend/comics/
H A Dcomics-document.c147 comics_regex_quote (const gchar *unquoted_string) in comics_regex_quote() argument
154 p = unquoted_string; in comics_regex_quote()
/dports/x11/squeekboard/squeekboard-d49ce45de0956432cef9b957f806d9377fee4bc0/cargo-crates/glib-0.8.2/src/auto/
H A Dfunctions.rs1084 pub fn shell_quote<P: AsRef<std::ffi::OsStr>>(unquoted_string: P) -> Option<std::ffi::OsString> { in shell_quote()
1087 unquoted_string.as_ref().to_glib_none().0, in shell_quote()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/glib-0.9.3/src/auto/
H A Dfunctions.rs1104 pub fn shell_quote<P: AsRef<std::ffi::OsStr>>(unquoted_string: P) -> Option<std::ffi::OsString> { in shell_quote()
1107 unquoted_string.as_ref().to_glib_none().0, in shell_quote()
/dports/www/castor/castor-0.8.16/cargo-crates/glib-0.9.3/src/auto/
H A Dfunctions.rs1104 pub fn shell_quote<P: AsRef<std::ffi::OsStr>>(unquoted_string: P) -> Option<std::ffi::OsString> { in shell_quote()
1107 unquoted_string.as_ref().to_glib_none().0, in shell_quote()

123