Lines Matching refs:uri_content
76 void AddToBuffer(uc16 decoded, String::FlatContent* uri_content, int index, in AddToBuffer() argument
80 uc16 first = uri_content->Get(index + 1); in AddToBuffer()
81 uc16 second = uri_content->Get(index + 2); in AddToBuffer()
93 String::FlatContent* uri_content, std::vector<uc16>* buffer) { in IntoTwoByte() argument
95 uc16 code = uri_content->Get(k); in IntoTwoByte()
99 (two_digits = TwoDigitHex(uri_content->Get(k + 1), in IntoTwoByte()
100 uri_content->Get(k + 2))) < 0) { in IntoTwoByte()
114 if (uri_content->Get(++k) != '%' || in IntoTwoByte()
115 (two_digits = TwoDigitHex(uri_content->Get(k + 1), in IntoTwoByte()
116 uri_content->Get(k + 2))) < 0) { in IntoTwoByte()
128 AddToBuffer(decoded, uri_content, k - 2, is_uri, buffer); in IntoTwoByte()
141 String::FlatContent uri_content = uri->GetFlatContent(); in IntoOneAndTwoByte() local
145 uc16 code = uri_content.Get(k); in IntoOneAndTwoByte()
149 (two_digits = TwoDigitHex(uri_content.Get(k + 1), in IntoOneAndTwoByte()
150 uri_content.Get(k + 2))) < 0) { in IntoOneAndTwoByte()
156 return IntoTwoByte(k, is_uri, uri_length, &uri_content, in IntoOneAndTwoByte()
160 AddToBuffer(decoded, &uri_content, k, is_uri, one_byte_buffer); in IntoOneAndTwoByte()
164 return IntoTwoByte(k, is_uri, uri_length, &uri_content, in IntoOneAndTwoByte()
282 String::FlatContent uri_content = uri->GetFlatContent(); in Encode() local
285 uc16 cc1 = uri_content.Get(k); in Encode()