Home
last modified time | relevance | path

Searched refs:quoting (Results 1 – 25 of 129) sorted by relevance

123456

/external/python/cpython3/Lib/test/
Dtest_csv.py35 self.assertRaises(TypeError, ctor, arg, quoting=None)
37 quoting=csv.QUOTE_ALL, quotechar='')
39 quoting=csv.QUOTE_ALL, quotechar=None)
55 self.assertEqual(obj.dialect.quoting, csv.QUOTE_MINIMAL)
75 quoting=csv.QUOTE_NONE, skipinitialspace=True,
83 self.assertEqual(obj.dialect.quoting, csv.QUOTE_NONE)
101 quoting=csv.QUOTE_ALL variable in Test_Csv._test_dialect_attrs.dialect
111 self.assertEqual(obj.dialect.quoting, csv.QUOTE_ALL)
142 self._write_error_test(csv.Error, [None], quoting = csv.QUOTE_NONE)
165 quoting = csv.QUOTE_NONE)
[all …]
/external/python/cpython2/Lib/test/
Dtest_csv.py35 self.assertRaises(TypeError, ctor, arg, quoting=None)
37 quoting=csv.QUOTE_ALL, quotechar='')
39 quoting=csv.QUOTE_ALL, quotechar=None)
55 self.assertEqual(obj.dialect.quoting, csv.QUOTE_MINIMAL)
75 quoting=csv.QUOTE_NONE, skipinitialspace=True,
83 self.assertEqual(obj.dialect.quoting, csv.QUOTE_NONE)
101 quoting=csv.QUOTE_ALL variable in Test_Csv._test_dialect_attrs.dialect
111 self.assertEqual(obj.dialect.quoting, csv.QUOTE_ALL)
152 self._write_error_test(csv.Error, [None], quoting = csv.QUOTE_NONE)
175 quoting = csv.QUOTE_NONE)
[all …]
/external/python/cpython2/Modules/
D_csv.c103 int quoting; /* style of quoting to write */ member
203 return PyInt_FromLong(self->quoting); in Dialect_get_quoting()
287 dialect_check_quoting(int quoting) in dialect_check_quoting() argument
292 if (qs->style == quoting) in dialect_check_quoting()
348 PyObject *quoting = NULL; in dialect_new() local
360 &quoting, in dialect_new()
380 quoting == 0 && in dialect_new()
398 Py_XINCREF(quoting); in dialect_new()
410 DIALECT_GETATTR(quoting, "quoting"); in dialect_new()
425 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL); in dialect_new()
[all …]
/external/python/cpython3/Modules/
D_csv.c83 int quoting; /* style of quoting to write */ member
189 return PyLong_FromLong(self->quoting); in Dialect_get_quoting()
287 dialect_check_quoting(int quoting) in dialect_check_quoting() argument
292 if ((int)qs->style == quoting) in dialect_check_quoting()
348 PyObject *quoting = NULL; in dialect_new() local
360 &quoting, in dialect_new()
380 quoting == 0 && in dialect_new()
398 Py_XINCREF(quoting); in dialect_new()
410 DIALECT_GETATTR(quoting, "quoting"); in dialect_new()
425 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL); in dialect_new()
[all …]
/external/ImageMagick/MagickWand/tests/
DREADME16 Tests include quoting, mixed quoting, backslash escapes, line
Dscript-token-test-data.txt16 'regardless \n of quoting'
Dscript-token-test-results.txt8 l=16, c=1, stat=0, len=64, token="regardless \n of quoting"
/external/python/cpython3/Lib/
Dcsv.py41 quoting = None variable in Dialect
62 quoting = QUOTE_MINIMAL variable in excel
77 quoting = QUOTE_ALL variable in unix_dialect
193 quoting = QUOTE_MINIMAL variable in Sniffer.sniff.dialect
/external/python/cpython2/Lib/
Dcsv.py43 quoting = None variable in Dialect
64 quoting = QUOTE_MINIMAL variable in excel
193 quoting = QUOTE_MINIMAL variable in Sniffer.sniff.dialect
/external/python/cpython3/Doc/library/
Dcsv.rst23 Still, while the delimiters and quoting characters vary, the overall format is
110 quotechar='|', quoting=csv.QUOTE_MINIMAL)
246 generated on UNIX systems, i.e. using ``'\n'`` as line terminator and quoting
353 A one-character string used by the writer to escape the *delimiter* if *quoting*
378 .. attribute:: Dialect.quoting
491 reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE)
519 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
Durllib.parse.rst31 categories: URL parsing and URL quoting. These are covered in detail in
347 functions. The URL quoting functions use their own rules when producing
349 individual URL quoting functions.
445 The URL quoting functions focus on taking program data and making it safe
446 for use as URL components by quoting special characters and appropriately
455 function is intended for quoting the path section of URL. The optional *safe*
478 quoting HTML form values when building up a query string to go into a URL.
Demail.headerregistry.rst391 The display name portion of the address, if any, with all quoting
397 The ``username`` portion of the address, with all quoting removed.
/external/llvm/test/MC/COFF/
Dsymbol-mangling.ll2 ; names needing quoting on MS/Windows. This code is generated by clang when
/external/python/cpython2/Doc/library/
Dcsv.rst22 delimiters and quoting characters vary, the overall format is similar enough
123 quotechar='|', quoting=csv.QUOTE_MINIMAL)
353 A one-character string used by the writer to escape the *delimiter* if *quoting*
378 .. attribute:: Dialect.quoting
494 reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE)
508 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
Dpipes.rst63 The quoting is compatible with UNIX shells and with :func:`shlex.split`:
Dsubprocess.rst211 and quoting of arguments (e.g. to permit spaces in file names). If passing
315 list elements, while arguments that need quoting or backslash escaping when
331 includes, for example, quoting or backslash escaping filenames with spaces in
/external/clang/docs/
DJSONCompilationDatabase.rst78 Parameters use shell quoting and shell escaping of quotes, with '``"``'
/external/one-true-awk/
DREADME79 when running on Windows under command.com, various quoting
/external/protobuf/csharp/
DCHANGES.txt34 - Issue 81: quoting for NUnit parameters.
/external/python/cpython3/Doc/reference/
Dlexical_analysis.rst583 using different quoting conventions, are allowed, and their meaning is the same
595 at run time. Also note that literal concatenation can use different quoting
682 quoting used in the outer formatted string literal::
685 f"abc {a['x']} def" # workaround: use different quoting
/external/iptables/extensions/
Dlibxt_u32.man60 that do occur there are likely to require shell quoting, so it is a good idea
/external/markdown/tests/extensions-x-toc/
Dsyntax-toc.txt213 familiar with quoting passages of text in an email message, then you
237 > This is the first level of quoting.
255 Any decent text editor should make email-style quoting easy. For
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DProgram.inc173 // process. We have to concatenate them all, while quoting the args that
/external/markdown/MarkdownTest/Tests_2004/
DMarkdown Documentation - Syntax.text250 familiar with quoting passages of text in an email message, then you
274 > This is the first level of quoting.
292 Any decent text editor should make email-style quoting easy. For
/external/markdown/MarkdownTest/Tests_2007/
DMarkdown Documentation - Syntax.text250 familiar with quoting passages of text in an email message, then you
274 > This is the first level of quoting.
292 Any decent text editor should make email-style quoting easy. For

123456