Home
last modified time | relevance | path

Searched refs:uc32 (Results 1 – 16 of 16) sorted by relevance

/external/v8/src/
Dchar-predicates.h16 inline bool IsCarriageReturn(uc32 c);
17 inline bool IsLineFeed(uc32 c);
18 inline bool IsDecimalDigit(uc32 c);
19 inline bool IsHexDigit(uc32 c);
20 inline bool IsOctalDigit(uc32 c);
21 inline bool IsBinaryDigit(uc32 c);
22 inline bool IsRegExpWord(uc32 c);
23 inline bool IsRegExpNewline(uc32 c);
26 static inline bool Is(uc32 c) { in Is()
36 static inline bool Is(uc32 c) { in Is()
[all …]
Dchar-predicates-inl.h17 inline int AsciiAlphaToLower(uc32 c) { in AsciiAlphaToLower()
22 inline bool IsCarriageReturn(uc32 c) { in IsCarriageReturn()
27 inline bool IsLineFeed(uc32 c) { in IsLineFeed()
39 inline bool IsDecimalDigit(uc32 c) { in IsDecimalDigit()
45 inline bool IsHexDigit(uc32 c) { in IsHexDigit()
51 inline bool IsOctalDigit(uc32 c) { in IsOctalDigit()
57 inline bool IsBinaryDigit(uc32 c) { in IsBinaryDigit()
Dscanner.h31 inline int HexValue(uc32 c) { in HexValue()
53 inline uc32 Advance() { in Advance()
56 return static_cast<uc32>(*(buffer_cursor_++)); in Advance()
93 static const uc32 kEndOfInput = -1;
480 uc32 ScanOctalEscape(uc32 c, int length);
499 INLINE(void AddLiteralChar(uc32 c)) { in INLINE()
522 void PushBack(uc32 ch) { in PushBack()
532 inline Token::Value Select(uc32 next, Token::Value then, Token::Value else_) { in Select()
583 uc32 ScanHexNumber(int expected_length);
609 uc32 ScanIdentifierUnicodeEscape();
[all …]
Dscanner.cc56 uc32 Scanner::ScanHexNumber(int expected_length) { in ScanHexNumber()
59 uc32 digits[4] = { 0, 0, 0, 0 }; in ScanHexNumber()
60 uc32 x = 0; in ScanHexNumber()
240 static inline bool IsLittleEndianByteOrderMark(uc32 c) { in IsLittleEndianByteOrderMark()
375 uc32 ch = c0_; in SkipMultiLineComment()
682 uc32 c = c0_; in ScanEscape()
734 uc32 Scanner::ScanOctalEscape(uc32 c, int length) { in ScanOctalEscape()
735 uc32 x = c - '0'; in ScanOctalEscape()
758 uc32 quote = c0_; in ScanString()
764 uc32 c = c0_; in ScanString()
[all …]
Djson-parser.h78 inline uc32 AdvanceGetChar() { in AdvanceGetChar()
85 inline bool MatchSkipWhiteSpace(uc32 c) { in MatchSkipWhiteSpace()
197 uc32 c0_;
576 inline void SeqStringSet(Handle<StringType> seq_str, int i, uc32 c);
579 inline void SeqStringSet(Handle<SeqTwoByteString> seq_str, int i, uc32 c) { in SeqStringSet()
584 inline void SeqStringSet(Handle<SeqOneByteString> seq_str, int i, uc32 c) { in SeqStringSet()
668 uc32 value = 0; in SlowScanJsonString()
723 uc32 c0 = c0_; in ScanJsonString()
Dscanner-character-streams.h21 virtual void PushBack(uc32 character);
127 virtual void PushBack(uc32 character) { in PushBack()
Dparser.h238 uc32 ParseClassCharacterEscape();
242 bool ParseHexEscape(int length, uc32* value);
244 uc32 ParseOctalLiteral();
268 static const uc32 kEndMarker = (1 << 21);
315 uc32 current() { return current_; } in current()
318 uc32 Next();
327 uc32 current_;
Dparser.cc4088 uc32 RegExpParser::Next() { in Next()
4322 uc32 c = Next(); in ParseDisjunction()
4347 uc32 first_digit = Next(); in ParseDisjunction()
4358 uc32 octal = ParseOctalLiteral(); in ParseDisjunction()
4386 uc32 controlLetter = Next(); in ParseDisjunction()
4389 uc32 letter = controlLetter & ~('a' ^ 'A'); in ParseDisjunction()
4404 uc32 value; in ParseDisjunction()
4414 uc32 value; in ParseDisjunction()
4494 static bool IsSpecialClassEscape(uc32 c) { in IsSpecialClassEscape()
4555 uc32 c = current(); in ParseBackReferenceIndex()
[all …]
Dlog-utils.cc188 uc32 c = str->Get(i); in AppendDetailed()
Dscanner-character-streams.cc57 void BufferedUtf16CharacterStream::PushBack(uc32 character) { in PushBack()
Dglobals.h185 typedef int32_t uc32; typedef
Djsregexp.cc5349 uc32 chr = chars[i]; in AddCaseEquivalents()
5387 uc32 c = range[i]; in AddCaseEquivalents()
5943 void Call(uc32 from, DispatchTable::Entry entry);
5949 void AddDispatchRange::Call(uc32 from, DispatchTable::Entry entry) { in Call()
Druntime.cc6423 static inline bool ToUpperOverflows(uc32 character) { in ToUpperOverflows()
6426 static const uc32 yuml_code = 0xff; in ToUpperOverflows()
6427 static const uc32 micro_code = 0xb5; in ToUpperOverflows()
6458 uc32 current = stream.GetNext(); in ConvertCaseHelper()
6462 uc32 next = has_next ? stream.GetNext() : 0; in ConvertCaseHelper()
6471 DCHECK(static_cast<uc32>(chars[0]) != current); in ConvertCaseHelper()
Dobjects-inl.h467 uc32 FlatStringReader::Get(int index) { in Get()
Dobjects.h9259 inline uc32 Get(int index);
/external/v8/test/cctest/
Dtest-regexp.cc1456 static uc32 canonicalize(uc32 c) { in canonicalize()
1479 for (uc32 c = 128; c < (1 << 21); c++) in TEST()
1483 for (uc32 c = 0; c < (1 << 16); c++) { in TEST()
1490 uc32 u = upper[0]; in TEST()
1498 static uc32 CanonRangeEnd(uc32 c) { in CanonRangeEnd()
1517 uc32 block_end = CanonRangeEnd(block_start); in TEST()