Home
last modified time | relevance | path

Searched refs:two_byte_buffer (Results 1 – 9 of 9) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/strings/
H A Duri.cc139 std::vector<uc16>* two_byte_buffer) { in IntoOneAndTwoByte() argument
157 two_byte_buffer); in IntoOneAndTwoByte()
165 two_byte_buffer); in IntoOneAndTwoByte()
179 std::vector<uc16> two_byte_buffer; in Decode() local
181 if (!IntoOneAndTwoByte(uri, is_uri, &one_byte_buffer, &two_byte_buffer)) { in Decode()
185 if (two_byte_buffer.empty()) { in Decode()
192 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()); in Decode()
203 if (!two_byte_buffer.empty()) { in Decode()
204 CopyChars(chars, two_byte_buffer.data(), two_byte_buffer.size()); in Decode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/strings/
H A Duri.cc139 std::vector<uc16>* two_byte_buffer) { in IntoOneAndTwoByte() argument
157 two_byte_buffer); in IntoOneAndTwoByte()
165 two_byte_buffer); in IntoOneAndTwoByte()
179 std::vector<uc16> two_byte_buffer; in Decode() local
181 if (!IntoOneAndTwoByte(uri, is_uri, &one_byte_buffer, &two_byte_buffer)) { in Decode()
185 if (two_byte_buffer.empty()) { in Decode()
192 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()); in Decode()
203 if (!two_byte_buffer.empty()) { in Decode()
204 CopyChars(chars, two_byte_buffer.data(), two_byte_buffer.size()); in Decode()
/dports/lang/v8/v8-9.6.180.12/src/strings/
H A Duri.cc141 std::vector<base::uc16>* two_byte_buffer) { in IntoOneAndTwoByte() argument
159 two_byte_buffer); in IntoOneAndTwoByte()
167 two_byte_buffer); in IntoOneAndTwoByte()
181 std::vector<base::uc16> two_byte_buffer; in Decode() local
183 if (!IntoOneAndTwoByte(uri, is_uri, &one_byte_buffer, &two_byte_buffer)) { in Decode()
187 if (two_byte_buffer.empty()) { in Decode()
194 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()); in Decode()
205 if (!two_byte_buffer.empty()) { in Decode()
206 CopyChars(chars, two_byte_buffer.data(), two_byte_buffer.size()); in Decode()
/dports/www/node10/node-v10.24.1/deps/v8/src/
H A Duri.cc140 std::vector<uc16>* two_byte_buffer) { in IntoOneAndTwoByte() argument
158 two_byte_buffer); in IntoOneAndTwoByte()
166 two_byte_buffer); in IntoOneAndTwoByte()
180 std::vector<uc16> two_byte_buffer; in Decode() local
182 if (!IntoOneAndTwoByte(uri, is_uri, &one_byte_buffer, &two_byte_buffer)) { in Decode()
186 if (two_byte_buffer.empty()) { in Decode()
193 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()); in Decode()
199 CopyChars(result->GetChars() + one_byte_buffer.size(), two_byte_buffer.data(), in Decode()
200 two_byte_buffer.size()); in Decode()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/builtins/
H A Dbuiltins-string.cc87 std::vector<uc16> two_byte_buffer; in BUILTIN() local
88 two_byte_buffer.reserve(length - index); in BUILTIN()
92 two_byte_buffer.push_back(code); in BUILTIN()
94 two_byte_buffer.push_back(unibrow::Utf16::LeadSurrogate(code)); in BUILTIN()
95 two_byte_buffer.push_back(unibrow::Utf16::TrailSurrogate(code)); in BUILTIN()
111 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()))); in BUILTIN()
117 two_byte_buffer.data(), two_byte_buffer.size()); in BUILTIN()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/builtins/
H A Dbuiltins-string.cc89 std::vector<uc16> two_byte_buffer; in BUILTIN() local
90 two_byte_buffer.reserve(length - index); in BUILTIN()
94 two_byte_buffer.push_back(code); in BUILTIN()
96 two_byte_buffer.push_back(unibrow::Utf16::LeadSurrogate(code)); in BUILTIN()
97 two_byte_buffer.push_back(unibrow::Utf16::TrailSurrogate(code)); in BUILTIN()
113 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()))); in BUILTIN()
119 two_byte_buffer.data(), two_byte_buffer.size()); in BUILTIN()
/dports/lang/v8/v8-9.6.180.12/src/builtins/
H A Dbuiltins-string.cc90 std::vector<base::uc16> two_byte_buffer; in BUILTIN() local
91 two_byte_buffer.reserve(length - index); in BUILTIN()
96 two_byte_buffer.push_back(code); in BUILTIN()
98 two_byte_buffer.push_back(unibrow::Utf16::LeadSurrogate(code)); in BUILTIN()
99 two_byte_buffer.push_back(unibrow::Utf16::TrailSurrogate(code)); in BUILTIN()
115 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()))); in BUILTIN()
121 two_byte_buffer.data(), two_byte_buffer.size()); in BUILTIN()
/dports/www/node10/node-v10.24.1/deps/v8/src/builtins/
H A Dbuiltins-string.cc81 std::vector<uc16> two_byte_buffer; in BUILTIN() local
82 two_byte_buffer.reserve(length - index); in BUILTIN()
86 two_byte_buffer.push_back(code); in BUILTIN()
88 two_byte_buffer.push_back(unibrow::Utf16::LeadSurrogate(code)); in BUILTIN()
89 two_byte_buffer.push_back(unibrow::Utf16::TrailSurrogate(code)); in BUILTIN()
105 static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()))); in BUILTIN()
108 CopyChars(result->GetChars() + one_byte_buffer.size(), two_byte_buffer.data(), in BUILTIN()
109 two_byte_buffer.size()); in BUILTIN()
/dports/www/node10/node-v10.24.1/src/
H A Dnode_process.cc620 const uint16_t* two_byte_buffer = reinterpret_cast<const uint16_t*>(buffer); in EnvGetter() local
622 isolate, two_byte_buffer, NewStringType::kNormal); in EnvGetter()
766 const uint16_t* two_byte_buffer = reinterpret_cast<const uint16_t*>(p); in EnvEnumerator() local
770 two_byte_buffer, in EnvEnumerator()