Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 196) sorted by relevance

12345678

/external/linux-tools-perf/util/
Dalias.c28 char quoted = 0; in split_cmdline() local
36 if (!quoted && isspace(c)) { in split_cmdline()
46 } else if (!quoted && (c == '\'' || c == '"')) { in split_cmdline()
47 quoted = c; in split_cmdline()
49 } else if (c == quoted) { in split_cmdline()
50 quoted = 0; in split_cmdline()
53 if (c == '\\' && quoted != '\'') { in split_cmdline()
69 if (quoted) { in split_cmdline()
/external/jsilver/src/com/google/streamhtmlparser/
DHtmlParserFactory.java194 boolean quoted, Set<AttributeOptions> options) { in createParserInAttribute() argument
201 quoted ? parserInDefaultAttrQ : parserInDefaultAttr); in createParserInAttribute()
206 quoted ? parserInUriAttrQPartial : parserInUriAttrPartial); in createParserInAttribute()
209 quoted ? parserInUriAttrQComplete : parserInUriAttrComplete); in createParserInAttribute()
217 if (quoted) { in createParserInAttribute()
228 quoted ? parserInStyleAttrQ : parserInStyleAttr); in createParserInAttribute()
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
DX500NameTokenizer.java44 boolean quoted = false; in nextToken()
57 quoted = !quoted; in nextToken()
67 if (escaped || quoted) in nextToken()
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
DX509NameTokenizer.java44 boolean quoted = false; in nextToken()
57 quoted = !quoted; in nextToken()
78 if (escaped || quoted) in nextToken()
/external/dbus/dbus/
Ddbus-shell.c353 dbus_bool_t quoted;; in tokenize_command_line() local
356 quoted = FALSE; in tokenize_command_line()
400 !(current_quote == '"' && quoted)) in tokenize_command_line()
496 quoted = FALSE; in tokenize_command_line()
498 quoted = !quoted; in tokenize_command_line()
/external/llvm/utils/lit/lit/
DShCommands.py19 quoted = "'%s'" % arg
21 quoted = '"%s"' % arg
24 print >>file, quoted,
28 dequoted = list(ShUtil.ShLexer(quoted).lex())
/external/icu4c/test/intltest/
Ddadrcoll.cpp93 UBool quoted = FALSE; in getNextInSequence() local
99 if(!quoted) { in getNextInSequence()
119 quoted = TRUE; in getNextInSequence()
123 quoted = TRUE; in getNextInSequence()
135 quoted = FALSE; in getNextInSequence()
140 quoted = FALSE; in getNextInSequence()
/external/llvm/test/YAMLParser/
Dspec-10-02.data5 quoted", 'single
6 quoted',
Dspec-02-18.data7 quoted: "So does this
8 quoted scalar.\n"
Dspec-06-06.data5 quoted: "text
Dspec-10-14.data4 "quoted key":
Dspec-08-09.data6 quoted:
Dspec-05-12.data8 quoted: "Quoted "
Dsloppy-indentation.data18 bar: 'quoted scalars
/external/nist-sip/java/gov/nist/core/
DParserCore.java59 boolean quoted = false; in nameValue()
70 quoted = true; in nameValue()
83 if (quoted) nv.setQuotedValue(); in nameValue()
/external/openssh/
Dauth-rsa.c202 int quoted = 0; in rsa_key_allowed_in_file() local
204 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { in rsa_key_allowed_in_file()
208 quoted = !quoted; in rsa_key_allowed_in_file()
Dauth2-pubkey.c296 int quoted = 0; in user_key_allowed2() local
299 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { in user_key_allowed2()
303 quoted = !quoted; in user_key_allowed2()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
DDelphiTarget.java84 public String getTargetStringLiteralFromString(String s, boolean quoted) { in getTargetStringLiteralFromString() argument
89 if ( quoted ) { in getTargetStringLiteralFromString()
110 if ( quoted ) { in getTargetStringLiteralFromString()
DTarget.java289 public String getTargetStringLiteralFromString(String s, boolean quoted) { in getTargetStringLiteralFromString() argument
295 if ( quoted ) { in getTargetStringLiteralFromString()
310 if ( quoted ) { in getTargetStringLiteralFromString()
/external/webkit/LayoutTests/fast/encoding/
Dquotes-in-title-expected.txt2 …over quoted elements in a title tag correctly. Tests a bug in the charset sniffer that would consu…
/external/nist-sip/java/gov/nist/javax/sip/parser/
DViaParser.java155 boolean quoted = false; in nameValue()
170 quoted = true; in nameValue()
179 if (quoted) in nameValue()
/external/icu4c/tools/pkgdata/
Dpkgtypes.h39 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
44 …_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
/external/iptables/iptables/
Diptables-xml.c108 add_argv(char *what, int quoted) in add_argv() argument
113 newargvattr[newargc] = quoted; in add_argv()
744 int quote_open, quoted; in iptables_xml_main() local
784 quoted = 0; in iptables_xml_main()
798 quoted = 1; in iptables_xml_main()
832 add_argv(param_buffer, quoted); in iptables_xml_main()
837 quoted = 0; in iptables_xml_main()
/external/chromium/chrome/browser/
Dshell_integration_linux.cc188 std::string quoted = "\""; in QuoteArgForDesktopFileExec() local
197 quoted += '\\'; in QuoteArgForDesktopFileExec()
200 quoted += arg[i]; in QuoteArgForDesktopFileExec()
202 quoted += '"'; in QuoteArgForDesktopFileExec()
204 return quoted; in QuoteArgForDesktopFileExec()
/external/webkit/LayoutTests/http/tests/cookies/
Ddouble-quoted-value-with-semi-colon-expected.txt6 Check that setting a cookie with a semi-colon in a duoble-quoted value works

12345678