Home
last modified time | relevance | path

Searched refs:quoted (Results 1 - 25 of 65) sorted by relevance

123

/third_party/python/Lib/
H A Dshlex.py134 quoted = False
156 if self.token or (self.posix and quoted):
181 if self.token or (self.posix and quoted):
186 quoted = True
226 if self.token or (self.posix and quoted):
235 if self.token or (self.posix and quoted):
264 if self.token or (self.posix and quoted):
270 if self.posix and not quoted and result == '':
333 # the string $'b is then quoted as '$'"'"'b'
/third_party/rust/crates/regex/regex-syntax/src/
H A Dlib.rs179 let mut quoted = String::new(); in escape() variables
180 escape_into(text, &mut quoted); in escape()
181 quoted in escape()
/third_party/vk-gl-cts/external/vulkan-docs/src/config/spec-macros/
H A Dextension.rb24 create_inline parent, :quoted, '<strong class="purple">' + text + '</strong>'
52 return create_inline parent, :quoted, '<code>' + target + '</code>'
72 create_inline parent, :quoted, '<code>' + target.gsub('&#8594;', '-&gt;') + '</code>'
78 create_inline parent, :quoted, '<code>' + target.gsub('&#8594;', '-&gt;') + '</code>'
84 create_inline parent, :quoted, '<code>' + target.gsub('&#8594;', '-&gt;') + '</code>'
315 create_inline parent, :quoted, 'undefined'
/third_party/python/Modules/
H A D_csv.c699 /* start quoted field */ in parse_process_char()
769 /* in quoted field */ in parse_process_char()
803 /* doublequote - seen a quote in a quoted field */ in parse_process_char()
1070 Py_ssize_t field_len, int *quoted, in join_append_data()
1099 if (copy_phase && *quoted) in join_append_data()
1127 *quoted = 1; in join_append_data()
1143 if (*quoted) { in join_append_data()
1180 join_append(WriterObj *self, PyObject *field, int quoted) in join_append() argument
1195 &quoted, 0); in join_append()
1204 &quoted, in join_append()
1069 join_append_data(WriterObj *self, unsigned int field_kind, const void *field_data, Py_ssize_t field_len, int *quoted, int copy_phase) join_append_data() argument
1261 int quoted; csv_writerow() local
[all...]
/third_party/mbedtls/programs/test/
H A Dudp_proxy_wrapper.sh43 tail="$1" quoted=""
46 *\'*) quoted="${quoted}${tail%%\'*}'\\''" tail="${tail#*\'}";;
47 *) quoted="${quoted}${tail}"; tail=; false;;
50 tpxy_cmd_snippet="$tpxy_cmd_snippet '$quoted'"
53 unset tail quoted
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DIcuTextWriter.java314 private static int goodBreak(String quoted, int end) { in goodBreak() argument
315 if (end > quoted.length()) { in goodBreak()
316 return quoted.length(); in goodBreak()
321 char current = quoted.charAt(i--); in goodBreak()
324 && quoted.charAt(i) == '\\') { in goodBreak()
331 char ch = quoted.charAt(end - 1); in goodBreak()
/third_party/node/deps/icu-small/source/tools/pkgdata/
H A Dpkgtypes.h39 * write CharList 'l' into stream 's' using delimiter 'delim' (delim can be nullptr). quoted: -1 remove, 0 as is, 1 add quotes
41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
44 * Same, but use line breaks. quoted: -1 remove, 0 as is, 1 add quotes
46 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
/third_party/icu/icu4c/source/tools/pkgdata/
H A Dpkgtypes.h39 * write CharList 'l' into stream 's' using delimiter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
44 * Same, but use line breaks. quoted: -1 remove, 0 as is, 1 add quotes
46 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
/third_party/skia/third_party/externals/icu/source/tools/pkgdata/
H A Dpkgtypes.h39 * write CharList 'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
44 * Same, but use line breaks. quoted: -1 remove, 0 as is, 1 add quotes
46 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
/third_party/curl/lib/
H A Dnetrc.c89 bool quoted; in parsenetrc() local
105 /* leading double-quote means quoted string */ in parsenetrc()
106 quoted = (*tok == '\"'); in parsenetrc()
109 if(!quoted) { in parsenetrc()
H A Daltsvc.c536 bool quoted = FALSE; in Curl_altsvc_parse() local
617 /* quoted value */ in Curl_altsvc_parse()
619 quoted = TRUE; in Curl_altsvc_parse()
622 if(quoted) { in Curl_altsvc_parse()
H A Dhsts.c168 bool quoted = FALSE; in Curl_hsts_parse() local
180 quoted = TRUE; in Curl_hsts_parse()
189 if(quoted) { in Curl_hsts_parse()
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dattribute.js19 var warnOfDeprecatedQuotedAssignment = deprecate(function () {}, "Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead.");
84 * Returns the Attribute's value quoted such that it would be legal to use
96 * * `'` - the value will be quoted with a single quote and single quotes are escaped.
97 * * `"` - the value will be quoted with a double quote and double quotes are escaped.
134 * the value is a legal CSS ident, it will not be quoted. Otherwise a quote
297 if (attrValue.length > 0 && !_this2.quoted && attrSpaces.before.length === 0 && !(_this2.spaces.value && _this2.spaces.value.after)) {
308 key: "quoted",
318 * returns a single (`'`) or double (`"`) quote character if the value is quoted.
319 * returns `null` if the value is not quoted.
372 * how the new value is quoted
[all...]
/third_party/lwip/src/netif/ppp/
H A Dutils.c116 * %q (quoted string), %t (current time) and %I (IP address) formats.
138 int base, len, neg, quoted; in ppp_vslprintf() local
284 case 'q': /* quoted string */ in ppp_vslprintf()
285 quoted = c == 'q'; in ppp_vslprintf()
299 if (!quoted && c >= 0x80) { in ppp_vslprintf()
304 if (quoted && (c == '"' || c == '\\')) in ppp_vslprintf()
307 if (quoted) { in ppp_vslprintf()
/third_party/eudev/src/shared/
H A Dutil.h127 const char* split(const char **state, size_t *l, const char *separator, bool quoted);
132 #define _FOREACH_WORD(word, length, s, separator, quoted, state) \
133 for ((state) = (s), (word) = split(&(state), &(length), (separator), (quoted)); (word); (word) = split(&(state), &(length), (separator), (quoted)))
/third_party/icu/icu4c/source/i18n/
H A Drbt_pars.cpp407 int32_t quoteStart = -1; // Most recent 'single quoted string' in parseSection()
458 // Handle quoted matter in parseSection()
465 /* This loop picks up a run of quoted text of the in parseSection()
644 // Quantifiers. We handle single characters, quoted strings, in parseSection()
660 // The */+ follows a 'quoted string' in parseSection()
1684 UBool quoted = false; in utrans_stripRules() local
1696 quoted = (UBool)!quoted; in utrans_stripRules()
1698 else if (!quoted) { in utrans_stripRules()
1742 quoted in utrans_stripRules()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Drbt_pars.cpp407 int32_t quoteStart = -1; // Most recent 'single quoted string' in parseSection()
458 // Handle quoted matter in parseSection()
465 /* This loop picks up a run of quoted text of the in parseSection()
644 // Quantifiers. We handle single characters, quoted strings, in parseSection()
660 // The */+ follows a 'quoted string' in parseSection()
1684 UBool quoted = false; in utrans_stripRules() local
1696 quoted = (UBool)!quoted; in utrans_stripRules()
1698 else if (!quoted) { in utrans_stripRules()
1742 quoted in utrans_stripRules()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Drbt_pars.cpp407 int32_t quoteStart = -1; // Most recent 'single quoted string' in parseSection()
458 // Handle quoted matter in parseSection()
465 /* This loop picks up a run of quoted text of the in parseSection()
644 // Quantifiers. We handle single characters, quoted strings, in parseSection()
660 // The */+ follows a 'quoted string' in parseSection()
1658 UBool quoted = FALSE; in utrans_stripRules() local
1670 quoted = (UBool)!quoted; in utrans_stripRules()
1672 else if (!quoted) { in utrans_stripRules()
1716 quoted in utrans_stripRules()
[all...]
/third_party/ltp/scripts/
H A Dcheckbashisms.pl183 # Remove comments in the "quoted" part of a line that starts
184 # in a quoted block? The problem is that we have no idea
199 # Remove quoted strings so we can more easily ignore comments
204 # If inside a quoted string, remove everything before the quote
282 # Remove "" / '' as they clearly aren't quoted strings
289 # Inside a quoted block
294 # Remove quoted strings delimited with $otherquote
297 # Remove quotes that are themselves quoted
319 # Still inside the quoted block, skip this line
324 # Check even if we removed the end of a quoted bloc
[all...]
/third_party/python/PCbuild/
H A Dbuild.bat4 echo.%~nx0 [flags and arguments] [quoted MSBuild options]
11 echo.entire argument must be quoted (e.g. `%~nx0 "/p:PlatformToolset=v100"`).
15 echo.need to be quoted. You can still use environment variables inside the
/third_party/node/deps/v8/third_party/zlib/google/
H A Dzip_unittest.cc654 LOG(WARNING) << "Found unexpected file: " << std::quoted(path); in TEST_F()
658 EXPECT_TRUE(ok) << "Found unexpected file: " << std::quoted(path); in TEST_F()
667 EXPECT_TRUE(false) << "Cannot find expected file: " << std::quoted(path); in TEST_F()
867 LOG_IF(WARNING, !ok) << "Found unexpected file: " << std::quoted(path); in TEST_F()
869 EXPECT_TRUE(ok) << "Found unexpected file: " << std::quoted(path); in TEST_F()
874 EXPECT_TRUE(false) << "Cannot find expected file: " << std::quoted(path); in TEST_F()
/third_party/node/deps/zlib/google/
H A Dzip_unittest.cc654 LOG(WARNING) << "Found unexpected file: " << std::quoted(path); in TEST_F()
658 EXPECT_TRUE(ok) << "Found unexpected file: " << std::quoted(path); in TEST_F()
667 EXPECT_TRUE(false) << "Cannot find expected file: " << std::quoted(path); in TEST_F()
867 LOG_IF(WARNING, !ok) << "Found unexpected file: " << std::quoted(path); in TEST_F()
869 EXPECT_TRUE(ok) << "Found unexpected file: " << std::quoted(path); in TEST_F()
874 EXPECT_TRUE(false) << "Cannot find expected file: " << std::quoted(path); in TEST_F()
/third_party/alsa-lib/src/
H A Dconf.c1538 goto quoted; in string_print()
1558 goto quoted; in string_print()
1561 goto quoted; in string_print()
1568 quoted: in string_print()
/third_party/ltp/tools/sparse/sparse-src/
H A Dtoken.h176 unsigned quoted:10; member
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DCollationMapper.java147 // with # in it. In the latter case it must be in a single-quoted string (e.g. 'x#y'). However
151 // * outside a quoted section, all characters are literal.
152 // * inside a quoted section, backslash '\' escapes any single character (e.g \a, \', \\)
163 boolean quoted = false; in findCommentStart()
167 quoted = !quoted; in findCommentStart()
171 if (quoted) { in findCommentStart()
177 if (!quoted) { in findCommentStart()
186 checkArgument(!quoted, "mismatched quotes in: %s", s); in findCommentStart()

Completed in 30 milliseconds

123