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

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/templates/
ClassReferenceLink.st 1 $Link(url={http://code.google.com/android/reference/$it.packageFragments; separator="/"$/$it.name$.html}, name={<tt>$it.name$</tt>})$
PackageAddedLink.st 1 $Link(url={http://code.google.com/android/reference/$it.packageFragments; separator="/"$/package-summary.html}, name={<tt>$it.name$</tt>})$
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
split-001.js 22 * String.split where separator is a RegExp are in
33 // the separator is not supplied
34 // separator is undefined
35 // separator is an empty string
41 // separator regexp value global setting is set
43 // if separator is an empty string, split each by character
54 function AddSplitCases( string, separator, str_sep, split_array ) {
60 string.split(separator).constructor == Array );
66 string.split(separator).length );
69 var limit = (split_array.length > string.split(separator).length
    [all...]
split-003.js 22 * String.split where separator is a RegExp are in
34 // separator regexp value global setting is set
36 // if separator is an empty string, split each by character
63 function AddSplitCases( string, separator, str_sep, split_array ) {
68 string.split(separator).constructor == Array );
74 string.split(separator).length );
77 var limit = (split_array.length > string.split(separator).length )
78 ? split_array.length : string.split(separator).length;
84 string.split( separator )[matches] );
89 string, separator, str_sep, limit, split_array )
    [all...]
split-002.js 22 * String.split where separator is a RegExp are in
33 // the separator is not supplied
34 // separator is undefined
35 // separator is an empty string
40 // separator is an empty regexp
41 // separator is not supplied
87 // separator regexp value global setting is set
89 // if separator is an empty string, split each by character
100 function CompareSplit( string, separator ) {
101 split_1 = string.split( separator );
    [all...]
  /external/srec/tools/grxmlcompile/
netw_dump.cpp 51 std::string separator = "\t"; local
66 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << Eps << std::endl;
84 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << inLabel.c_str() << std::endl;
105 std::string Separator ="\t";
109 std::string separator = "\t"; local
174 outfile << arc[loc]->fromId << Separator << arc[loc]->toId << Separator << inLabel.c_str() << Separator << outLabel.c_str() << std::endl
194 std::string separator = "\\t"; local
274 std::string separator = "\\t"; local
    [all...]
  /external/webkit/WebCore/css/
Counter.h 31 static PassRefPtr<Counter> create(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator)
33 return adoptRef(new Counter(identifier, listStyle, separator));
38 String separator() const { return m_separator ? m_separator->getStringValue() : String(); } function in class:WebCore::Counter
44 void setSeparator(PassRefPtr<CSSPrimitiveValue> separator) { m_separator = separator; }
47 Counter(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator)
50 , m_separator(separator)
  /external/guava/src/com/google/common/base/
Joiner.java 33 * Iterable}, varargs or even a {@link Map}) with a separator. It either
54 * Returns a joiner which automatically places {@code separator} between
57 public static Joiner on(String separator) {
58 return new Joiner(separator);
62 * Returns a joiner which automatically places {@code separator} between
65 public static Joiner on(char separator) {
66 return new Joiner(String.valueOf(separator));
69 private final String separator; field in class:Joiner
71 private Joiner(String separator) {
72 this.separator = checkNotNull(separator)
    [all...]
Splitter.java 32 * into substrings, by recognizing a <i>separator</i> (a.k.a. "delimiter")
75 * The separator recognized by the splitter does not have to be a single
108 * Returns a splitter that uses the given single-character separator. For
112 * @param separator the character to recognize as a separator
113 * @return a splitter, with default settings, that recognizes that separator
115 public static Splitter on(char separator) {
116 return on(CharMatcher.is(separator));
121 * given {@code CharMatcher} to be a separator. For example, {@code
126 * character is a separator
    [all...]
  /external/webkit/WebCore/rendering/style/
CounterContent.h 35 CounterContent(const AtomicString& identifier, EListStyleType style, const AtomicString& separator)
38 , m_separator(separator)
44 const AtomicString& separator() const { return m_separator; } function in class:WebCore::CounterContent
56 && a.separator() == b.separator();
  /cts/tools/signature-tools/templates/model/
model.stg 36 $if(element.interfaces)$ implements $element.interfaces:{$ElementType(element=it)$}; separator=", "$$endif$
48 $Annotations(element= element, separator=" ")$
60 $element.name$($element.parameters:{$SigParameter(element=it)$}; separator=", "$)
61 $if(element.exceptions)$ throws $element.exceptions:{$ElementType(element=it)$}; separator=", "$$endif$
65 $Annotations(element = element, separator="<br/>")$
85 $Annotations(element = element, separator=" ")$
104 $element.name$$if(!element.upperBounds.empty)$ extends $element.upperBounds:{$ElementType(element=it)$}; separator=", "$$endif$
114 $if(!element.upperBounds.empty)$ extends $element.upperBounds:{$ElementType(element=it)$}; separator=", "$$endif$
122 $element.modifiers; separator=" "$$\ $
126 Annotations(element, separator) ::= <
    [all...]
  /external/stlport/src/
num_put.cpp 32 Char separator, Char Plus, Char Minus,
61 // Insert a separator character just before position cur_group - groupsize
65 *cur_group = separator;
76 Char separator, Char Plus, Char Minus,
107 // Insert a separator character just before position cur_group - groupsize
109 cur_group = iostr.insert(cur_group, separator);
136 char separator, char Plus, char Minus, int basechars) {
138 separator, Plus, Minus, basechars);
143 char separator, char Plus, char Minus, int basechars) {
144 __insert_grouping_aux(str, group_pos, grouping, separator, Plus, Minus, basechars)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put.cpp 32 Char separator, Char Plus, Char Minus,
61 // Insert a separator character just before position cur_group - groupsize
65 *cur_group = separator;
76 Char separator, Char Plus, Char Minus,
107 // Insert a separator character just before position cur_group - groupsize
109 cur_group = iostr.insert(cur_group, separator);
136 char separator, char Plus, char Minus, int basechars) {
138 separator, Plus, Minus, basechars);
143 char separator, char Plus, char Minus, int basechars) {
144 __insert_grouping_aux(str, group_pos, grouping, separator, Plus, Minus, basechars)
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
DecimalFormatProperties.java 33 * decimal-separator %char; "."
34 * grouping-separator %char; ","
42 * pattern-separator %char; ";"
132 * Set the "decimal-separator" attribute.
133 * decimal-separator specifies the character used for the decimal sign;
136 * @param ds Character to set as decimal separator
144 * Get the "decimal-separator" attribute.
145 * decimal-separator specifies the character used for the decimal sign;
148 * @return the character to use as decimal separator
156 * Set the "grouping-separator" attribute
    [all...]
  /packages/apps/Email/src/com/android/exchange/provider/
GalEmailAddressAdapter.java 142 // 2. gal cursor is null or empty - remove separator and exit
143 // 3. gal cursor has results - update separator and add results to matrix cursor
182 // Replace the separator text with "totals"
197 * The following series of overrides insert the separator between contacts & GAL contacts
202 * Get the separator position, which is tucked into the cursor to deal with threading.
215 * Prevents the separator view from recycling into the other views
226 * Injects the separator view when required
234 // Handle the separator here - create & bind
236 View separator; local
237 separator = mInflater.inflate(R.layout.recipient_dropdown_separator, parent, false)
    [all...]
  /external/sonivox/docs/JET_Programming_Manual_files/
header.htm 19 <div style='mso-element:footnote-separator' id=fs>
21 <p class=MsoNormal><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
29 <div style='mso-element:footnote-continuation-separator' id=fcs>
31 <p class=MsoNormal><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
39 <div style='mso-element:endnote-separator' id=es>
41 <p class=MsoNormal><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
49 <div style='mso-element:endnote-continuation-separator' id=ecs>
51 <p class=MsoNormal><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
  /external/chromium/third_party/icu/source/common/
ucat.c 16 /* Separator between set_num and msg_num */
17 static const char SEPARATOR = '%';
32 buffer[i++] = SEPARATOR;
  /external/icu4c/common/
ucat.c 16 /* Separator between set_num and msg_num */
17 static const char SEPARATOR = '%';
32 buffer[i++] = SEPARATOR;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.8-2.js 24 ECMA Section: 15.5.4.8 String.prototype.split( separator )
29 searching from left to right for occurrences of the given separator; these
31 to divide up this string value. The separator may be a string of any length.
33 As a special case, if the separator is the empty string, the string is split
37 If the separator is not supplied, then the result array contains just one
40 When the split method is called with one argument separator, the following steps are taken:
44 3. If separator is not supplied, call the [[Put]] method of A with 0 and
46 4. Call ToString(separator).
50 8. If Result(6) is zero (the separator string is empty), go to step 17.
93 // case where separator is the empty string
    [all...]
15.5.4.8-3.js 24 ECMA Section: 15.5.4.8 String.prototype.split( separator )
29 searching from left to right for occurrences of the given separator; these
31 to divide up this string value. The separator may be a string of any length.
33 As a special case, if the separator is the empty string, the string is split
37 If the separator is not supplied, then the result array contains just one
40 When the split method is called with one argument separator, the following steps are taken:
44 3. If separator is not supplied, call the [[Put]] method of A with 0 and
46 4. Call ToString(separator).
50 8. If Result(6) is zero (the separator string is empty), go to step 17.
108 // this.toString() is the empty string, separator is specified
    [all...]
  /dalvik/dx/src/com/android/dx/util/
FixedSizeList.java 98 * @param separator {@code null-ok;} separator to insert between each item
102 public String toString(String prefix, String separator, String suffix) {
103 return toString0(prefix, separator, suffix, false);
112 * @param separator {@code null-ok;} separator to insert between each item
116 public String toHuman(String prefix, String separator, String suffix) {
117 return toString0(prefix, separator, suffix, true);
243 * @param separator {@code null-ok;} separator to insert between each ite
    [all...]
  /dalvik/dx/src/junit/runner/
ClassPathTestCollector.java 58 String separator= System.getProperty("path.separator"); local
59 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /frameworks/base/core/java/android/widget/
ListAdapter.java 37 * Returns true if the item at the specified position is not a separator.
38 * (A separator is a non-selectable, non-clickable item).
44 * @return True if the item is not a separator
  /frameworks/base/test-runner/src/junit/runner/
ClassPathTestCollector.java 59 String separator= System.getProperty("path.separator"); local
60 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /libcore/junit/src/test/java/junit/runner/
ClassPathTestCollector.java 58 String separator= System.getProperty("path.separator"); local
59 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);

Completed in 236 milliseconds

1 2 3 4 5 6 7 8 91011>>