Home
last modified time | relevance | path

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

12345678910>>...30

/external/tensorflow/tensorflow/core/profiler/utils/
Dparse_annotation.cc52 std::stack<char> quotes; in SplitPairs() local
59 if (quotes.empty() || quotes.top() != ch) { in SplitPairs()
60 quotes.push(ch); in SplitPairs()
62 quotes.pop(); in SplitPairs()
68 quotes.push(ch); in SplitPairs()
71 if (!quotes.empty() && quotes.top() == '{') { in SplitPairs()
72 quotes.pop(); in SplitPairs()
76 if (!quotes.empty() && quotes.top() == '(') { in SplitPairs()
77 quotes.pop(); in SplitPairs()
81 if (!quotes.empty() && quotes.top() == '[') { in SplitPairs()
[all …]
/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/markdown/tests/extensions/
Dsmarty.txt19 "Ellipsis within quotes..."
28 \'Escaped\' \"quotes\"
31 'Escaped \"quotes\" in real ones'
32 \'"Real" quotes in escaped ones\'
/external/boringssl/src/crypto/asn1/
Da_strex.c135 unsigned long flags, char *quotes, BIO *out) { in do_buf() argument
181 int len = do_esc_char(utf8_buf[i], flags, quotes, out, in do_buf()
189 int len = do_esc_char(c, flags, quotes, out, is_first, is_last); in do_buf()
338 char quotes = 0; in ASN1_STRING_print_ex() local
339 int len = do_buf(str->data, str->length, encoding, flags, &quotes, NULL); in ASN1_STRING_print_ex()
344 if (quotes) { in ASN1_STRING_print_ex()
352 if ((quotes && !maybe_write(out, "\"", 1)) || in ASN1_STRING_print_ex()
354 (quotes && !maybe_write(out, "\"", 1))) { in ASN1_STRING_print_ex()
/external/cronet/third_party/boringssl/src/crypto/asn1/
Da_strex.c135 unsigned long flags, char *quotes, BIO *out) { in do_buf() argument
181 int len = do_esc_char(utf8_buf[i], flags, quotes, out, in do_buf()
189 int len = do_esc_char(c, flags, quotes, out, is_first, is_last); in do_buf()
338 char quotes = 0; in ASN1_STRING_print_ex() local
339 int len = do_buf(str->data, str->length, encoding, flags, &quotes, NULL); in ASN1_STRING_print_ex()
344 if (quotes) { in ASN1_STRING_print_ex()
352 if ((quotes && !maybe_write(out, "\"", 1)) || in ASN1_STRING_print_ex()
354 (quotes && !maybe_write(out, "\"", 1))) { in ASN1_STRING_print_ex()
/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/
Da_strex.c168 int type, unsigned char flags, char *quotes, BIO *out) in do_buf() argument
243 quotes, out); in do_buf()
249 len = do_esc_char(c, (unsigned char)(flags | orflags), quotes, out); in do_buf()
361 char quotes; in ASN1_STRING_print_ex() local
363 quotes = 0; in ASN1_STRING_print_ex()
418 len = do_buf(str->data, str->length, type, flags, &quotes, NULL); in ASN1_STRING_print_ex()
422 if (quotes) in ASN1_STRING_print_ex()
426 if (quotes && !maybe_write(out, "\"", 1)) in ASN1_STRING_print_ex()
430 if (quotes && !maybe_write(out, "\"", 1)) in ASN1_STRING_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.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.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/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.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.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.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/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-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.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/markdown/docs/extensions/
Dsmarty.md9 The SmartyPants extension converts ASCII dashes, quotes and ellipses to
25 For example, one might use the following configuration to get correct quotes for
67 `smart_quotes` | `True` | whether to convert straight quotes
68 `smart_angled_quotes` | `False` | whether to convert angled quotes
/external/markdown/tests/pl/Tests_2007/
DLiteral quotes in titles.text3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
/external/markdown/tests/basic/
Dliteral-quotes.txt3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
/external/markdown/tests/pl/Tests_2004/
DLiteral quotes in titles.text3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
/external/python/cpython3/Lib/
Dshlex.py44 self.quotes = '\'"'
172 elif nextchar in self.quotes:
185 elif self.state in self.quotes:
213 if (escapedstate in self.quotes and
247 elif self.posix and nextchar in self.quotes:
252 elif (nextchar in self.wordchars or nextchar in self.quotes
/external/cldr/tools/cldr-code/src/main/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()

12345678910>>...30