Searched refs:unquoted (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dxtext.c9 /* VSTRING *xtext_quote(quoted, unquoted, special)
11 /* const char *unquoted;
14 /* VSTRING *xtext_quote_append(unquoted, quoted, special)
15 /* VSTRING *unquoted;
19 /* VSTRING *xtext_unquote(unquoted, quoted)
20 /* VSTRING *unquoted;
32 /* result value is the unquoted argument in case of success, a null pointer
64 /* xtext_quote_append - append unquoted data to quoted data */
66 VSTRING *xtext_quote_append(VSTRING *quoted, const char *unquoted, argument
72 for (cp = unquoted; (c
86 xtext_quote(VSTRING *quoted, const char *unquoted, const char *special) argument
95 xtext_unquote(VSTRING *unquoted, const char *quoted) argument
149 VSTRING *unquoted = vstring_alloc(BUFLEN); local
[all...]
H A Dquote_822_local.c30 /* address to unquoted (internal) form.
214 * Proof-of-concept test program. Read an unquoted address from stdin, and
215 * show the quoted and unquoted results.
226 VSTRING *unquoted = vstring_alloc(100); local
231 unquote_822_local(unquoted, STR(quoted));
232 vstream_printf("unquoted: %s\n", STR(unquoted));
235 vstring_free(unquoted);
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dtcover-unsafep.el55 . (unquoted x))
57 . (unquoted y))
93 . (unquoted x))
97 . (unquoted x1))
H A Dunsafep.el146 (setq reason `(unquoted ,arg))))
186 `(unquoted ,arg)
/macosx-10.9.5/pcre-7/pcre/
H A Dpcrecpp.cc467 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { argument
478 for (int ii = 0; ii < unquoted.size(); ++ii) {
481 if (unquoted[ii] == '\0') {
483 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
484 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
485 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
486 unquoted[i
[all...]
H A Dpcrecpp_unittest.cc484 // the original unquoted string.
485 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { argument
486 string quoted = RE::QuoteMeta(unquoted);
488 CHECK(re.FullMatch(unquoted));
492 // quoted, should not generally match a string the unquoted string does.
493 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, argument
495 string quoted = RE::QuoteMeta(unquoted);
H A Dpcrecpp.h618 // 'unquoted'. The returned string, used as a regular expression,
626 static string QuoteMeta(const StringPiece& unquoted);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/json/
H A Djson.tcl31 # (unquoted) words
86 # @return unquoted unescaped value of the string contained in $token
88 set unquoted [string range $token 1 end-1]
89 return [subst -nocommands -novariables $unquoted]
/macosx-10.9.5/Heimdal-323.92.1/lib/hdb/
H A Dhdb-ldap.c803 escape_value(krb5_context context, const unsigned char *unquoted, char **quoted) argument
807 for (i = 0, len = 0; unquoted[i] != '\0'; i++, len++) {
808 if (need_quote((unsigned char)unquoted[i]))
818 for (i = 0; unquoted[0] ; unquoted++) {
819 if (need_quote((unsigned char *)unquoted[0])) {
821 (*quoted)[i++] = hexchar[(unquoted[0] >> 4) & 0xf];
822 (*quoted)[i++] = hexchar[(unquoted[0] ) & 0xf];
824 (*quoted)[i++] = (char)unquoted[0];
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DTXT.pm88 return @{$self->{'char_str_list'}}; # unquoted strings
137 as unquoted strings. Used by TXT->rdatastr and TXT->rr_rdata.
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/DBI/
H A DInterBase.pm27 By default column names from unquoted DDL will be generated in lowercase, for
32 uppercase for DDL that uses unquoted identifiers.
/macosx-10.9.5/vim-53/runtime/macros/
H A Dshellmenu.vim71 imenu SpShVars.All positional parameters (unquoted spaces) ${@}
/macosx-10.9.5/CPANInternal-140/YAML-Syck/lib/YAML/
H A DSyck.pm194 various implicit types in YAML, such as unquoted C<true>, C<false>, as well as
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A DloadICU.tcl560 foreach { unquoted quoted } [split $string '] {
566 } $unquoted]
/macosx-10.9.5/ruby-104/ruby/test/psych/
H A Dtest_yaml.rb405 { 'plain' => 'This unquoted scalar spans many lines.',
407 plain: This unquoted
/macosx-10.9.5/tcl-102/tcl/tcl/library/
H A Dclock.tcl2444 foreach { unquoted quoted } [split $string '] {
2458 } $unquoted]
2474 foreach { unquoted quoted } [split $string '] {
2488 } $unquoted]
2504 foreach { unquoted quoted } [split $string '] {
2516 } $unquoted]
/macosx-10.9.5/CPANInternal-140/XML-Writer/
H A DWriter.pm603 # Write raw, unquoted, completely unchecked character data.
1411 Print data completely unquoted and unchecked to the XML document. For
/macosx-10.9.5/emacs-92/emacs/lisp/calc/
H A Dcalc-prog.el584 (defun calc-fix-token-name (name &optional unquoted)
596 ((and unquoted (string-match "#" name))

Completed in 300 milliseconds