HomeSort by relevance Sort by last modified time
    Searched refs:separators (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /external/google-breakpad/src/processor/
tokenize.h 43 // characters in separators and placing them in the tokens vector.
54 const char *separators,
tokenize.cc 46 const char *separators,
57 char *token = strtok_r(line, separators, &save_ptr);
61 token = strtok_r(NULL, separators, &save_ptr);
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsEquals.java 6 @Parameters(separators = "=")
SeparatorColon.java 24 @Parameters(separators = ":")
SeparatorEqual.java 24 @Parameters(separators = "=")
SeparatorMixed.java 24 @Parameters(separators = ":=")
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
sep-err-1.s 1 ; Test error cases for separators.
sep-err-2.s 1 ; Test error cases for separators.
sep-err-3.s 1 ; Test error cases for separators.
nosep.s 1 ; Test error cases for separators.
  /external/python/cpython3/Lib/test/test_json/
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': '))
  /external/jcommander/src/test/java/com/beust/jcommander/
MyClass.java 6 @Parameters(separators = "=")
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandCommit.java 26 @Parameters(separators = "=", commandDescription = "Record changes to the repository")
  /external/libchrome/base/strings/
string_split.cc 161 StringPiece separators,
164 if (separators.size() == 1) {
166 input, separators[0], whitespace, result_type);
169 input, separators, whitespace, result_type);
173 StringPiece16 separators,
176 if (separators.size() == 1) {
178 input, separators[0], whitespace, result_type);
181 input, separators, whitespace, result_type);
185 StringPiece separators,
188 if (separators.size() == 1)
    [all...]
string_split.h 30 // Only nonempty results will be added to the results. Multiple separators
31 // will be coalesced. Separators at the beginning and end of the input will
39 // Split the given string on ANY of the given separators, returning copies of
48 StringPiece separators,
53 StringPiece16 separators,
71 StringPiece separators,
76 StringPiece16 separators,
  /external/jcommander/src/main/java/com/beust/jcommander/
Parameters.java 47 String separators() default " ";
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactEntryAdapter.java 78 ContactEntryAdapter(Context context, ArrayList<ArrayList<E>> sections, boolean separators) {
82 mSeparators = separators;
90 public final void setSections(ArrayList<ArrayList<E>> sections, boolean separators) {
92 mSeparators = separators;
180 int position, boolean separators) {
185 if (separators && sectionSize == 1) {
204 boolean separators) {
210 if (separators && sectionSize == 1) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_separators.py 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
tool.py 35 indent=4, separators=(',', ': '))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_separators.py 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
  /external/python/cpython2/Lib/json/tests/
test_separators.py 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
  /external/python/cpython2/Lib/json/
tool.py 35 indent=4, separators=(',', ': '))
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_separators.py 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))

Completed in 348 milliseconds

1 2 3 4 5 6 7 8 910