Searched refs:uriValue (Results 1 – 2 of 2) sorted by relevance
/external/ims/rcs/rcsservice/src/com/android/service/ims/presence/ |
D | PresenceInfoParser.java | 254 static public String getPhoneFromUri(String uriValue) { in getPhoneFromUri() argument 255 if(uriValue == null){ in getPhoneFromUri() 259 int startIndex = uriValue.indexOf(":", 0); in getPhoneFromUri() 260 int endIndex = uriValue.indexOf("@", startIndex); in getPhoneFromUri() 262 logger.debug("getPhoneFromUri uriValue=" + uriValue + in getPhoneFromUri() 265 String number = uriValue; in getPhoneFromUri() 267 number = uriValue.substring(0, endIndex); in getPhoneFromUri()
|
/external/libxml2/ |
D | catalog.c | 1153 xmlChar *uriValue; in xmlParseXMLCatalogOneNode() local 1167 uriValue = xmlGetProp(cur, uriAttrName); in xmlParseXMLCatalogOneNode() 1168 if (uriValue == NULL) { in xmlParseXMLCatalogOneNode() 1176 if (uriValue != NULL) in xmlParseXMLCatalogOneNode() 1177 xmlFree(uriValue); in xmlParseXMLCatalogOneNode() 1182 URL = xmlBuildURI(uriValue, base); in xmlParseXMLCatalogOneNode() 1192 ret = xmlNewCatalogEntry(type, nameValue, uriValue, URL, prefer, cgroup); in xmlParseXMLCatalogOneNode() 1195 "%s entry '%s' broken ?: %s\n", name, uriAttrName, uriValue); in xmlParseXMLCatalogOneNode() 1199 if (uriValue != NULL) in xmlParseXMLCatalogOneNode() 1200 xmlFree(uriValue); in xmlParseXMLCatalogOneNode()
|