HomeSort by relevance Sort by last modified time
    Searched refs:delimiter (Results 26 - 50 of 67) sorted by null

12 3

  /external/icu4c/test/intltest/
punyref.c 50 initial_bias = 72, initial_n = 0x80, delimiter = 0x2D }; enumerator in enum:__anon4080
55 /* delim(cp) tests whether cp is a delimiter: */
56 #define delim(cp) ((cp) == delimiter)
160 if (b > 0) output[out++] = delimiter;
233 /* points before the last delimiter, or 0 if there is none, then */
245 /* Main decoding loop: Start just after the last delimiter if any */
normconf.cpp 520 * Split a string into pieces based on the given delimiter
530 UBool NormalizerConformanceTest::hexsplit(const char *s, char delimiter,
549 (*end != ' ' && *end != '\t' && *end != delimiter)
564 if(*t == delimiter) {
  /external/skia/src/svg/
SkSVGPaintState.cpp 94 const char* delimiter = strchr(attrValue, ':'); local
95 SkASSERT(delimiter != 0 && delimiter < end);
96 int index = parser.findAttribute(this, attrValue, (int) (delimiter - attrValue), true);
98 delimiter++;
99 addAttribute(parser, index, delimiter, (int) (end - delimiter));
  /external/chromium/third_party/icu/source/i18n/
tridpars.cpp 416 // a trailing delimiter after the IDs.
707 UChar delimiter = 0; local
712 // pass: a filter, a delimiter character (either '-' or '/'),
736 if (delimiter == 0) {
740 delimiter = c;
746 // We are about to try to parse a spec with no delimiter
749 if (delimiter == 0 && specCount > 0) {
755 // Note that if there was a trailing delimiter, we
761 switch (delimiter) {
773 delimiter = 0
    [all...]
nfrule.h 85 const UnicodeString& delimiter, ParsePosition& pp, const NFSubstitution* sub,
nfrule.cpp     [all...]
  /external/icu4c/i18n/
tridpars.cpp 416 // a trailing delimiter after the IDs.
706 UChar delimiter = 0; local
711 // pass: a filter, a delimiter character (either '-' or '/'),
735 if (delimiter == 0) {
739 delimiter = c;
745 // We are about to try to parse a spec with no delimiter
748 if (delimiter == 0 && specCount > 0) {
754 // Note that if there was a trailing delimiter, we
760 switch (delimiter) {
772 delimiter = 0
    [all...]
nfrule.h 85 const UnicodeString& delimiter, ParsePosition& pp, const NFSubstitution* sub,
nfrule.cpp     [all...]
  /libcore/luni/src/main/java/java/util/
Scanner.java 42 * radixes. The input is broken into tokens by the delimiter pattern, which is
56 * delimiter. All these methods and the various next* and hasNext* methods may
112 private Pattern delimiter = DEFAULT_DELIMITER; field in class:Scanner
319 * Returns the delimiter {@code Pattern} in use by this {@code Scanner}.
321 * @return the delimiter {@code Pattern} in use by this {@code Scanner}.
323 public Pattern delimiter() { method in class:Scanner
324 return delimiter;
422 * delimiter will be ignored. This is the same as invoking
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
Strings.java 216 public static String[] split(String input, char delimiter)
224 int tokenLocation = input.indexOf(delimiter);
  /external/chromium/third_party/icu/source/tools/toolutil/
uparse.c 63 u_parseDelimitedFile(const char *filename, char delimiter,
138 while(*limit!=delimiter && *limit!=0) {
  /external/emma/core/java12/com/vladium/util/
Strings.java 33 public static String toListForm (final String [] strings, final char delimiter)
41 if (i != 0) s.append (delimiter);
  /external/icu4c/tools/toolutil/
uparse.c 75 u_parseDelimitedFile(const char *filename, char delimiter,
146 while(*limit!=delimiter && *limit!=0) {
  /external/webkit/WebCore/xml/
XPathParser.cpp 194 UChar delimiter = m_data[m_nextPos]; local
198 if (m_data[m_nextPos] == delimiter) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeIODataStream.java 375 String delimiter = ""; local
383 outstream.print(prefix + tail + delimiter);
  /cts/tools/dx-tests/scripts/
collect_dasm_files.sh 81 for subcode in `echo $MAPPED_OPCODE | cut -d";" -f1,2 --output-delimiter=" "`; do
  /external/chromium/third_party/icu/source/test/intltest/
normconf.cpp 503 * Split a string into pieces based on the given delimiter
513 UBool NormalizerConformanceTest::hexsplit(const char *s, char delimiter,
532 (*end != ' ' && *end != '\t' && *end != delimiter)
547 if(*t == delimiter) {
  /frameworks/base/core/java/android/text/
TextUtils.java 267 public static String join(CharSequence delimiter, Object[] tokens) {
274 sb.append(delimiter);
286 public static String join(CharSequence delimiter, Iterable tokens) {
293 sb.append(delimiter);
344 * TextUtils.StringSplitter splitter = new TextUtils.SimpleStringSplitter(delimiter);
360 * <p>If the final character in the string to split is the delimiter then no empty string will
372 * @param delimiter the delimeter on which to split
374 public SimpleStringSplitter(char delimiter) {
375 mDelimiter = delimiter;
402 mPosition = end + 1; // Skip the delimiter
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 683 // Splits a given string on a given delimiter, populating a given
686 static void SplitString(const ::std::string& str, char delimiter,
691 const ::std::string::size_type colon = str.find(delimiter, pos);
  /packages/experimental/procstatlog/
procstatlog.c 99 // delimiter: used to split each line into name and value
104 char delimiter, const char *terminator, int skip_words,
139 char *name_end = strchr(line, delimiter);
  /external/bluetooth/glib/glib/
gstrfuncs.h 233 const gchar *delimiter,
gstrfuncs.c     [all...]
  /external/chromium/net/tools/flip_server/
flip_in_mem_edsm_server.cc 577 string delimiter; local
583 delimiter = "||";
590 delimiter = "!!";
604 new_value = existing_header + delimiter + new_value;
    [all...]
  /external/gtest/src/
gtest-death-test.cc     [all...]

Completed in 589 milliseconds

12 3