Home
last modified time | relevance | path

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

123456

/third_party/python/Lib/test/
Dtest_csv.py42 self.assertRaises(TypeError, ctor, arg, quoting=None)
44 quoting=csv.QUOTE_ALL, quotechar='')
46 quoting=csv.QUOTE_ALL, quotechar=None)
68 self.assertEqual(obj.dialect.quoting, csv.QUOTE_MINIMAL)
88 quoting=csv.QUOTE_NONE, skipinitialspace=True,
96 self.assertEqual(obj.dialect.quoting, csv.QUOTE_NONE)
114 quoting=csv.QUOTE_ALL variable in Test_Csv._test_dialect_attrs.dialect
124 self.assertEqual(obj.dialect.quoting, csv.QUOTE_ALL)
155 self._write_error_test(csv.Error, [None], quoting = csv.QUOTE_NONE)
179 quoting = csv.QUOTE_NONE)
[all …]
/third_party/python/Modules/
D_csv.c96 int quoting; /* style of quoting to write */ member
193 return PyLong_FromLong(self->quoting); in Dialect_get_quoting()
321 dialect_check_quoting(int quoting) in dialect_check_quoting() argument
326 if ((int)qs->style == quoting) in dialect_check_quoting()
401 PyObject *quoting = NULL; in dialect_new() local
413 &quoting, in dialect_new()
438 quoting == NULL && in dialect_new()
456 Py_XINCREF(quoting); in dialect_new()
473 DIALECT_GETATTR(quoting, "quoting"); in dialect_new()
487 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL); in dialect_new()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Dtext_handler.cpp100 bool quoting = false; in getWord() local
115 if (!escaping) quoting = !quoting; in getWord()
122 if (escaping || quoting) break; in getWord()
/third_party/skia/third_party/externals/spirv-tools/source/
Dtext_handler.cpp100 bool quoting = false; in getWord() local
115 if (!escaping) quoting = !quoting; in getWord()
122 if (escaping || quoting) break; in getWord()
/third_party/spirv-tools/source/
Dtext_handler.cpp102 bool quoting = false; in getWord() local
117 if (!escaping) quoting = !quoting; in getWord()
124 if (escaping || quoting) break; in getWord()
/third_party/python/Lib/
Dcsv.py40 quoting = None variable in Dialect
61 quoting = QUOTE_MINIMAL variable in excel
76 quoting = QUOTE_ALL variable in unix_dialect
192 quoting = QUOTE_MINIMAL variable in Sniffer.sniff.dialect
/third_party/popt/po/
Dpt.po44 msgid "error in parameter quoting"
45 msgstr "erros no 'quoting' de parâmetros"
Dit.po51 msgid "error in parameter quoting"
52 msgstr "errore nel quoting del parametro"
Dnl.po47 # of toch beter "quoting" behouden?
49 msgid "error in parameter quoting"
/third_party/python/PCbuild/
Dfind_python.bat13 @rem parse the next if statement - incorrect quoting in the multi-arg
17 @rem Entire command line may represent the full path if quoting failed.
Dfind_msbuild.bat14 @rem parse the next if statement - incorrect quoting in the multi-arg
18 @rem Entire command line may represent the full path if quoting failed.
/third_party/rust/crates/clap/clap_complete_fig/tests/
Dfig.rs40 fn quoting() { in quoting() function
/third_party/pulseaudio/src/daemon/
Dsystem.pa.in20 changequote(`[', `]')dnl Set up m4 quoting
/third_party/rust/crates/quote/
DCargo.toml.orig7 description = "Quasi-quoting macro quote!(...)"
DBUILD.gn26 cargo_pkg_description = "Quasi-quoting macro quote!(...)"
DCargo.toml19 description = "Quasi-quoting macro quote!(...)"
/third_party/rust/crates/clap/clap_complete/tests/
Delvish.rs40 fn quoting() { in quoting() function
Dfish.rs40 fn quoting() { in quoting() function
Dzsh.rs40 fn quoting() { in quoting() function
Dpowershell.rs40 fn quoting() { in quoting() function
Dbash.rs40 fn quoting() { in quoting() function
/third_party/python/Doc/library/
Dcsv.rst23 Still, while the delimiters and quoting characters vary, the overall format is
110 quotechar='|', quoting=csv.QUOTE_MINIMAL)
260 generated on UNIX systems, i.e. using ``'\n'`` as line terminator and quoting
381 A one-character string used by the writer to escape the *delimiter* if *quoting*
406 .. attribute:: Dialect.quoting
528 reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE)
556 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
Durllib.parse.rst31 categories: URL parsing and URL quoting. These are covered in detail in
452 functions. The URL quoting functions use their own rules when producing
454 individual URL quoting functions.
550 The URL quoting functions focus on taking program data and making it safe
551 for use as URL components by quoting special characters and appropriately
560 function is intended for quoting the path section of a URL. The optional
567 Moved from :rfc:`2396` to :rfc:`3986` for quoting URL strings. "~" is now
587 quoting HTML form values when building up a query string to go into a URL.
/third_party/rust/crates/clap/clap_mangen/tests/
Droff.rs25 fn quoting() { in quoting() function
/third_party/ffmpeg/doc/
Dutils.texi10 FFmpeg adopts the following quoting and escaping mechanism, unless
16 quoting and escaping). In addition to them, there might be other
18 and quoting are employed.
56 when quoting it:
62 Include leading or trailing whitespaces using quoting:
68 Escaping and quoting can be mixed together:
74 To include a literal @samp{\} you can use either escaping or quoting:

123456