Home
last modified time | relevance | path

Searched refs:quotes (Results 1 – 25 of 508) sorted by relevance

12345678910>>...21

/external/nist-sip/java/gov/nist/core/
DNameValue.java57 private String quotes; field in NameValue
67 this.quotes = ""; in NameValue()
85 quotes = ""; in NameValue()
112 this.quotes = Separators.DOUBLE_QUOTE; in setQuotedValue()
166 buffer.append(name).append(separator).append(quotes); in encode()
168 buffer.append(quotes); in encode()
181 buffer.append(name).append(separator).append(quotes).append(quotes); in encode()
188 … buffer.append(name).append(separator).append(quotes).append(value.toString()).append(quotes); in encode()
201 buffer.append(quotes).append(value.toString()).append(quotes); in encode()
/external/boringssl/src/crypto/x509/
Da_strex.c178 int type, unsigned char flags, char *quotes, char_io *io_ch, in do_buf() argument
253 quotes, io_ch, arg); in do_buf()
260 do_esc_char(c, (unsigned char)(flags | orflags), quotes, in do_buf()
361 char quotes; in do_print_ex() local
363 quotes = 0; in do_print_ex()
418 len = do_buf(str->data, str->length, type, flags, &quotes, io_ch, NULL); in do_print_ex()
422 if (quotes) in do_print_ex()
426 if (quotes && !io_ch(arg, "\"", 1)) in do_print_ex()
430 if (quotes && !io_ch(arg, "\"", 1)) in do_print_ex()
/external/python/cpython2/Lib/
Dcsv.py230 quotes = {}
237 quotes[key] = quotes.get(key, 0) + 1
252 quotechar = reduce(lambda a, b, quotes = quotes:
253 (quotes[a] > quotes[b]) and a or b, quotes.keys())
Dshlex.py45 self.quotes = '\'"'
153 elif nextchar in self.quotes:
166 elif self.state in self.quotes:
194 if escapedstate in self.quotes and \
220 elif self.posix and nextchar in self.quotes:
225 elif nextchar in self.wordchars or nextchar in self.quotes \
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java52 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
53 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
61 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java52 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
53 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
61 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java52 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
53 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
61 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/core/command/
D_AbstractCommandHandlerTest.java51 assertEquals("abc", "\"abc\"", AbstractStubCommandHandler.quotes("abc")); in testQuotes()
52 assertEquals("<empty>", "\"\"", AbstractStubCommandHandler.quotes("")); in testQuotes()
60 AbstractStubCommandHandler.quotes(null); in testQuotes_Null()
/external/python/cpython3/Lib/
Dshlex.py44 self.quotes = '\'"'
168 elif nextchar in self.quotes:
181 elif self.state in self.quotes:
209 if (escapedstate in self.quotes and
243 elif self.posix and nextchar in self.quotes:
248 elif (nextchar in self.wordchars or nextchar in self.quotes
/external/markdown/tests/markdown-test/
Dliteral-quotes.txt3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
/external/markdown/MarkdownTest/Tests_2007/
DLiteral quotes in titles.text3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
/external/markdown/MarkdownTest/Tests_2004/
DLiteral quotes in titles.text3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
/external/python/cpython3/Doc/tutorial/
Dintroduction.rst29 text = "# This is not a comment because it's inside quotes."
138 in several ways. They can be enclosed in single quotes (``'...'``) or
139 double quotes (``"..."``) with the same result [#]_. ``\`` can be used
140 to escape quotes::
142 >>> 'spam eggs' # single quotes
146 >>> "doesn't" # ...or use double quotes instead
155 In the interactive interpreter, the output string is enclosed in quotes and
157 look different from the input (the enclosing quotes could change), the two
158 strings are equivalent. The string is enclosed in double quotes if
159 the string contains a single quote and no double quotes, otherwise it is
[all …]
/external/python/cpython2/Doc/library/
Dshlex.rst109 Normally, this method first strips any quotes off the argument. If the result
191 .. attribute:: shlex.quotes
193 Characters that will be considered string quotes. The token accumulates until
195 other as in the shell.) By default, includes ASCII single and double quotes.
200 Characters in :attr:`quotes` that will interpret escape characters defined in
279 * Enclosing characters in quotes preserve the literal value of all characters
280 within the quotes;
282 * Closing quotes separate words (``"Do"Separate`` is parsed as ``"Do"`` and
303 * Enclosing characters in quotes which are not part of
305 of all characters within the quotes;
[all …]
/external/cldr/tools/java/org/unicode/cldr/tool/
DFixDelimiters.java89 static Matcher quotes = PatternCache.get("(.*)…(.*)").matcher(""); field in FixDelimiters.Quotes
94 if (!quotes.reset(input).matches()) { in Quotes()
97 start = quotes.group(1); in Quotes()
98 end = quotes.group(2); in Quotes()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPUtilsImpl.java84 String separator, String quotes, boolean allowCommas) throws XMPException in catenateArrayItems() argument
93 if (quotes == null || quotes.length() == 0) in catenateArrayItems()
95 quotes = "\""; in catenateArrayItems()
118 char openQuote = quotes.charAt(0); in catenateArrayItems()
119 char closeQuote = checkQuotes(quotes, openQuote); in catenateArrayItems()
872 private static char checkQuotes(String quotes, char openQuote) throws XMPException in checkQuotes() argument
882 if (quotes.length() == 1) in checkQuotes()
888 closeQuote = quotes.charAt(1); in checkQuotes()
/external/python/cpython2/Lib/email/
Dutils.py95 quotes = ''
97 quotes = '"'
99 return '%s%s%s <%s>' % (quotes, name, quotes, address)
/external/swiftshader/third_party/SPIRV-Tools/test/
Dtext_word_get_test.cpp142 AutoText input(R"(quotes" "between words)"); in TEST()
143 const char* expected[] = {R"(quotes" "between)", "words"}; in TEST()

12345678910>>...21