/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Quoter.java | 15 protected boolean quoting = false; field in Quoter 19 quoting = value; in setQuoting() 23 return quoting; in isQuoting() 27 quoting = false; in clear() 57 if (quoting == value) return; in setQuoting() 58 if (quoting) { // stop quoting in setQuoting() 61 quoting = value; in setQuoting() 66 if (quoting) { in append()
|
/external/python/cpython3/Lib/test/ |
D | test_csv.py | 35 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/ |
D | test_csv.py | 35 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.c | 103 int quoting; /* style of quoting to write */ member 203 return PyInt_FromLong(self->quoting); in Dialect_get_quoting() 291 dialect_check_quoting(int quoting) in dialect_check_quoting() argument 296 if (qs->style == quoting) in dialect_check_quoting() 352 PyObject *quoting = NULL; in dialect_new() local 364 "ing, in dialect_new() 384 quoting == 0 && in dialect_new() 402 Py_XINCREF(quoting); in dialect_new() 414 DIALECT_GETATTR(quoting, "quoting"); in dialect_new() 429 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL); in dialect_new() [all …]
|
/external/python/cpython3/Modules/ |
D | _csv.c | 83 int quoting; /* style of quoting to write */ member 188 return PyLong_FromLong(self->quoting); in Dialect_get_quoting() 280 dialect_check_quoting(int quoting) in dialect_check_quoting() argument 285 if ((int)qs->style == quoting) in dialect_check_quoting() 341 PyObject *quoting = NULL; in dialect_new() local 353 "ing, in dialect_new() 373 quoting == NULL && in dialect_new() 391 Py_XINCREF(quoting); in dialect_new() 403 DIALECT_GETATTR(quoting, "quoting"); in dialect_new() 418 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL); in dialect_new() [all …]
|
/external/ImageMagick/MagickWand/tests/ |
D | README | 16 Tests include quoting, mixed quoting, backslash escapes, line
|
D | script-token-test-data.txt | 16 'regardless \n of quoting'
|
D | script-token-test-results.txt | 8 l=16, c=1, stat=0, len=64, token="regardless \n of quoting"
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | text_handler.cpp | 100 bool quoting = false; in getWord() local 115 if (!escaping) quoting = !quoting; in getWord() 122 if (escaping || quoting) break; in getWord()
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | text_handler.cpp | 100 bool quoting = false; in getWord() local 115 if (!escaping) quoting = !quoting; in getWord() 122 if (escaping || quoting) break; in getWord()
|
/external/python/cpython3/Lib/ |
D | csv.py | 41 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/PCbuild/ |
D | find_msbuild.bat | 14 @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.
|
D | find_python.bat | 13 @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.
|
/external/python/cpython2/Lib/ |
D | csv.py | 43 quoting = None variable in Dialect 64 quoting = QUOTE_MINIMAL variable in excel 193 quoting = QUOTE_MINIMAL variable in Sniffer.sniff.dialect
|
/external/python/cpython3/PCbuild/ |
D | find_python.bat | 13 @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.
|
D | find_msbuild.bat | 14 @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.
|
/external/llvm/test/MC/COFF/ |
D | symbol-mangling.ll | 2 ; names needing quoting on MS/Windows. This code is generated by clang when
|
/external/python/cpython3/Doc/library/ |
D | csv.rst | 23 Still, while the delimiters and quoting characters vary, the overall format is 110 quotechar='|', quoting=csv.QUOTE_MINIMAL) 244 generated on UNIX systems, i.e. using ``'\n'`` as line terminator and quoting 351 A one-character string used by the writer to escape the *delimiter* if *quoting* 376 .. attribute:: Dialect.quoting 492 reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) 520 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
|
D | urllib.parse.rst | 31 categories: URL parsing and URL quoting. These are covered in detail in 386 functions. The URL quoting functions use their own rules when producing 388 individual URL quoting functions. 484 The URL quoting functions focus on taking program data and making it safe 485 for use as URL components by quoting special characters and appropriately 494 function is intended for quoting the path section of URL. The optional *safe* 501 Moved from :rfc:`2396` to :rfc:`3986` for quoting URL strings. "~" is now 521 quoting HTML form values when building up a query string to go into a URL.
|
/external/python/cpython2/Doc/library/ |
D | csv.rst | 22 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 495 reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) 509 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
|
D | pipes.rst | 63 The quoting is compatible with UNIX shells and with :func:`shlex.split`:
|
/external/clang/docs/ |
D | JSONCompilationDatabase.rst | 78 Parameters use shell quoting and shell escaping of quotes, with '``"``'
|
/external/one-true-awk/ |
D | README | 79 when running on Windows under command.com, various quoting
|
/external/protobuf/csharp/ |
D | CHANGES.txt | 34 - Issue 81: quoting for NUnit parameters.
|
/external/python/cpython3/Doc/reference/ |
D | lexical_analysis.rst | 616 using different quoting conventions, are allowed, and their meaning is the same 628 at run time. Also note that literal concatenation can use different quoting 726 quoting used in the outer formatted string literal:: 729 f"abc {a['x']} def" # workaround: use different quoting
|