HomeSort by relevance Sort by last modified time
    Searched full:separator (Results 551 - 575 of 2854) sorted by null

<<21222324252627282930>>

  /external/openfst/src/include/fst/script/
compile-impl.h 67 string separator = FLAGS_fst_field_separator + "\n"; local
68 SplitToVector(line, separator.c_str(), &col, true);
  /external/qemu/distrib/sdl-1.2.15/
docs.html 5 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
17 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
86 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
256 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
334 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
479 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
537 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
695 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%">
  /external/v8/test/mjsunit/third_party/
string-trim.js 67 {s : '\u2028', t : 'LINE SEPARATOR'},
68 {s : '\u2029', t : 'PARAGRAPH SEPARATOR'},
  /libcore/luni/src/main/java/java/net/
JarURLConnection.java 32 * separator. This separator is important to determine if an archive or an entry
  /libcore/luni/src/main/java/java/util/regex/
Splitter.java 35 * Returns a result equivalent to {@code s.split(separator, limit)} if it's able
116 // Collect text preceding each occurrence of the separator, while there's enough space.
  /libcore/luni/src/main/java/libcore/reflect/
Types.java 97 * separator rather than a "$" separator).
  /libcore/support/src/test/java/tests/support/
Support_Exec.java 64 * with the system path separator as a separator.
  /ndk/sources/host-tools/nawk-20071023/
main.c 97 case 'F': /* set field separator */
111 WARNING("field separator FS is empty");
  /packages/apps/Dialer/res/layout/
call_log_list_item.xml 129 <!-- Linear layout to house a vertical separator line and the secondary action button.
130 Used as a convenience to hide both the separator and action button at the same
  /packages/apps/Dialer/res/values/
dimens.xml 39 <!-- Defines the vertical margin for the vertical separator between
43 <!-- Defines the width of the vertical separator between
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 42 * Separator between target string for each source char
44 public static final String SEPARATOR = " ";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
extend.txt 41 None (to insert a separator entry) or a pair of strings (menu_label,
63 None, # Separator
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
extend.txt 41 None (to insert a separator entry) or a pair of strings (menu_label,
63 None, # Separator
  /art/runtime/
utils.cc 760 bool IsValidClassName(const char* s, ClassNameType type, char separator) {
817 bool sepOrFirst = true; // first character or just encountered a separator.
840 if (c != separator) {
841 // The wrong separator character.
845 // Separator at start or two separators in a row.
873 void Split(const std::string& s, char separator, std::vector<std::string>& result) {
877 if (*p == separator) {
881 while (++p != end && *p != separator) {
882 // Skip to the next occurrence of the separator.
890 std::string Join(std::vector<StringT>& strings, char separator) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/luni/tests/java/util/
ScannerTest.java 964 * string. ',' is used in many locales as group separator.
979 * ''' is used in many locales as group separator.
1006 * '.' is used in many locales as group separator. The input string
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 137 * The name/value separator; either ":" or ": ".
139 private String separator = ":"; field in class:JsonWriter
164 this.separator = ":";
167 this.separator = ": ";
460 out.append(separator);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
SystemTest.java 138 "os.version", "file.separator", "path.separator",
139 "line.separator", "user.name", "user.home", "user.dir", };
185 * Tests that there are no extra path separator in boot class path.
197 fail("Boot class path contains extra path separator: " + bootClassPath);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 68 * grouping-separator %avt; #IMPLIED
412 * The grouping-separator attribute gives the separator
413 * used as a grouping (e.g. thousands) separator in decimal
420 * Set the "grouping-separator" attribute.
421 * The grouping-separator attribute gives the separator
422 * used as a grouping (e.g. thousands) separator in decimal
426 * @param v Value to set for "grouping-separator" attribute.
434 * Get the "grouping-separator" attribute
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMetaElement-in.cpp 82 // skip to first non-separator, but don't skip past the end of the string
90 // skip to first separator
105 // skip to first non-separator, but don't skip past a ',' or the end of the string
113 // skip to first separator
127 String message = "Error parsing a meta element's content: ';' is not a valid key-value pair separator. Please use ',' instead.";
  /external/chromium_org/third_party/openssl/openssl/apps/
dgst.c 115 int separator=0; local
158 separator=1;
160 separator=2;
501 err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf,
530 r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf,
  /external/guava/guava/src/com/google/common/primitives/
Booleans.java 234 * by {@code separator}. For example, {@code join("-", false, true, false)}
237 * @param separator the text that should appear between consecutive values in
241 public static String join(String separator, boolean... array) {
242 checkNotNull(separator);
251 builder.append(separator).append(array[i]);
UnsignedBytes.java 157 * {@code separator}. For example, {@code join(":", (byte) 1, (byte) 2,
160 * @param separator the text that should appear between consecutive values in
164 public static String join(String separator, byte... array) {
165 checkNotNull(separator);
174 builder.append(separator).append(toInt(array[i]));
UnsignedLongs.java 117 * {@code separator}. For example, {@code join("-", 1, 2, 3)} returns the string {@code "1-2-3"}.
119 * @param separator the text that should appear between consecutive values in the resulting
123 public static String join(String separator, long... array) {
124 checkNotNull(separator);
133 builder.append(separator).append(toString(array[i]));
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Longs.java 278 * by {@code separator}. For example, {@code join("-", 1L, 2L, 3L)} returns
281 * @param separator the text that should appear between consecutive values in
285 public static String join(String separator, long... array) {
286 checkNotNull(separator);
295 builder.append(separator).append(array[i]);
  /external/openssl/apps/
dgst.c 115 int separator=0; local
158 separator=1;
160 separator=2;
501 err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf,
530 r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf,

Completed in 987 milliseconds

<<21222324252627282930>>