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

  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 134 String portStr = port == -1 ? "" : Integer.toString(port);
135 mPortField.setText(portStr);
186 String portStr = mPortField.getText().toString().trim();
189 int result = validate(hostname, portStr);
195 if (portStr.length() > 0) {
197 port = Integer.parseInt(portStr);
223 hostname += ':' + portStr;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 245 String portStr = sentBy.substring(ind + 1);
247 int port = Integer.parseInt(portStr);
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
URI.java 687 String portStr = p_uriSpec.substring(start, index);
689 if (portStr.length() > 0)
691 for (int i = 0; i < portStr.length(); i++)
693 if (!isDigit(portStr.charAt(i)))
696 portStr + " is invalid. Port should only contain digits!");
702 port = Integer.parseInt(portStr);
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
URI.java 707 String portStr = p_uriSpec.substring(start, index);
709 if (portStr.length() > 0)
711 for (int i = 0; i < portStr.length(); i++)
713 if (!isDigit(portStr.charAt(i)))
716 portStr + " is invalid. Port should only contain digits!");
722 port = Integer.parseInt(portStr);
    [all...]
  /external/webkit/WebCore/platform/
KURLGoogle.cpp 623 String portStr;
625 portStr = String::number(static_cast<int>(i));
627 reinterpret_cast<const url_parse::UTF16Char*>(portStr.characters()),
628 url_parse::Component(0, portStr.length()));
    [all...]

Completed in 237 milliseconds