HomeSort by relevance Sort by last modified time
    Searched refs:unquoted (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/dbus/test/
shell-test.c 68 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/
dbus-shell.c 171 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 blank character, an
    [all...]
  /external/pcre/dist/
pcrecpp.cc 466 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) {
477 for (int ii = 0; ii < unquoted.size(); ++ii) {
480 if (unquoted[ii] == '\0') {
482 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
483 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
484 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
485 unquoted[ii] != '_' &
    [all...]
pcrecpp_unittest.cc 485 // the original unquoted string.
486 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) {
487 string quoted = RE::QuoteMeta(unquoted);
489 CHECK(re.FullMatch(unquoted));
493 // quoted, should not generally match a string the unquoted string does.
494 static void NegativeTestQuoteMeta(string unquoted, string should_not_match,
496 string quoted = RE::QuoteMeta(unquoted);
    [all...]
pcrecpp.h 618 // 'unquoted'. The returned string, used as a regular expression,
626 static string QuoteMeta(const StringPiece& unquoted);
  /external/regex-re2/re2/
re2.cc 425 string RE2::QuoteMeta(const StringPiece& unquoted) {
427 result.reserve(unquoted.size() << 1);
436 for (int ii = 0; ii < unquoted.length(); ++ii) {
439 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
440 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
441 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
442 unquoted[ii] != '_' &
    [all...]
re2.h 403 // 'unquoted'. The returned string, used as a regular expression,
408 static string QuoteMeta(const StringPiece& unquoted);
    [all...]
  /external/regex-re2/util/
pcre.cc 412 string PCRE::QuoteMeta(const StringPiece& unquoted) {
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[ii] != '_' &
    [all...]
pcre.h 433 // Returns a copy of 'unquoted' with all potentially meaningful
440 static string QuoteMeta(const StringPiece& unquoted);
  /external/dbus-binding-generator/chromeos-dbus-bindings/
generate_chromeos_dbus_bindings.cc 58 std::string unquoted; local
59 base::TrimString(path, "\"'", &unquoted);
60 return base::FilePath{unquoted};
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
NetworkPolicyEditor.java 227 // Remove legacy unquoted policies while we're here
228 final NetworkTemplate unquoted = buildUnquotedNetworkTemplate(template); local
229 final NetworkPolicy unquotedPolicy = getPolicy(unquoted);
240 * with an unquoted {@link NetworkTemplate#getNetworkId()}. Used to work
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 358 String unquoted = quotedStr.substring(1, quotedStr.length() - 1); local
359 return XmlEscapers.xmlAttributeEscaper().escape(unquoted);
362 String unquoted = quotedStr.substring(1, quotedStr.length() - 1); local
363 String unescaped = unquoted.replace("\"", "\\\"").replace("\\`", "`");
  /external/regex-re2/re2/testing/
re2_test.cc 383 // the original unquoted string.
384 static void TestQuoteMeta(string unquoted,
386 string quoted = RE2::QuoteMeta(unquoted);
388 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re),
389 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.");
393 // the original unquoted string.
394 static void NegativeTestQuoteMeta(string unquoted, string should_not_match,
396 string quoted = RE2::QuoteMeta(unquoted);
399 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.")
    [all...]
  /external/v8/test/mjsunit/
object-literal.js 169 // Quoted keyword works is read back by unquoted as well.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
auth.py 574 unquoted = urllib.parse.unquote(path.path)
576 encoded = urllib.parse.quote(unquoted)
    [all...]
  /external/chromium-trace/catapult/third_party/flot/
jquery.js     [all...]
  /external/chromium-trace/catapult/third_party/jquery/
jquery-2.1.4.js 636 // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urllib2.py 869 warnings.warn("Basic Auth Realm was unquoted",
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
urllib2.py 869 warnings.warn("Basic Auth Realm was unquoted",
    [all...]