HomeSort by relevance Sort by last modified time
    Searched full:delimiters (Results 1 - 25 of 335) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
StringTokenizer.java 44 private String delimiters; field in class:StringTokenizer
64 * the specified delimiters. The {@code returnDelimiters} flag is set to
65 * {@code false}. If {@code delimiters} is {@code null}, this constructor
71 * @param delimiters
72 * the delimiters to use.
74 public StringTokenizer(String string, String delimiters) {
75 this(string, delimiters, false);
80 * the specified delimiters, returning the delimiters as tokens if the
81 * parameter {@code returnDelimiters} is {@code true}. If {@code delimiters}
    [all...]
  /external/llvm/lib/Support/
StringExtras.cpp 33 /// leading characters that appear in the Delimiters string, and ending the
34 /// token at any of the characters that appear in the Delimiters string. If
39 StringRef Delimiters) {
41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
50 /// delimiters, appending the result fragments to the output list.
53 StringRef Delimiters) {
54 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
57 S = getToken(S.second, Delimiters);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StringUtils.java 11 * Returns a string containing the tokens joined by delimiters.
20 * Returns a string containing the tokens joined by delimiters.
  /system/core/libutils/
Tokenizer.cpp 34 static inline bool isDelimiter(char ch, const char* delimiters) {
35 return strchr(delimiters, ch) != NULL;
131 String8 Tokenizer::nextToken(const char* delimiters) {
139 if (ch == '\n' || isDelimiter(ch, delimiters)) {
161 void Tokenizer::skipDelimiters(const char* delimiters) {
168 if (ch == '\n' || !isDelimiter(ch, delimiters)) {
  /frameworks/base/core/java/android/alsa/
LineTokenizer.java 28 public LineTokenizer(String delimiters) {
29 mDelimiters = delimiters;
  /external/emma/core/java12/com/vladium/util/
Strings.java 82 * @param delimiters
86 public static String [] merge (final String [] strings, final String delimiters, final boolean removeNull)
93 if ((delimiters == null) || (delimiters.length () == 0))
94 throw new IllegalArgumentException ("null/empty input: delimiters");
104 final StringTokenizer tokenizer = new StringTokenizer (s, delimiters);
121 * @param delimiters
126 public static String [] mergeAT (final String [] strings, final String delimiters, final boolean processAtFiles)
130 return merge (strings, delimiters, true);
138 if ((delimiters == null) || (delimiters.length () == 0)
    [all...]
  /system/core/include/utils/
Tokenizer.h 98 * Gets the next token on this line stopping at the specified delimiters
104 String8 nextToken(const char* delimiters);
113 * Skips over the specified delimiters in the line.
116 void skipDelimiters(const char* delimiters);
  /external/ceres-solver/internal/ceres/
split.h 40 // Split a string using one or more character delimiters, presented as a
42 // consecutive delimiters, this function skips over all of them.
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
SearchUtil.java 128 * character are considered delimiters.
151 // Out of token, eat all consecutive delimiters.
167 * Anything other than letter and numbers are considered delimiters. Remove start and end
168 * delimiters since they are not relevant to search.
184 // All characters are delimiters.
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDraftHeaderParser.java 49 private final static char[] DELIMITERS = new char[] { ';' };
67 NameValuePair nvp = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
70 NameValuePair param = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
  /external/chromium_org/base/process/
process_iterator_freebsd.cc 89 std::string delimiters; local
90 delimiters.push_back('\0');
91 Tokenize(data, delimiters, &entry_.cmd_line_args_);
process_iterator_linux.cc 49 std::string delimiters;
50 delimiters.push_back('\0');
51 Tokenize(cmd_line, delimiters, proc_cmd_line_args);
process_iterator_openbsd.cc 93 std::string delimiters; local
94 delimiters.push_back('\0');
95 Tokenize(data, delimiters, &entry_.cmd_line_args_);
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 52 * Skip (span) leading delimiters (s += wcsspn(s, delim), sort of).
68 * Scan token (scan for delimiters: s += wcscspn(s, delim), sort of).
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 52 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
68 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
sync_setup_helper.cc 62 std::string delimiters = "\r\n"; local
63 Tokenize(file_contents, delimiters, &tokens);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
csv.py 172 def sniff(self, sample, delimiters=None):
178 self._guess_quote_and_delimiter(sample, delimiters)
181 delimiters)
201 def _guess_quote_and_delimiter(self, data, delimiters):
239 if key and (delimiters is None or key in delimiters):
262 # if we see an extra quote between delimiters, we've got a
277 def _guess_delimiter(self, data, delimiters):
335 # build a list of possible delimiters
346 (delimiters is None or k in delimiters))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
csv.py 172 def sniff(self, sample, delimiters=None):
178 self._guess_quote_and_delimiter(sample, delimiters)
181 delimiters)
201 def _guess_quote_and_delimiter(self, data, delimiters):
239 if key and (delimiters is None or key in delimiters):
262 # if we see an extra quote between delimiters, we've got a
277 def _guess_delimiter(self, data, delimiters):
335 # build a list of possible delimiters
346 (delimiters is None or k in delimiters))
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_tokenizer1.c 30 char delim[128]; /* flag ASCII delimiters */
63 /* TODO(shess) Delimiters need to remain the same from run to run,
72 /* We explicitly don't support UTF-8 delimiters for now. */
80 /* Mark non-alphanumeric ASCII characters as delimiters */
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer1.c 37 char delim[128]; /* flag ASCII delimiters */
71 /* TODO(shess) Delimiters need to remain the same from run to run,
80 /* We explicitly don't support UTF-8 delimiters for now. */
88 /* Mark non-alphanumeric ASCII characters as delimiters */
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer1.c 38 char delim[128]; /* flag ASCII delimiters */
72 /* TODO(shess) Delimiters need to remain the same from run to run,
81 /* We explicitly don't support UTF-8 delimiters for now. */
89 /* Mark non-alphanumeric ASCII characters as delimiters */
  /external/llvm/include/llvm/ADT/
StringExtras.h 122 /// leading characters that appear in the Delimiters string, and ending the
123 /// token at any of the characters that appear in the Delimiters string. If
128 StringRef Delimiters = " \t\n\v\f\r");
131 /// delimiters, appending the result fragments to the output list.
134 StringRef Delimiters = " \t\n\v\f\r");
  /external/chromium_org/third_party/libxslt/libexslt/
strings.c 36 xmlChar *str, *delimiters, *cur; local
49 delimiters = xmlXPathPopString(ctxt);
53 delimiters = xmlStrdup((const xmlChar *) "\t\r\n ");
55 if (delimiters == NULL)
60 xmlFree(delimiters);
79 if (*delimiters == 0) { /* empty string case */
89 } else for (delimiter = delimiters; *delimiter != 0;
125 if (delimiters != NULL)
126 xmlFree(delimiters);
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/text/
TextUtils.java 70 * Returns a string containing the tokens joined by delimiters.
89 * Returns a string containing the tokens joined by delimiters.
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
EncodeHtmlDataUriTest.java 34 assertEquals("Delimiters are not properly encoded", decodedUri, testString);

Completed in 1723 milliseconds

1 2 3 4 5 6 7 8 91011>>