OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:firstcolon
(Results
1 - 6
of
6
) sorted by null
/libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java
137
int
firstColon
= uri.indexOf(":");
141
if (
firstColon
!= -1 &&
firstColon
< firstSlash) {
142
actualScheme = uri.substring(0,
firstColon
);
143
actualPath = uri.substring(
firstColon
+ 1);
/libcore/ojluni/src/main/java/java/sql/
Time.java
94
int
firstColon
;
99
firstColon
= s.indexOf(':');
100
secondColon = s.indexOf(':',
firstColon
+1);
101
if ((
firstColon
> 0) & (secondColon > 0) &
103
hour = Integer.parseInt(s.substring(0,
firstColon
));
105
Integer.parseInt(s.substring(
firstColon
+1, secondColon));
Timestamp.java
185
int
firstColon
= 0;
212
firstColon
= time_s.indexOf(':');
213
secondColon = time_s.indexOf(':',
firstColon
+1);
239
if ((
firstColon
> 0) & (secondColon > 0) &
241
hour = Integer.parseInt(time_s.substring(0,
firstColon
));
243
Integer.parseInt(time_s.substring(
firstColon
+1, secondColon));
/libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java
713
int
firstColon
= uri.indexOf(":");
717
if (
firstColon
!= -1 &&
firstColon
< firstSlash) {
718
actualScheme = uri.substring(0,
firstColon
);
719
actualPath = uri.substring(
firstColon
+ 1);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerBase.java
284
final int
firstColon
= qname.indexOf(':');
285
final String prefix = qname.substring(0,
firstColon
);
293
else if (
firstColon
!= lastColon) {
[
all
...]
/prebuilts/tools/common/m2/repository/xalan/serializer/2.7.1/
serializer-2.7.1.jar
Completed in 662 milliseconds