/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() 59 if (quoting == value) return; in setQuoting() 60 if (quoting) { // stop quoting in setQuoting() 63 quoting = value; in setQuoting() 69 if (quoting) { in append()
|
/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/cpython3/Lib/test/ |
D | test_csv.py | 41 self.assertRaises(TypeError, ctor, arg, quoting=None) 43 quoting=csv.QUOTE_ALL, quotechar='') 45 quoting=csv.QUOTE_ALL, quotechar=None) 67 self.assertEqual(obj.dialect.quoting, csv.QUOTE_MINIMAL) 87 quoting=csv.QUOTE_NONE, skipinitialspace=True, 95 self.assertEqual(obj.dialect.quoting, csv.QUOTE_NONE) 113 quoting=csv.QUOTE_ALL variable in Test_Csv._test_dialect_attrs.dialect 123 self.assertEqual(obj.dialect.quoting, csv.QUOTE_ALL) 154 self._write_error_test(csv.Error, [None], quoting = csv.QUOTE_NONE) 178 quoting = csv.QUOTE_NONE) [all …]
|
/external/llvm-project/lld/test/wasm/ |
D | responsefile.test | 8 RUN: not wasm-ld --rsp-quoting=foobar @%t.rsp 2>&1 | \ 10 INVRSP: invalid response file quoting: foobar 13 RUN: not wasm-ld -o a.out --rsp-quoting=windows @%t.rsp 2>&1 | \ 18 RUN: not wasm-ld -o a.out --rsp-quoting=posix @%t.rsp 2>&1 | \
|
/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/llvm-project/lld/test/COFF/ |
D | responsefile.test | 8 # RUN: not lld-link --rsp-quoting=foobar @%t.rsp 2>&1 | \ 10 INVRSP: invalid response file quoting: foobar 18 # RUN: not lld-link --rsp-quoting=windows @%t.rsp 2>&1 | \ 23 # RUN: not lld-link --rsp-quoting=posix @%t.rsp 2>&1 | \
|
/external/llvm-project/llvm/test/tools/llvm-ar/ |
D | response.test | 29 ## rsp-quoting 30 # RUN: not llvm-ar --rsp-quoting=foobar @%t.response1.txt 2>&1 | \ 32 # ERROR: Invalid response file quoting style foobar 35 # RUN: not llvm-ar --rsp-quoting=windows @%t-rsp.txt 2>&1 | \ 39 # RUN: not llvm-ar -rsp-quoting posix @%t-rsp.txt 2>&1 | \
|
/external/python/cpython3/Modules/ |
D | _csv.c | 87 int quoting; /* style of quoting to write */ member 195 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 "ing, in dialect_new() 380 quoting == NULL && 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/rust/crates/csv-core/src/ |
D | writer.rs | 213 quoting: bool, field 234 assert!(!self.state.quoting); in finish() 243 if !self.state.quoting { in finish() 253 self.state.quoting = false; in finish() 287 self.state.quoting = self.should_quote(input); in field() 288 if self.state.quoting { in field() 299 let (res, i, o) = if self.state.quoting { in field() 323 if self.state.quoting { in delimiter() 331 self.state.quoting = false; in delimiter() 356 assert!(!self.state.quoting); in terminator() [all …]
|
D | reader.rs | 117 quoting: bool, field 143 quoting: true, in default() 225 pub fn quoting(&mut self, yes: bool) -> &mut ReaderBuilder { in quoting() method 226 self.rdr.quoting = yes; in quoting() 806 if self.quoting { in build_dfa() 1004 if self.quoting && self.quote == c { in transition_nfa() 1026 if self.quoting && self.quote == c { in transition_nfa() 1028 } else if self.quoting && self.escape == Some(c) { in transition_nfa() 1036 if self.quoting && self.double_quote && self.quote == c { in transition_nfa() 1664 b.quoting(false);
|
/external/llvm-project/lld/test/ELF/ |
D | basic.s | 204 # Test for the response file (POSIX quoting style) 206 # RUN: ld.lld %t --rsp-quoting=posix @%t.responsefile 210 # Test for the response file (Windows quoting style) 212 # RUN: not ld.lld --rsp-quoting=windows %t @%t.responsefile 2>&1 | FileCheck \ 216 # Test for the response file (invalid quoting style) 217 # RUN: not ld.lld --rsp-quoting=patatino %t 2>&1 | FileCheck %s \ 219 # INVRSP: invalid response file quoting: patatino
|
/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'
|
/external/python/cffi/demo/ |
D | fastcsv.py | 17 'quoting': int(dialect.quoting), 262 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
|
/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 | 40 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
|
/external/rust/crates/quote/ |
D | METADATA | 2 description: "Quasi-quoting macro quote!(...)"
|
D | Cargo.toml.orig | 6 description = "Quasi-quoting macro quote!(...)"
|
/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/llvm/test/MC/COFF/ |
D | symbol-mangling.ll | 2 ; names needing quoting on MS/Windows. This code is generated by clang when
|
/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_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.
|