HomeSort by relevance Sort by last modified time
    Searched refs:sep_ix (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/util/
Size.java 126 int sep_ix = string.indexOf('*'); local
127 if (sep_ix < 0) {
128 sep_ix = string.indexOf('x');
130 if (sep_ix < 0) {
134 return new Size(Integer.parseInt(string.substring(0, sep_ix)),
135 Integer.parseInt(string.substring(sep_ix + 1)));
SizeF.java 137 int sep_ix = string.indexOf('*'); local
138 if (sep_ix < 0) {
139 sep_ix = string.indexOf('x');
141 if (sep_ix < 0) {
145 return new SizeF(Float.parseFloat(string.substring(0, sep_ix)),
146 Float.parseFloat(string.substring(sep_ix + 1)));
Rational.java 588 int sep_ix = string.indexOf(':'); local
589 if (sep_ix < 0) {
590 sep_ix = string.indexOf('/');
592 if (sep_ix < 0) {
596 return new Rational(Integer.parseInt(string.substring(0, sep_ix)),
597 Integer.parseInt(string.substring(sep_ix + 1)));

Completed in 48 milliseconds