/external/libchrome/base/strings/ |
D | string_split.cc | 161 StringPiece separators, in SplitString() argument 164 if (separators.size() == 1) { in SplitString() 166 input, separators[0], whitespace, result_type); in SplitString() 169 input, separators, whitespace, result_type); in SplitString() 173 StringPiece16 separators, in SplitString() argument 176 if (separators.size() == 1) { in SplitString() 178 input, separators[0], whitespace, result_type); in SplitString() 181 input, separators, whitespace, result_type); in SplitString() 185 StringPiece separators, in SplitStringPiece() argument 188 if (separators.size() == 1) { in SplitStringPiece() [all …]
|
D | string_split.h | 48 StringPiece separators, 53 StringPiece16 separators, 71 StringPiece separators, 76 StringPiece16 separators,
|
/external/python/cpython2/Lib/json/ |
D | __init__.py | 117 separators=None, 123 allow_nan=True, cls=None, indent=None, separators=None, argument 177 cls is None and indent is None and separators is None and 185 separators=separators, encoding=encoding, 194 allow_nan=True, cls=None, indent=None, separators=None, argument 242 cls is None and indent is None and separators is None and 250 separators=separators, encoding=encoding, default=default,
|
D | encoder.py | 103 indent=None, separators=None, encoding='utf-8', default=None): argument 159 if separators is not None: 160 self.item_separator, self.key_separator = separators
|
/external/python/cpython3/Lib/json/ |
D | __init__.py | 116 separators=None, 121 allow_nan=True, cls=None, indent=None, separators=None, argument 167 cls is None and indent is None and separators is None and 175 separators=separators, 184 allow_nan=True, cls=None, indent=None, separators=None, argument 229 cls is None and indent is None and separators is None and 237 separators=separators, default=default, sort_keys=sort_keys,
|
D | encoder.py | 106 indent=None, separators=None, default=None): argument 153 if separators is not None: 154 self.item_separator, self.key_separator = separators
|
/external/python/cpython3/Lib/test/test_json/ |
D | test_separators.py | 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : ')) 44 self.assertRaises(TypeError, self.dumps, h, separators=(b', ', ': ')) 45 self.assertRaises(TypeError, self.dumps, h, separators=(', ', b': ')) 46 self.assertRaises(TypeError, self.dumps, h, separators=(b', ', b': '))
|
D | test_indent.py | 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(',', ': ')) 34 d3 = self.dumps(h, indent='\t', sort_keys=True, separators=(',', ': '))
|
/external/google-breakpad/src/processor/ |
D | tokenize.cc | 46 const char *separators, in Tokenize() argument 57 char *token = strtok_r(line, separators, &save_ptr); in Tokenize() 61 token = strtok_r(NULL, separators, &save_ptr); in Tokenize()
|
D | tokenize.h | 54 const char *separators,
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | PathV2.cpp | 26 const StringRef separators = "\\/"; variable 29 const StringRef separators = "/"; variable 58 size_t end = path.find_first_of(separators, 2); in find_first_component() 73 size_t end = path.find_first_of(separators, 2); in find_first_component() 86 size_t pos = str.find_last_of(separators, str.size() - 1); in filename_pos() 120 return str.find_first_of(separators, 2); in root_dir_start() 216 size_t end_pos = Path.find_first_of(separators, Position); in operator ++() 377 size_t loc = i->find_first_not_of(separators); in append()
|
/external/python/cpython2/Lib/plat-irix5/ |
D | panelparser.py | 14 separators = operators + whitespace + ';' + '"' variable 45 if s[i] in separators: break
|
/external/python/cpython2/Lib/plat-irix6/ |
D | panelparser.py | 14 separators = operators + whitespace + ';' + '"' variable 45 if s[i] in separators: break
|
/external/icu/icu4j/eclipse-build/misc/ |
D | ICUConfig.properties | 19 # decimal/grouping separators. When this property is true, 20 # DecimalFormat uses separators configured by DecimalFormatSymbols only
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 39 const char *separators = "\\/"; variable 42 const char separators = '/'; variable 69 size_t end = path.find_first_of(separators, 2); in find_first_component() 78 size_t end = path.find_first_of(separators); in find_first_component() 91 size_t pos = str.find_last_of(separators, str.size() - 1); in filename_pos() 125 return str.find_first_of(separators, 2); in root_dir_start() 295 size_t end_pos = Path.find_first_of(separators, Position); in operator ++() 470 size_t loc = component.find_first_not_of(separators); in append() 769 assert(P.find_first_of(separators) == StringRef::npos && in createTemporaryFile()
|
/external/llvm/lib/Support/ |
D | Path.cpp | 39 const char *separators = "\\/"; variable 42 const char separators = '/'; variable 69 size_t end = path.find_first_of(separators, 2); in find_first_component() 78 size_t end = path.find_first_of(separators); in find_first_component() 91 size_t pos = str.find_last_of(separators, str.size() - 1); in filename_pos() 125 return str.find_first_of(separators, 2); in root_dir_start() 295 size_t end_pos = Path.find_first_of(separators, Position); in operator ++() 470 size_t loc = component.find_first_not_of(separators); in append() 767 assert(P.find_first_of(separators) == StringRef::npos && in createTemporaryFile()
|
/external/toolchain-utils/crosperf/ |
D | results_report_unittest.py | 350 separators = (',\t\n\t', ':\t\n\t') 355 bench_results, json_args={'separators': separators}) 357 self.assertIn(separators[0], result_str) 358 self.assertIn(separators[1], result_str)
|
/external/emma/core/java12/com/vladium/emma/filter/ |
D | IInclExclFilter.java | 38 …public static IInclExclFilter create (final String specs1, final String separators, final String [… in create() argument 54 for (StringTokenizer tokenizer = new StringTokenizer (specs1, separators); in create()
|
/external/icu/icu4c/source/test/testdata/ |
D | numberformattestspecification.txt | 773 // Trailing grouping separators are not OK. 792 // Parsing stops at comma as it is different from other separators 802 // C allows trailing separators when there is a prefix and suffix. 803 // H allows trailing separators only when there is just a prefix. 812 // H bails. Doesn't allow trailing separators when there is prefix and suffix. 836 // H bails b/c of trailing separators 839 // H, C, and P bail because of trailing separators 855 // separators in wrong place cause failure, no separators ok. 859 // JDK does allow separators in the wrong place and parses as -5347.25 866 // Strict doesn't allow separators in sci notation. [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
D | numberformattestspecification.txt | 773 // Trailing grouping separators are not OK. 792 // Parsing stops at comma as it is different from other separators 802 // C allows trailing separators when there is a prefix and suffix. 803 // H allows trailing separators only when there is just a prefix. 812 // H bails. Doesn't allow trailing separators when there is prefix and suffix. 836 // H bails b/c of trailing separators 839 // H, C, and P bail because of trailing separators 855 // separators in wrong place cause failure, no separators ok. 859 // JDK does allow separators in the wrong place and parses as -5347.25 866 // Strict doesn't allow separators in sci notation. [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
D | numberformattestspecification.txt | 773 // Trailing grouping separators are not OK. 792 // Parsing stops at comma as it is different from other separators 802 // C allows trailing separators when there is a prefix and suffix. 803 // H allows trailing separators only when there is just a prefix. 812 // H bails. Doesn't allow trailing separators when there is prefix and suffix. 836 // H bails b/c of trailing separators 839 // H, C, and P bail because of trailing separators 855 // separators in wrong place cause failure, no separators ok. 859 // JDK does allow separators in the wrong place and parses as -5347.25 866 // Strict doesn't allow separators in sci notation. [all …]
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | document-separator-in-quoted-scalar.loader-error | 11 document separators"
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/ |
D | ICUConfig.properties | 30 # decimal/grouping separators. When this property is true, 31 # DecimalFormat uses separators configured by DecimalFormatSymbols only
|
/external/icu/android_icu4j/resources/android/icu/ |
D | ICUConfig.properties | 30 # decimal/grouping separators. When this property is true, 31 # DecimalFormat uses separators configured by DecimalFormatSymbols only
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | SeparatorColon.java | 24 @Parameters(separators = ":")
|