HomeSort by relevance Sort by last modified time
    Searched full:delimiter (Results 151 - 175 of 1073) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/suite/audio_quality/lib/include/
StringUtil.h 29 /// split the given string with given delimiter and return the vector of string
32 static std::vector<android::String8>* split(const android::String8& str, char delimiter);
  /external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
ExternalClassLoader.java 38 private static String join(Collection<String> collection, String delimiter) {
44 buffer.append(delimiter);
  /external/testng/src/main/java/org/testng/remote/strprotocol/
GenericMessage.java 46 buf.append(MessageHelper.DELIMITER).append("testCount").append(getTestCount())
47 .append(MessageHelper.DELIMITER).append("suiteCount").append(getSuiteCount());
  /frameworks/base/core/java/com/android/internal/alsa/
LineTokenizer.java 37 // past a delimiter
50 // past a delimiter
  /hardware/qcom/gps/msm8084/utils/
loc_misc_utils.h 40 This function is used to split a delimiter separated string into
50 char *raw_string: is the original string with delimiter separated substrings
56 char delimiter: is the delimiter that separates the substrings. Examples: ' ', ';'
65 The input raw_string no longer remains a delimiter separated single string.
68 delimiter = ' ' //space
69 raw_string = "hello new user" //delimiter is space ' '
77 char delimiter);
  /hardware/qcom/gps/msm8909/utils/
loc_misc_utils.h 40 This function is used to split a delimiter separated string into
50 char *raw_string: is the original string with delimiter separated substrings
56 char delimiter: is the delimiter that separates the substrings. Examples: ' ', ';'
65 The input raw_string no longer remains a delimiter separated single string.
68 delimiter = ' ' //space
69 raw_string = "hello new user" //delimiter is space ' '
77 char delimiter);
  /hardware/qcom/gps/msm8994/utils/
loc_misc_utils.h 40 This function is used to split a delimiter separated string into
50 char *raw_string: is the original string with delimiter separated substrings
56 char delimiter: is the delimiter that separates the substrings. Examples: ' ', ';'
65 The input raw_string no longer remains a delimiter separated single string.
68 delimiter = ' ' //space
69 raw_string = "hello new user" //delimiter is space ' '
77 char delimiter);
  /hardware/qcom/gps/msm8996/utils/
loc_misc_utils.h 40 This function is used to split a delimiter separated string into
50 char *raw_string: is the original string with delimiter separated substrings
56 char delimiter: is the delimiter that separates the substrings. Examples: ' ', ';'
65 The input raw_string no longer remains a delimiter separated single string.
68 delimiter = ' ' //space
69 raw_string = "hello new user" //delimiter is space ' '
77 char delimiter);
  /hardware/qcom/gps/utils/
loc_misc_utils.h 40 This function is used to split a delimiter separated string into
50 char *raw_string: is the original string with delimiter separated substrings
56 char delimiter: is the delimiter that separates the substrings. Examples: ' ', ';'
65 The input raw_string no longer remains a delimiter separated single string.
68 delimiter = ' ' //space
69 raw_string = "hello new user" //delimiter is space ' '
77 char delimiter);
  /external/ipsec-tools/src/libipsec/
ipsec_dump_policy.c 73 * When delimiter == NULL, alternatively ' '(space) is applied.
76 ipsec_dump_policy(policy, delimiter)
78 __ipsec_const char *delimiter;
80 return ipsec_dump_policy1(policy, delimiter, 0);
84 ipsec_dump_policy_withports(policy, delimiter)
86 const char *delimiter;
88 return ipsec_dump_policy1(policy, delimiter, 1);
92 ipsec_dump_policy1(policy, delimiter, withports)
94 const char *delimiter;
118 /* set delimiter */
    [all...]
  /libcore/ojluni/src/main/java/java/util/
StringTokenizer.java 46 * <li>If the flag is <code>false</code>, delimiter characters serve to
49 * <li>If the flag is <code>true</code>, delimiter characters are themselves
50 * considered to be tokens. A token is thus either one delimiter
113 * maxDelimCodePoint stores the value of the delimiter character with the
114 * highest value. It is used to optimize the detection of delimiter
135 * codepoint is a delimiter.
140 * Set maxDelimCodePoint to the highest char in the delimiter set.
178 * the delimiter characters are also returned as tokens. Each
179 * delimiter is returned as a string of length one. If the flag is
180 * <code>false</code>, the delimiter characters are skipped and onl
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
csv.py 30 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
37 delimiter = None variable in class:Dialect
59 delimiter = ',' variable in class:excel
69 delimiter = '\t' variable in class:excel_tab
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
168 # in case there is more than one possible delimiter
177 quotechar, doublequote, delimiter, skipinitialspace = \
179 if not delimiter:
180 delimiter, skipinitialspace = self._guess_delimiter(sample,
183 if not delimiter
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
csv.py 30 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
37 delimiter = None variable in class:Dialect
59 delimiter = ',' variable in class:excel
69 delimiter = '\t' variable in class:excel_tab
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
168 # in case there is more than one possible delimiter
177 quotechar, doublequote, delimiter, skipinitialspace = \
179 if not delimiter:
180 delimiter, skipinitialspace = self._guess_delimiter(sample,
183 if not delimiter
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
csv.py 30 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
37 delimiter = None variable in class:Dialect
59 delimiter = ',' variable in class:excel
69 delimiter = '\t' variable in class:excel_tab
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
168 # in case there is more than one possible delimiter
177 quotechar, doublequote, delimiter, skipinitialspace = \
179 if not delimiter:
180 delimiter, skipinitialspace = self._guess_delimiter(sample,
183 if not delimiter
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
csv.py 30 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
37 delimiter = None variable in class:Dialect
59 delimiter = ',' variable in class:excel
69 delimiter = '\t' variable in class:excel_tab
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
168 # in case there is more than one possible delimiter
177 quotechar, doublequote, delimiter, skipinitialspace = \
179 if not delimiter:
180 delimiter, skipinitialspace = self._guess_delimiter(sample,
183 if not delimiter
    [all...]
  /external/webrtc/webrtc/base/
stringencode.cc 438 char delimiter) {
447 size_t needed = delimiter ? (srclen * 3) : (srclen * 2 + 1);
457 // Don't write a delimiter after the last byte.
458 if (delimiter && (srcpos < srclen)) {
459 buffer[bufpos] = delimiter;
478 char delimiter) {
482 source, srclen, delimiter);
494 char delimiter) {
502 size_t needed = (delimiter) ? (srclen + 1) / 3 : srclen / 2;
520 // Remove the delimiter if needed
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/base/
JoinerBenchmark.java 27 * Benchmarks {@link Joiner} against some common implementations of delimiter-based
54 * {@link Joiner} with a string delimiter.
65 * {@link Joiner} with a character delimiter.
97 * Only appends delimiter if the accumulated string is non-empty.
138 * Starts with an empty delimiter and changes to the desired value at the end of the
157 * Always append the delimiter after the component, and in the very end shortens the buffer
158 * to get rid of the extra trailing delimiter.
  /cts/suite/audio_quality/lib/src/
StringUtil.cpp 24 std::vector<android::String8>* StringUtil::split(const android::String8& str, char delimiter)
29 if (str[i] == delimiter) {
33 lastTokenEnd = i + 1; // 1 for skipping delimiter
  /external/libcxx/test/libcxx/android/
executors.py 34 delimiter = 'x'
35 probe_cmd = ' '.join(cmd) + '; echo {}$?'.format(delimiter)
55 out, delim, rc_str = out.rpartition(delimiter)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/
executors.py 34 delimiter = 'x'
35 probe_cmd = ' '.join(cmd) + '; echo {}$?'.format(delimiter)
55 out, delim, rc_str = out.rpartition(delimiter)
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/lib/input_reader/
_gcs.py 70 DELIMITER_PARAM: str. The delimiter that signifies directory.
74 the delimiter is encountered.
85 DELIMITER_PARAM = "delimiter"
102 delimiter=None, path_filter=None):
111 delimiter: Delimiter used as path separator. See class doc.
119 self._delimiter = delimiter
147 delimiter=self._delimiter)
190 # Delimiter.
192 delimiter = reader_params[cls.DELIMITER_PARAM
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
Strings.java 71 public static String join(String delimiter, Object... objects) {
72 return join(Arrays.asList(objects), delimiter);
75 public static String join(Iterable<?> objects, String delimiter) {
84 result.append(delimiter).append(i.next());
  /external/toybox/toys/other/
printenv.c 15 -0 Use \0 as delimiter instead of \n
  /external/vogar/src/vogar/util/
Strings.java 74 public static String join(String delimiter, Object... objects) {
75 return join(Arrays.asList(objects), delimiter);
78 public static String join(Iterable<?> objects, String delimiter) {
87 result.append(delimiter).append(i.next());
  /prebuilts/gdb/darwin-x86/include/python2.7/
osdefs.h 57 /* Search path entry delimiter */

Completed in 1761 milliseconds

1 2 3 4 5 67 8 91011>>