Home
last modified time | relevance | path

Searched refs:code_unit (Results 51 – 75 of 371) sorted by relevance

12345678910>>...15

/dports/sysutils/tealdeer/tealdeer-1.4.1/cargo-crates/encoding_rs-0.8.24/src/
H A Dascii.rs77 if code_unit > 127 {
141 if code_unit > 127 {
167 if code_unit > 127 {
265 if code_unit > 127 {
413 if code_unit > 127 {
536 if code_unit > 127 {
712 if code_unit > 127 {
1229 if code_unit > 127 {
1329 if code_unit > 127 {
1379 if code_unit > 127 {
[all …]
/dports/www/monolith/monolith-2.6.1/cargo-crates/encoding_rs-0.8.28/src/
H A Dascii.rs77 if code_unit > 127 {
141 if code_unit > 127 {
167 if code_unit > 127 {
269 if code_unit > 127 {
421 if code_unit > 127 {
544 if code_unit > 127 {
720 if code_unit > 127 {
1237 if code_unit > 127 {
1337 if code_unit > 127 {
1387 if code_unit > 127 {
[all …]
/dports/devel/py-maturin/maturin-0.11.3/cargo-crates/encoding_rs-0.8.28/src/
H A Dascii.rs77 if code_unit > 127 {
141 if code_unit > 127 {
167 if code_unit > 127 {
269 if code_unit > 127 {
421 if code_unit > 127 {
544 if code_unit > 127 {
720 if code_unit > 127 {
1237 if code_unit > 127 {
1337 if code_unit > 127 {
1387 if code_unit > 127 {
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/editing/iterators/
H A Dtext_iterator_text_state.h57 void EmitChar16AfterNode(UChar code_unit, const Node& node);
58 void EmitChar16AsNode(UChar code_unit, const Node& node);
59 void EmitChar16BeforeChildren(UChar code_unit,
61 void EmitChar16BeforeNode(UChar code_unit, const Node& node);
64 void EmitChar16Before(UChar code_unit,
68 void EmitReplacmentCodeUnit(UChar code_unit,
128 void PopulateStringBufferFromChar16(UChar code_unit);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/editing/iterators/
H A Dtext_iterator_text_state.h57 void EmitChar16AfterNode(UChar code_unit, const Node& node);
58 void EmitChar16AsNode(UChar code_unit, const Node& node);
59 void EmitChar16BeforeChildren(UChar code_unit,
61 void EmitChar16BeforeNode(UChar code_unit, const Node& node);
64 void EmitChar16Before(UChar code_unit,
68 void EmitReplacmentCodeUnit(UChar code_unit,
128 void PopulateStringBufferFromChar16(UChar code_unit);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/editing/state_machines/
H A Dbackward_code_point_state_machine.cc19 BackwardCodePointStateMachine::FeedPrecedingCodeUnit(UChar code_unit) { in FeedPrecedingCodeUnit() argument
22 if (U16_IS_LEAD(code_unit)) { in FeedPrecedingCodeUnit()
28 if (U16_IS_TRAIL(code_unit)) { in FeedPrecedingCodeUnit()
34 if (U16_IS_LEAD(code_unit)) { in FeedPrecedingCodeUnit()
51 BackwardCodePointStateMachine::FeedFollowingCodeUnit(UChar code_unit) { in FeedFollowingCodeUnit() argument
H A Dforward_code_point_state_machine.cc19 ForwardCodePointStateMachine::FeedFollowingCodeUnit(UChar code_unit) { in FeedFollowingCodeUnit() argument
22 if (U16_IS_TRAIL(code_unit)) { in FeedFollowingCodeUnit()
28 if (U16_IS_LEAD(code_unit)) { in FeedFollowingCodeUnit()
34 if (U16_IS_TRAIL(code_unit)) { in FeedFollowingCodeUnit()
51 ForwardCodePointStateMachine::FeedPrecedingCodeUnit(UChar code_unit) { in FeedPrecedingCodeUnit() argument
H A Dbackspace_state_machine.cc66 UChar code_unit) { in FeedPrecedingCodeUnit() argument
68 uint32_t code_point = code_unit; in FeedPrecedingCodeUnit()
69 if (U16_IS_LEAD(code_unit)) { in FeedPrecedingCodeUnit()
75 code_point = U16_GET_SUPPLEMENTARY(code_unit, trail_surrogate_); in FeedPrecedingCodeUnit()
77 } else if (U16_IS_TRAIL(code_unit)) { in FeedPrecedingCodeUnit()
83 trail_surrogate_ = code_unit; in FeedPrecedingCodeUnit()
214 UChar code_unit) { in FeedFollowingCodeUnit() argument
H A Dstate_machine_test_util.cc52 for (const auto& code_unit : preceding_code_units) { in ProcessSequence() local
53 state = machine->FeedPrecedingCodeUnit(code_unit); in ProcessSequence()
74 for (const auto& code_unit : following_code_units) { in ProcessSequence() local
75 state = machine->FeedFollowingCodeUnit(code_unit); in ProcessSequence()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/editing/state_machines/
H A Dforward_code_point_state_machine.cc21 ForwardCodePointStateMachine::FeedFollowingCodeUnit(UChar code_unit) { in FeedFollowingCodeUnit() argument
24 if (U16_IS_TRAIL(code_unit)) { in FeedFollowingCodeUnit()
30 if (U16_IS_LEAD(code_unit)) { in FeedFollowingCodeUnit()
36 if (U16_IS_TRAIL(code_unit)) { in FeedFollowingCodeUnit()
53 ForwardCodePointStateMachine::FeedPrecedingCodeUnit(UChar code_unit) { in FeedPrecedingCodeUnit() argument
H A Dbackward_code_point_state_machine.cc21 BackwardCodePointStateMachine::FeedPrecedingCodeUnit(UChar code_unit) { in FeedPrecedingCodeUnit() argument
24 if (U16_IS_LEAD(code_unit)) { in FeedPrecedingCodeUnit()
30 if (U16_IS_TRAIL(code_unit)) { in FeedPrecedingCodeUnit()
36 if (U16_IS_LEAD(code_unit)) { in FeedPrecedingCodeUnit()
53 BackwardCodePointStateMachine::FeedFollowingCodeUnit(UChar code_unit) { in FeedFollowingCodeUnit() argument
H A Dbackspace_state_machine.cc66 UChar code_unit) { in FeedPrecedingCodeUnit() argument
68 uint32_t code_point = code_unit; in FeedPrecedingCodeUnit()
69 if (U16_IS_LEAD(code_unit)) { in FeedPrecedingCodeUnit()
75 code_point = U16_GET_SUPPLEMENTARY(code_unit, trail_surrogate_); in FeedPrecedingCodeUnit()
77 } else if (U16_IS_TRAIL(code_unit)) { in FeedPrecedingCodeUnit()
83 trail_surrogate_ = code_unit; in FeedPrecedingCodeUnit()
214 UChar code_unit) { in FeedFollowingCodeUnit() argument
H A Dstate_machine_test_util.cc52 for (const auto& code_unit : preceding_code_units) { in ProcessSequence() local
53 state = machine->FeedPrecedingCodeUnit(code_unit); in ProcessSequence()
74 for (const auto& code_unit : following_code_units) { in ProcessSequence() local
75 state = machine->FeedFollowingCodeUnit(code_unit); in ProcessSequence()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/parsing/
H A Dliteral-buffer.cc67 void LiteralBuffer::AddTwoByteChar(uc32 code_unit) { in AddTwoByteChar() argument
70 if (code_unit <= in AddTwoByteChar()
72 *reinterpret_cast<uint16_t*>(&backing_store_[position_]) = code_unit; in AddTwoByteChar()
76 unibrow::Utf16::LeadSurrogate(code_unit); in AddTwoByteChar()
80 unibrow::Utf16::TrailSurrogate(code_unit); in AddTwoByteChar()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/parsing/
H A Dliteral-buffer.cc66 void LiteralBuffer::AddTwoByteChar(uc32 code_unit) { in AddTwoByteChar() argument
69 if (code_unit <= in AddTwoByteChar()
71 *reinterpret_cast<uint16_t*>(&backing_store_[position_]) = code_unit; in AddTwoByteChar()
75 unibrow::Utf16::LeadSurrogate(code_unit); in AddTwoByteChar()
79 unibrow::Utf16::TrailSurrogate(code_unit); in AddTwoByteChar()
/dports/lang/v8/v8-9.6.180.12/src/parsing/
H A Dliteral-buffer.cc68 void LiteralBuffer::AddTwoByteChar(base::uc32 code_unit) { in AddTwoByteChar() argument
71 if (code_unit <= in AddTwoByteChar()
73 *reinterpret_cast<uint16_t*>(&backing_store_[position_]) = code_unit; in AddTwoByteChar()
77 unibrow::Utf16::LeadSurrogate(code_unit); in AddTwoByteChar()
81 unibrow::Utf16::TrailSurrogate(code_unit); in AddTwoByteChar()
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/myencoding/
H A Dencoding.c894 unsigned long code_unit; in myencoding_decode_shared_utf_16() local
896 (code_unit = (res->first << 8) + data); in myencoding_decode_shared_utf_16()
898 (code_unit = (unsigned long)(data << 8) + res->first); in myencoding_decode_shared_utf_16()
906 if(code_unit >= 0xDC00 && code_unit <= 0xDFFF) { in myencoding_decode_shared_utf_16()
907 res->result = 0x10000 + ((lead_surrogate - 0xD800) << 10) + (code_unit - 0xDC00); in myencoding_decode_shared_utf_16()
911 unsigned char byte1 = (unsigned char)(code_unit >> 8); in myencoding_decode_shared_utf_16()
912 unsigned char byte2 = (unsigned char)(code_unit & 0x00FF); in myencoding_decode_shared_utf_16()
926 if(code_unit >= 0xD800 && code_unit <= 0xDBFF) { in myencoding_decode_shared_utf_16()
927 res->second = code_unit; in myencoding_decode_shared_utf_16()
931 if(code_unit >= 0xDC00 && code_unit <= 0xDFFF) { in myencoding_decode_shared_utf_16()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/encoding_rs/src/
H A Dutf_16.rs111 let code_unit = if self.be { localVariable
116 let high_bits = code_unit & 0xFC00u16;
123 self.lead_surrogate = code_unit as u16;
128 self.lead_surrogate = code_unit;
138 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
147 self.lead_surrogate = code_unit;
153 destination_handle.write_bmp(code_unit);
/dports/www/node10/node-v10.24.1/deps/v8/src/parsing/
H A Dscanner.h406 INLINE(void AddChar(char code_unit)) { in INLINE() argument
407 DCHECK(IsValidAscii(code_unit)); in INLINE()
408 AddOneByteChar(static_cast<byte>(code_unit)); in INLINE()
411 INLINE(void AddChar(uc32 code_unit)) { in INLINE() argument
413 code_unit <= static_cast<uc32>(unibrow::Latin1::kMaxChar)) { in INLINE()
414 AddOneByteChar(static_cast<byte>(code_unit)); in INLINE()
416 AddCharSlow(code_unit); in INLINE()
460 inline bool IsValidAscii(char code_unit) { in IsValidAscii() argument
465 return iscntrl(code_unit) || isprint(code_unit); in IsValidAscii()
475 void AddCharSlow(uc32 code_unit);
/dports/devel/sccache/sccache-0.2.15/cargo-crates/encoding_rs-0.8.26/src/
H A Dutf_16.rs136 let code_unit = if self.be { localVariable
141 let high_bits = code_unit & 0xFC00u16;
148 self.lead_surrogate = code_unit as u16;
155 self.lead_surrogate = code_unit;
167 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
176 self.lead_surrogate = code_unit;
184 destination_handle.write_bmp(code_unit);
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/encoding_rs-0.8.28/src/
H A Dutf_16.rs136 let code_unit = if self.be { localVariable
141 let high_bits = code_unit & 0xFC00u16;
148 self.lead_surrogate = code_unit as u16;
155 self.lead_surrogate = code_unit;
167 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
176 self.lead_surrogate = code_unit;
184 destination_handle.write_bmp(code_unit);
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/encoding_rs-0.8.29/src/
H A Dutf_16.rs136 let code_unit = if self.be { localVariable
141 let high_bits = code_unit & 0xFC00u16;
148 self.lead_surrogate = code_unit as u16;
155 self.lead_surrogate = code_unit;
167 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
176 self.lead_surrogate = code_unit;
184 destination_handle.write_bmp(code_unit);
/dports/databases/ods2sql/ods2sql-aca63183274038487cecb6be17d7f65e92178b8c/cargo-crates/encoding_rs-0.8.24/src/
H A Dutf_16.rs136 let code_unit = if self.be { localVariable
141 let high_bits = code_unit & 0xFC00u16;
148 self.lead_surrogate = code_unit as u16;
155 self.lead_surrogate = code_unit;
167 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
176 self.lead_surrogate = code_unit;
184 destination_handle.write_bmp(code_unit);
/dports/net-im/fractal/fractal-4.4.0/vendor/encoding_rs/src/
H A Dutf_16.rs136 let code_unit = if self.be { localVariable
141 let high_bits = code_unit & 0xFC00u16;
148 self.lead_surrogate = code_unit as u16;
155 self.lead_surrogate = code_unit;
167 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
176 self.lead_surrogate = code_unit;
184 destination_handle.write_bmp(code_unit);
/dports/net/routinator/routinator-0.10.2/cargo-crates/encoding_rs-0.8.28/src/
H A Dutf_16.rs136 let code_unit = if self.be { localVariable
141 let high_bits = code_unit & 0xFC00u16;
148 self.lead_surrogate = code_unit as u16;
155 self.lead_surrogate = code_unit;
167 destination_handle.write_surrogate_pair(self.lead_surrogate, code_unit);
176 self.lead_surrogate = code_unit;
184 destination_handle.write_bmp(code_unit);

12345678910>>...15