Lines Matching defs:code
2 // Use of this source code is governed by a BSD-style license that can be
71 base::uc32 code = 0;
74 code = NextCodePoint(isolate, args, index);
75 if (code == kInvalidCodePoint) {
78 if (code > String::kMaxOneByteCharCode) {
81 one_byte_buffer.push_back(code);
94 if (code <=
96 two_byte_buffer.push_back(code);
98 two_byte_buffer.push_back(unibrow::Utf16::LeadSurrogate(code));
99 two_byte_buffer.push_back(unibrow::Utf16::TrailSurrogate(code));
105 code = NextCodePoint(isolate, args, index);
106 if (code == kInvalidCodePoint) {