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

/external/dbus/test/
H A Dshell-test.c68 char *unquoted; local
70 unquoted = _dbus_shell_unquote (original_argv[i]);
71 if (strcmp (unquoted ? unquoted : "",
75 i, shell_argv[i], unquoted);
76 dbus_free (unquoted);
79 dbus_free (unquoted);
/external/dbus/dbus/
H A Ddbus-shell.c171 char *unquoted; local
177 unquoted = _dbus_strdup (quoted_string);
178 if (unquoted == NULL)
181 start = unquoted;
182 end = unquoted;
185 dbus_free (unquoted);
242 dbus_free (unquoted);
248 dbus_free (unquoted);
286 * 2) "If the current character is an unquoted newline character,
289 * 3) "If the current character is an unquoted blan
[all...]
/external/regex-re2/re2/
H A Dre2.cc402 string RE2::QuoteMeta(const StringPiece& unquoted) { argument
404 result.reserve(unquoted.size() << 1);
413 for (int ii = 0; ii < unquoted.length(); ++ii) {
416 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
417 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
418 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
419 unquoted[i
[all...]
H A Dre2.h384 // 'unquoted'. The returned string, used as a regular expression,
389 static string QuoteMeta(const StringPiece& unquoted);
/external/regex-re2/util/
H A Dpcre.cc412 string PCRE::QuoteMeta(const StringPiece& unquoted) { argument
414 result.reserve(unquoted.size() << 1);
423 for (int ii = 0; ii < unquoted.length(); ++ii) {
426 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
427 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
428 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
429 unquoted[i
[all...]
H A Dpcre.h433 // Returns a copy of 'unquoted' with all potentially meaningful
440 static string QuoteMeta(const StringPiece& unquoted);
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php4426 * @param $list array of (unquoted) strings

Completed in 212 milliseconds