Searched refs:encodedValue (Results 1 – 3 of 3) sorted by relevance
1573 final String encodedValue, boolean isPrimary) { in appendTelLine() argument1708 mBuilder.append(encodedValue); in appendTelLine()1734 public void appendPhotoLine(final String encodedValue, final String photoType) { in appendPhotoLine() argument1746 tmpBuilder.append(encodedValue); in appendPhotoLine()1856 final String encodedValue; in appendAndroidSpecificProperty() local1858 encodedValue = encodeQuotedPrintable(rawValue); in appendAndroidSpecificProperty()1864 encodedValue = escapeCharacters(rawValue); in appendAndroidSpecificProperty()1867 mBuilder.append(encodedValue); in appendAndroidSpecificProperty()1940 final String encodedValue; in appendLine() local1944 encodedValue = encodeQuotedPrintable(rawValue); in appendLine()[all …]
628 private double decodeLciLatLngUncertainty(long encodedValue) { in decodeLciLatLngUncertainty() argument629 return Math.pow(2, LATLNG_UNCERTAINTY_BASE - encodedValue); in decodeLciLatLngUncertainty()638 private double decodeLciAltUncertainty(long encodedValue) { in decodeLciAltUncertainty() argument639 return Math.pow(2, ALTITUDE_UNCERTAINTY_BASE - encodedValue); in decodeLciAltUncertainty()
1737 String encodedValue = query.substring(separator + 1, end); in getQueryParameter() local1738 return UriCodec.decode(encodedValue, true, StandardCharsets.UTF_8, false); in getQueryParameter()