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

1 2 3 4 5

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
X500NameTokenizer.java 44 boolean quoted = false;
57 quoted = !quoted;
64 if (escaped || quoted)
  /external/linux-tools-perf/util/
alias.c 28 char quoted = 0; local
36 if (!quoted && isspace(c)) {
46 } else if (!quoted && (c == '\'' || c == '"')) {
47 quoted = c;
49 } else if (c == quoted) {
50 quoted = 0;
53 if (c == '\\' && quoted != '\'') {
69 if (quoted) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameTokenizer.java 45 boolean quoted = false;
58 quoted = !quoted;
65 if (escaped || quoted)
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParserFactory.java 47 * Indicates that the attribute value is Javascript-quoted. Only takes
50 * HTML quoted.
71 * Indicates that the parser is inside a quoted {@code String}. Only
186 * @param quoted whether the attribute value is enclosed in double quotes
194 boolean quoted, Set<AttributeOptions> options) {
201 quoted ? parserInDefaultAttrQ : parserInDefaultAttr);
206 quoted ? parserInUriAttrQPartial : parserInUriAttrPartial);
209 quoted ? parserInUriAttrQComplete : parserInUriAttrComplete);
213 // inside a Javascript quoted string that is in an unquoted HTML
216 // quoted attribute values are always HTML quoted
    [all...]
  /external/chromium_org/tools/gyp/tools/
pretty_gyp.py 16 # Regex to remove quoted strings when we're counting braces.
17 # It takes into account quoted quotes, and makes sure that the quotes match.
29 """Mask the quoted strings so we skip braces inside quoted strings."""
42 """Mask the quoted strings so we skip braces inside quoted strings."""
  /frameworks/base/services/java/com/android/server/
NativeDaemonEvent.java 177 * Also understands "\"quoted\" multiword responses" and tries them as a single field
195 boolean quoted = false;
199 quoted = true;
204 if (quoted) {
220 if (!quoted) {
239 quoted = true;
242 quoted = false;
249 ", length=" + length + ", quoted=" + quoted);
  /external/nist-sip/java/gov/nist/core/
ParserCore.java 59 boolean quoted = false;
70 quoted = true;
83 if (quoted) nv.setQuotedValue();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 20 """CREATE TABLE "quoted""table"("quoted""field" text);"""
22 """INSERT INTO "quoted""table" VALUES('quoted''value');"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 20 """CREATE TABLE "quoted""table"("quoted""field" text);"""
22 """INSERT INTO "quoted""table" VALUES('quoted''value');"""
  /external/chromium_org/third_party/icu/source/tools/pkgdata/
pkgtypes.h 37 * write CharList 'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
39 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
42 * Same, but use line breaks. quoted: -1 remove, 0 as is, 1 add quotes
44 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 287 * depending on the quoted arg.
289 public String getTargetStringLiteralFromString(String s, boolean quoted) {
295 if ( quoted ) {
310 if ( quoted ) {
DelphiTarget.java 84 public String getTargetStringLiteralFromString(String s, boolean quoted) {
89 if ( quoted ) {
110 if ( quoted ) {
  /external/llvm/utils/lit/lit/
ShCommands.py 19 quoted = "'%s'" % arg
21 quoted = '"%s"' % arg
24 file.write(quoted)
28 dequoted = list(ShUtil.ShLexer(quoted).lex())
  /external/icu4c/tools/pkgdata/
pkgtypes.h 37 * write CharList 'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
39 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
42 * Same, but use line breaks. quoted: -1 remove, 0 as is, 1 add quotes
44 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcoll.cpp 93 UBool quoted = FALSE; local
99 if(!quoted) {
119 quoted = TRUE;
123 quoted = TRUE;
135 quoted = FALSE;
140 quoted = FALSE;
  /external/icu4c/test/intltest/
dadrcoll.cpp 93 UBool quoted = FALSE; local
99 if(!quoted) {
119 quoted = TRUE;
123 quoted = TRUE;
135 quoted = FALSE;
140 quoted = FALSE;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 5 """Quoted-printable content transfer encoding per RFCs 2045-2047.
8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
13 Quoted-printable is very space-inefficient for encoding binary files; use the
17 with quoted-printable encoding.
118 """Encode a single header line with quoted-printable (like) encoding.
120 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but
154 quoted = []
164 _max_append(quoted, '_', max_encoded)
167 _max_append(quoted, c, max_encoded)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 5 """Quoted-printable content transfer encoding per RFCs 2045-2047.
8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
13 Quoted-printable is very space-inefficient for encoding binary files; use the
17 with quoted-printable encoding.
118 """Encode a single header line with quoted-printable (like) encoding.
120 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but
154 quoted = []
164 _max_append(quoted, '_', max_encoded)
167 _max_append(quoted, c, max_encoded)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 155 boolean quoted = false;
170 quoted = true;
179 if (quoted)
  /external/chromium_org/tools/grit/grit/format/
js_map_format_unittest.py 39 A "double quoted" message.
55 localizedStrings["A \\\"double quoted\\\" message."] = "A \\\"double quoted\\\" message.";
  /external/openssh/
auth-rsa.c 202 int quoted = 0; local
204 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
208 quoted = !quoted;
auth2-pubkey.c 296 int quoted = 0; local
299 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
303 quoted = !quoted;
  /external/iproute2/tc/
m_ematch.h 17 int quoted; member in struct:bstr
  /system/core/adb/
commandline.c 667 char *quoted; local
669 quoted = dupAndQuote (*argv++);
672 strncat(buf, quoted, sizeof(buf)-1);
673 free(quoted);
1580 char *quoted; local
1614 char* quoted; local
    [all...]
  /external/chromium/chrome/browser/
shell_integration_linux.cc 188 std::string quoted = "\"";
197 quoted += '\\';
200 quoted += arg[i];
202 quoted += '"';
204 return quoted;

Completed in 2163 milliseconds

1 2 3 4 5