/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/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
HtmlEscapeFunction.java | 50 // In unquoted HTML attributes, strip out control characters also, as they could 64 * unquoted HTML attribute. 66 * If the string is unquoted, we strip out all characters 0 - 0x1f and 0x7f for security reasons.
|
JsEscapeFunction.java | 57 * unquoted JS attribute (like onClick or onMouseover).
|
StyleEscapeFunction.java | 70 * unquoted style attribute.
|
/external/clang/test/Sema/ |
attr-mode.c | 14 typedef int invalid_1 __attribute((mode)); // expected-error{{attribute requires unquoted parameter}} 15 typedef int invalid_2 __attribute((mode())); // expected-error{{attribute requires unquoted parameter}}
|
/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/chromium/chrome/browser/importer/ |
firefox_importer_utils_unittest.cc | 14 // Basic case. Single pref, unquoted value.
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
HtmlUrlValidateFunction.java | 34 * isUnquoted should be true if the URL appears in an unquoted attribute. like: <a href=<?cs
|
/bootable/recovery/edify/ |
README | 19 They have special meaning when unquoted. (In quotes, they are just 43 - There's no distinction between quoted and unquoted strings; the
|
/external/icu4c/test/intltest/ |
tokiter.h | 32 * line, beginning with the first unquoted '#', are recognized.
|
/external/pcre/ |
pcrecpp.cc | 467 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { 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[ii] != '_' & [all...] |
pcre_version.c | 56 /* These macros are the standard way of turning unquoted text into C strings.
|
pcrecpp_unittest.cc | 484 // the original unquoted string. 485 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { 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, 495 string quoted = RE::QuoteMeta(unquoted); [all...] |
/external/icu4c/i18n/ |
ucol_tok.h | 44 /* this is space for the extra strings that need to be unquoted */
|
/external/qemu/android/utils/ |
dll.c | 39 * string into unquoted backwards one (\). This is necessary because
|
/libcore/luni/src/main/java/libcore/net/http/ |
HeaderParser.java | 54 // unquoted string
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
NetscapeDraftSpec.java | 109 * character may be present in unquoted cookie value or unquoted
|
/external/e2fsprogs/lib/blkid/ |
tag.c | 216 * parse_token, because that will end an unquoted value at a space, while 217 * this will assume that an unquoted value is the rest of the token (e.g.
|
/external/icu4c/tools/genrb/ |
read.c | 220 warning(lineCount, "Mixing quoted and unquoted strings"); 231 * quoted and unquoted strings
|
/bionic/libc/unistd/ |
fnmatch.c | 160 * A bracket expression starting with an unquoted circumflex
|
/external/llvm/lib/MC/ |
MCSectionELF.cpp | 50 if (*b == '"') // Unquoted "
|
/external/v8/test/mjsunit/ |
object-literal.js | 167 // Quoted keyword works is read back by unquoted as well.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
Clock.java | 147 * Search for an unquoted "a" in the format string, so we can
|
/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 45 * <li>Strings that are unquoted or {@code 'single quoted'}. 277 * Reads a null, boolean, numeric or unquoted string literal value. Numeric 316 * unquoted strings. Fall through to try floating point. 327 /* ... finally give up. We have an unquoted string */
|
/libcore/luni/src/main/java/java/text/ |
RuleBasedCollator.java | 68 * unquoted white space characters are ignored; for example, {@code b c} is 141 * <li>A text-argument contains unquoted punctuation symbols, for example
|