Home
last modified time | relevance | path

Searched refs:unquoted (Results 1 – 16 of 16) sorted by relevance

/external/dbus/test/
Dshell-test.c68 char *unquoted; in test_command_line() local
70 unquoted = _dbus_shell_unquote (original_argv[i]); in test_command_line()
71 if (strcmp (unquoted ? unquoted : "", in test_command_line()
75 i, shell_argv[i], unquoted); in test_command_line()
76 dbus_free (unquoted); in test_command_line()
79 dbus_free (unquoted); in test_command_line()
/external/dbus/dbus/
Ddbus-shell.c171 char *unquoted; in _dbus_shell_unquote() local
177 unquoted = _dbus_strdup (quoted_string); in _dbus_shell_unquote()
178 if (unquoted == NULL) in _dbus_shell_unquote()
181 start = unquoted; in _dbus_shell_unquote()
182 end = unquoted; in _dbus_shell_unquote()
185 dbus_free (unquoted); in _dbus_shell_unquote()
242 dbus_free (unquoted); in _dbus_shell_unquote()
248 dbus_free (unquoted); in _dbus_shell_unquote()
/external/pcre/
Dpcrecpp.cc467 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument
478 for (int ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta()
481 if (unquoted[ii] == '\0') { in QuoteMeta()
483 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta()
484 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta()
485 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta()
486 unquoted[ii] != '_' && in QuoteMeta()
490 !(unquoted[ii] & 128)) { in QuoteMeta()
492 result += unquoted[ii]; in QuoteMeta()
494 result += unquoted[ii]; in QuoteMeta()
Dpcrecpp_unittest.cc485 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { in TestQuoteMeta() argument
486 string quoted = RE::QuoteMeta(unquoted); in TestQuoteMeta()
488 CHECK(re.FullMatch(unquoted)); in TestQuoteMeta()
493 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, in NegativeTestQuoteMeta() argument
495 string quoted = RE::QuoteMeta(unquoted); in NegativeTestQuoteMeta()
Dpcrecpp.h626 static string QuoteMeta(const StringPiece& unquoted);
/external/markdown/docs/
DCHANGE_LOG105 May 18, 2006: Stopped catching unquoted titles in reference links.
/external/oprofile/
DChangeLog-2005637 * utils/opcontrol: fix unquoted variable references in 'test'
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
DPHP Markdown Extra Readme.text369 * The markdown="" attribute now accepts unquoted values.
/external/clang/include/clang/Basic/
DDiagnosticSemaKinds.td1128 "attribute requires unquoted parameter">;
/external/elfutils/autom4te.cache/
Doutput.06773 # config.status. Protect against being in an unquoted here document
/external/pcre/doc/
Dpcre.txt7157 string quoted = RE::QuoteMeta(unquoted);
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1613534 - another fix for <rdar://problem/6617298> Typing delete on an unquoted
15843 …Fix for <rdar://problem/6617298> Typing delete on an unquoted blank line unquotes the preceding, q…
17282 … from newly pasted quoted content that was pasted into an unquoted position. If that unquoted pos…
68243 paragraph, or what is before is unquoted, and the user presses delete, unquote that
68250 out. Places a line break to create in empty unquoted paragraph in place of the
DChangeLog-2006-05-108557 …//problem/4444693> REGRESSION: Deleting empty lines causes quoted text to mistakenly get "unquoted"
DChangeLog-2010-01-2993725 …REGRESSION(34681): Breaking up quoted text makes new, unquoted text blue after certain steps; repr…
93734 …typing style (from before the delete, so blue text) to the cursor in the unquoted area after break…
DChangeLog-2011-02-169120 injections into unquoted attributes. However, it's a trade-off that's
/external/sqlite/dist/
Dsqlite3.c.orig104629 /* Keywords and unquoted identifiers */