Searched refs:colon (Results 1 – 3 of 3) sorted by relevance
258 int colon = type.indexOf(':'); in readFromReader() local259 if (colon != -1) { in readFromReader()260 obfuscatedLine = Integer.parseInt(type.substring(0, colon)); in readFromReader()262 type = type.substring(colon + 1); in readFromReader()264 colon = type.indexOf(':'); in readFromReader()265 if (colon != -1) { in readFromReader()266 obfuscatedLineEnd = Integer.parseInt(type.substring(0, colon)); in readFromReader()267 type = type.substring(colon + 1); in readFromReader()280 colon = clearName.lastIndexOf(':'); in readFromReader()281 if (colon != -1) { in readFromReader()[all …]
76 std::string::size_type colon = value.find(':'); in ParseJdwpOption() local77 if (colon != std::string::npos) { in ParseJdwpOption()78 jdwp_options->host = value.substr(0, colon); in ParseJdwpOption()79 port_string = value.substr(colon + 1); in ParseJdwpOption()
87 # Parse a colon-separated list into an array (e.g. "foo.dex:bar.dex" -> (foo.dex bar.dex))