Searched defs:delimiter (Results 1 - 25 of 134) sorted by relevance

123456

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
H A DJoin.java6 public static String join(String delimiter, Collection collection) { argument
13 del = delimiter;
19 public static String join(String delimiter, Object... collection) { argument
26 del = delimiter;
/external/bison/lib/
H A Dgetdelim.c57 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) argument
125 if (i == delimiter)
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java39 public static String join(Collection parts, String delimiter) { argument
41 Assert.notNull(delimiter, "delimiter");
49 buf.append(delimiter);
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) { argument
64 Assert.notNull(delimiter, "delimiter");
72 buf.append(delimiter);
/external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
H A DExternalClassLoader.java38 private static String join(Collection<String> collection, String delimiter) { argument
44 buffer.append(delimiter);
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DWritables.java26 * Joins the writables by the given delimiter, writing out the
29 static void join(String delimiter, Iterable<? extends Writable> writables, argument
37 appendable.append(delimiter);
44 /** Joins the writables by the given delimiter. */
45 static void join(String delimiter, Iterable<? extends Writable> writables, argument
47 join(delimiter, writables, "", "", appendable, context);
/external/emma/core/java12/com/vladium/util/
H A DStrings.java33 public static String toListForm (final String [] strings, final char delimiter) argument
41 if (i != 0) s.append (delimiter);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
H A DDelimitedWriter.java40 private final char delimiter; field in class:DelimitedWriter
45 * Creates a new Delimited writer using the default delimiter
55 * Creates a new Delimited writer using the default delimiter
59 * @param delimiter
60 * delimiter to use (usually a comma, tab or space)
62 public DelimitedWriter(final Writer delegate, final char delimiter) { argument
64 this.delimiter = delimiter;
69 * needed. Each value will be separated using the current delimiter
85 * prepended with the current delimiter
[all...]
/external/junit/src/main/java/org/junit/experimental/theories/internal/
H A DParameterizedAssertionError.java26 public static String join(String delimiter, Object... params) { argument
27 return join(delimiter, Arrays.asList(params));
30 public static String join(String delimiter, Collection<Object> values) { argument
37 sb.append(delimiter);
/external/libbrillo/brillo/strings/
H A Dstring_utils.cc18 const std::string& delimiter,
27 delimiter.empty() ? (i + 1) : str.find(delimiter, i);
35 i = pos + delimiter.size();
41 const std::string& delimiter,
46 std::string::size_type pos = str.find(delimiter);
49 *right_part = str.substr(pos + delimiter.size());
65 const std::string& delimiter,
68 SplitAtFirst(str, delimiter, &pair.first, &pair.second, trim_whitespaces);
17 Split(const std::string& str, const std::string& delimiter, bool trim_whitespaces, bool purge_empty_strings) argument
40 SplitAtFirst(const std::string& str, const std::string& delimiter, std::string* left_part, std::string* right_part, bool trim_whitespaces) argument
64 SplitAtFirst(const std::string& str, const std::string& delimiter, bool trim_whitespaces) argument
H A Dstring_utils.h23 const std::string& delimiter,
28 const std::string& delimiter) {
29 return Split(str, delimiter, true, true);
33 const std::string& delimiter,
35 return Split(str, delimiter, trim_whitespaces, true);
39 // delimiter.
42 const std::string& delimiter,
45 // delimiter. Both parts have all whitespaces trimmed off.
48 const std::string& delimiter) {
49 return SplitAtFirst(str, delimiter, tru
27 Split(const std::string& str, const std::string& delimiter) argument
32 Split(const std::string& str, const std::string& delimiter, bool trim_whitespaces) argument
46 SplitAtFirst( const std::string& str, const std::string& delimiter) argument
61 SplitAtFirst(const std::string& str, const std::string& delimiter, std::string* left_part, std::string* right_part) argument
70 JoinRange(const std::string& delimiter, InputIterator first, InputIterator last) argument
85 Join(const std::string& delimiter, const Container& strings) argument
91 Join(const std::string& delimiter, std::initializer_list<std::string> strings) argument
96 Join(const std::string& delimiter, const std::string& str1, const std::string& str2) argument
[all...]
/external/parameter-framework/upstream/parameter/
H A DRuleParser.cpp64 // Iterate till next relevant delimiter
149 string::size_type delimiter; local
154 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
157 _uiCurrentPos = delimiter;
162 ((delimiter = _strApplicationRule.find_first_of(_acDelimiters[_eStatus], _uiCurrentPos)) !=
165 switch (_strApplicationRule[delimiter]) {
170 _strRuleType = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos);
186 _strRuleType = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos);
193 _uiCurrentPos = delimiter + 1;
243 string::size_type delimiter; local
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextUtils.java47 public static String join(CharSequence delimiter, Iterable tokens) { argument
48 return Join.join((String) delimiter, (Collection) tokens);
52 public static String join(CharSequence delimiter, Object[] tokens) { argument
53 return Join.join((String) delimiter, tokens);
/external/vogar/src/vogar/util/
H A DStrings.java74 public static String join(String delimiter, Object... objects) { argument
75 return join(Arrays.asList(objects), delimiter);
78 public static String join(Iterable<?> objects, String delimiter) { argument
87 result.append(delimiter).append(i.next());
/external/jline/src/src/main/java/jline/
H A DSimpleCompletor.java34 * A delimiter to use to qualify completions.
36 String delimiter; field in class:SimpleCompletor
108 if (delimiter != null) {
109 int index = can.indexOf(delimiter, cursor);
128 public void setDelimiter(final String delimiter) { argument
129 this.delimiter = delimiter;
133 return this.delimiter;

Completed in 1426 milliseconds

123456