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

  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 137 String portStr = (String) connectMap.get(ATTR_CONNECT_MAP_PORT);
138 if (portStr != null) {
139 Integer port = Integer.valueOf(portStr);
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 115 String portStr = mPortField.getText().toString().trim();
117 String msg = getActivity().getString(validate(hostname, portStr, exclList));
179 String portStr = port == -1 ? "" : Integer.toString(port);
180 mPortField.setText(portStr);
239 String portStr = mPortField.getText().toString().trim();
243 int result = validate(hostname, portStr, exclList);
249 if (portStr.length() > 0) {
251 port = Integer.parseInt(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);
  /external/apache-xml/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...]
  /external/apache-xml/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/Source/WebCore/platform/
KURLGoogle.cpp 672 String portStr;
674 portStr = String::number(i);
676 reinterpret_cast<const url_parse::UTF16Char*>(portStr.characters()),
677 url_parse::Component(0, portStr.length()));
    [all...]
KURL.cpp     [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 410 String portStr = mProxyPortView.getText().toString();
415 port = Integer.parseInt(portStr);
416 result = ProxySelector.validate(host, portStr, exclusionList);

Completed in 284 milliseconds