HomeSort by relevance Sort by last modified time
    Searched refs:quoted (Results 51 - 75 of 492) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_csv.c 618 /* start quoted field */
677 /* in quoted field */
711 /* doublequote - seen a quote in an quoted field */
970 int *quoted, int copy_phase)
994 if (copy_phase && *quoted)
1019 *quoted = 1;
1035 /* If field is empty check if it needs to be quoted.
1040 "single empty field record must be quoted");
1044 *quoted = 1;
1047 if (*quoted) {
1156 int quoted; local
    [all...]
  /external/python/cpython2/Modules/
_csv.c 627 /* start quoted field */
686 /* in quoted field */
720 /* doublequote - seen a quote in a quoted field */
982 int *quoted, int copy_phase)
1014 if (copy_phase && *quoted)
1039 *quoted = 1;
1055 /* If field is empty check if it needs to be quoted.
1060 "single empty field record must be quoted");
1064 *quoted = 1;
1067 if (*quoted) {
1183 int quoted; local
    [all...]
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
writer.go 11 // A Writer is a quoted-printable writer that implements io.WriteCloser.
28 // Write encodes p using quoted-printable encoding and writes it to the
75 // write limits text encoded in quoted-printable to 76 characters per line.
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
writer.go 11 // A Writer is a quoted-printable writer that implements io.WriteCloser.
28 // Write encodes p using quoted-printable encoding and writes it to the
75 // write limits text encoded in quoted-printable to 76 characters per line.
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader.go 23 // quoted-fields. The beginning and ending quote are not part of the
28 // normal string,"quoted-field"
32 // {`normal string`, `quoted-field`}
34 // Within a quoted-field a quote character followed by a second quote
37 // "the ""word"" is true","a ""quoted-field"""
41 // {`the "word" is true`, `a "quoted-field"`}
43 // Newlines and commas may be included in a quoted-field
86 ErrBareQuote = errors.New("bare \" in non-quoted-field")
87 ErrQuote = errors.New("extraneous or missing \" in quoted-field")
131 // non-doubled quote may appear in a quoted field
    [all...]
  /prebuilts/go/linux-x86/src/encoding/csv/
reader.go 23 // quoted-fields. The beginning and ending quote are not part of the
28 // normal string,"quoted-field"
32 // {`normal string`, `quoted-field`}
34 // Within a quoted-field a quote character followed by a second quote
37 // "the ""word"" is true","a ""quoted-field"""
41 // {`the "word" is true`, `a "quoted-field"`}
43 // Newlines and commas may be included in a quoted-field
86 ErrBareQuote = errors.New("bare \" in non-quoted-field")
87 ErrQuote = errors.New("extraneous or missing \" in quoted-field")
131 // non-doubled quote may appear in a quoted field
    [all...]
  /external/iproute2/tc/
m_ematch.h 18 int quoted; member in struct:bstr
  /external/libmojo/build/
gn_helpers.py 89 string interpolation on a string variable, the strings will not be quoted:
95 accepts only quoted strings like GN scripts. In such cases, you can just use
100 strings will be quoted and escaped according to GN rules so the list can be
183 - GN strings (double-quoted as in '"asdf"') will be converted to Python
  /external/skia/gn/
gn_helpers.py 89 string interpolation on a string variable, the strings will not be quoted:
95 accepts only quoted strings like GN scripts. In such cases, you can just use
100 strings will be quoted and escaped according to GN rules so the list can be
183 - GN strings (double-quoted as in '"asdf"') will be converted to Python
  /external/skqp/gn/
gn_helpers.py 89 string interpolation on a string variable, the strings will not be quoted:
95 accepts only quoted strings like GN scripts. In such cases, you can just use
100 strings will be quoted and escaped according to GN rules so the list can be
183 - GN strings (double-quoted as in '"asdf"') will be converted to Python
  /external/tensorflow/tensorflow/core/kernels/
decode_csv_op.cc 200 bool quoted = false; local
202 quoted = true;
208 if (!quoted) {
224 // Quoted field needs to be ended with '"' and delim or end
247 errors::InvalidArgument("Quoted field has to end with quote "
  /art/tools/wrapagentproperties/
wrapagentproperties.cc 278 LOG(INFO) << "Overriding property " << std::quoted(prop) << " new value is "
279 << std::quoted(val);
314 LOG(ERROR) << "unable to read property file at " << std::quoted(prop_file) << "!";
318 LOG(INFO) << "Chaining to next agent[" << std::quoted(agent_lib) << "] options=["
319 << std::quoted(agent_options) << "]";
  /prebuilts/go/darwin-x86/src/cmd/go/internal/generate/
generate.go 55 double-quoted strings passed to the generator as individual
58 Quoted strings use Go syntax and are evaluated before execution; a
59 quoted string appears as a single argument to the generator.
76 Other than variable substitution and quoted-string evaluation, no
84 order of evaluation, variables are expanded even inside quoted
295 // split breaks the line into words, evaluating quoted
299 // Parse line, obeying quoted strings.
306 // One (possibly quoted) word per iteration.
325 g.errorf("bad quoted string")
331 g.errorf("expect space after quoted argument"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/generate/
generate.go 55 double-quoted strings passed to the generator as individual
58 Quoted strings use Go syntax and are evaluated before execution; a
59 quoted string appears as a single argument to the generator.
76 Other than variable substitution and quoted-string evaluation, no
84 order of evaluation, variables are expanded even inside quoted
295 // split breaks the line into words, evaluating quoted
299 // Parse line, obeying quoted strings.
306 // One (possibly quoted) word per iteration.
325 g.errorf("bad quoted string")
331 g.errorf("expect space after quoted argument"
    [all...]
  /external/iptables/iptables/
iptables-xml.c 81 /* arg meta data, were they quoted, frinstance */
104 add_argv(char *what, int quoted)
109 newargvattr[newargc] = quoted;
398 /* use argvattr to tell which arguments were quoted
399 to avoid comparing quoted arguments, like comments, to -j, */
503 || (argv[arg + 1][0] == '-' /* NOT QUOTED */ )) {
744 int quote_open, quoted; local
783 /* We need to know which args were quoted so we
785 quoted = 0;
799 quoted = 1
    [all...]
  /prebuilts/go/darwin-x86/src/net/mail/
message.go 401 // local-part = dot-atom / quoted-string
408 // quoted-string
409 debug.Printf("consumeAddrSpec: parsing quoted-string")
412 err = errors.New("mail: empty quoted string in addr-spec")
450 // word = atom / quoted-string
458 // quoted-string
490 // consumeQuotedString parses the quoted string at the start of p.
504 return "", errors.New("mail: unclosed quoted-string")
507 return "", fmt.Errorf("mail: invalid utf-8 in quoted-string: %q", p.s)
510 // quoted-pair = ("\" (VCHAR / WSP)
    [all...]
  /prebuilts/go/linux-x86/src/net/mail/
message.go 401 // local-part = dot-atom / quoted-string
408 // quoted-string
409 debug.Printf("consumeAddrSpec: parsing quoted-string")
412 err = errors.New("mail: empty quoted string in addr-spec")
450 // word = atom / quoted-string
458 // quoted-string
490 // consumeQuotedString parses the quoted string at the start of p.
504 return "", errors.New("mail: unclosed quoted-string")
507 return "", fmt.Errorf("mail: invalid utf-8 in quoted-string: %q", p.s)
510 // quoted-pair = ("\" (VCHAR / WSP)
    [all...]
  /external/python/cpython3/Modules/
_csv.c 628 /* start quoted field */
698 /* in quoted field */
732 /* doublequote - seen a quote in a quoted field */
1008 Py_ssize_t field_len, int *quoted,
1037 if (copy_phase && *quoted)
1062 *quoted = 1;
1078 if (*quoted) {
1205 int quoted; local
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
context.go 74 // grammar may contain embedded actions in a template. For instance, the quoted
109 // stateJSDqStr occurs inside a JavaScript double quoted string.
111 // stateJSSqStr occurs inside a JavaScript single quoted string.
121 // stateCSSDqStr occurs inside a CSS double quoted string.
123 // stateCSSSqStr occurs inside a CSS single quoted string.
125 // stateCSSDqURL occurs inside a CSS double quoted url("...").
127 // stateCSSSqURL occurs inside a CSS single quoted url('...').
  /prebuilts/go/linux-x86/src/html/template/
context.go 74 // grammar may contain embedded actions in a template. For instance, the quoted
109 // stateJSDqStr occurs inside a JavaScript double quoted string.
111 // stateJSSqStr occurs inside a JavaScript single quoted string.
121 // stateCSSDqStr occurs inside a CSS double quoted string.
123 // stateCSSSqStr occurs inside a CSS single quoted string.
125 // stateCSSDqURL occurs inside a CSS double quoted url("...").
127 // stateCSSSqURL occurs inside a CSS single quoted url('...').
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 32 boolean quoted = false;
64 quoted = !quoted;
72 else if (c == '\\' && !(escaped || quoted))
  /external/libmojo/base/android/java/src/org/chromium/base/
CommandLine.java 203 Log.w(TAG, "Unterminated quoted string: " + arg);
  /external/skia/tools/skpbench/
skpbench.py 82 quoted = ['\'%s\'' % re.sub(r'([\\\'])', r'\\\1', x) for x in commandline]
83 print(' '.join(quoted), file=sys.stderr)
  /external/skqp/tools/skpbench/
skpbench.py 82 quoted = ['\'%s\'' % re.sub(r'([\\\'])', r'\\\1', x) for x in commandline]
83 print(' '.join(quoted), file=sys.stderr)
  /external/tpm2/
Marshal_Quote.c 27 total_size += TPM2B_ATTEST_Marshal(&source->quoted, buffer, size);

Completed in 552 milliseconds

1 23 4 5 6 7 8 91011>>