Searched refs:beg (Results 1 - 3 of 3) sorted by path

/libcore/luni/src/main/java/java/security/cert/
H A DX509CertSelector.java455 int beg = 0;
456 int end = oid.indexOf('.', beg);
458 int comp = Integer.parseInt(oid.substring(beg, end));
459 beg = end + 1;
463 end = oid.indexOf('.', beg);
464 comp = Integer.parseInt(oid.substring(beg, end));
/libcore/luni/src/main/java/javax/net/ssl/
H A DDistinguishedNameParser.java32 private int beg; field in class:DistinguishedNameParser
60 beg = pos;
95 if ((end - beg > 4) && (chars[beg + 3] == '.')
96 && (chars[beg] == 'O' || chars[beg] == 'o')
97 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
98 && (chars[beg + 2] == 'D' || chars[beg
[all...]
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DDNParser.java47 private int beg; field in class:DNParser
81 beg = pos;
118 if ((end - beg > 4) && (chars[beg + 3] == '.')
119 && (chars[beg] == 'O' || chars[beg] == 'o')
120 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
121 && (chars[beg + 2] == 'D' || chars[beg
[all...]

Completed in 144 milliseconds