/external/v8/src/ |
char-predicates.h | 16 inline int AsciiAlphaToLower(uc32 c); 17 inline bool IsCarriageReturn(uc32 c); 18 inline bool IsLineFeed(uc32 c); 19 inline bool IsAsciiIdentifier(uc32 c); 20 inline bool IsAlphaNumeric(uc32 c); 21 inline bool IsDecimalDigit(uc32 c); 22 inline bool IsHexDigit(uc32 c); 23 inline bool IsOctalDigit(uc32 c); 24 inline bool IsBinaryDigit(uc32 c); 25 inline bool IsRegExpWord(uc32 c) [all...] |
char-predicates-inl.h | 17 inline int AsciiAlphaToLower(uc32 c) { 22 inline bool IsCarriageReturn(uc32 c) { 27 inline bool IsLineFeed(uc32 c) { 38 inline bool IsAsciiIdentifier(uc32 c) { 42 inline bool IsAlphaNumeric(uc32 c) { 46 inline bool IsDecimalDigit(uc32 c) { 52 inline bool IsHexDigit(uc32 c) { 58 inline bool IsOctalDigit(uc32 c) { 64 inline bool IsBinaryDigit(uc32 c) {
|
char-predicates.cc | 15 bool SupplementaryPlanes::IsIDStart(uc32 c) { 29 bool SupplementaryPlanes::IsIDPart(uc32 c) {
|
log-utils.cc | 200 uc32 c = str->Get(i);
|
globals.h | 196 typedef int32_t uc32; typedef in namespace:v8::internal
|
utils.h | 31 inline int HexValue(uc32 c) { [all...] |
objects-inl.h | 500 uc32 FlatStringReader::Get(int index) { [all...] |
objects.h | [all...] |
/external/v8/src/regexp/ |
regexp-parser.h | 104 void AddUnicodeCharacter(uc32 character); 156 uc32 ParseClassCharacterEscape(); 160 bool ParseHexEscape(int length, uc32* value); 161 bool ParseUnicodeEscape(uc32* value); 162 bool ParseUnlimitedLengthHexNumber(int max_value, uc32* value); 164 uc32 ParseOctalLiteral(); 187 static bool IsSyntaxCharacter(uc32 c); 190 static const uc32 kEndMarker = (1 << 21); 248 uc32 current() { return current_; } 251 uc32 Next() [all...] |
regexp-parser.cc | 40 uc32 RegExpParser::Next() { 96 bool RegExpParser::IsSyntaxCharacter(uc32 c) { 316 uc32 c = Next(); 350 uc32 first_digit = Next(); 368 uc32 octal = ParseOctalLiteral(); 396 uc32 controlLetter = Next(); 399 uc32 letter = controlLetter & ~('a' ^ 'A'); 414 uc32 value; 428 uc32 value; 521 static bool IsSpecialClassEscape(uc32 c) [all...] |
jsregexp.cc | [all...] |
/external/v8/src/parsing/ |
scanner.h | 44 inline uc32 Advance() { 47 return static_cast<uc32>(*(buffer_cursor_++)); 86 static const uc32 kEndOfInput = -1; 465 uc32 ScanOctalEscape(uc32 c, int length); 508 INLINE(void AddLiteralChar(uc32 c)) { 513 INLINE(void AddRawLiteralChar(uc32 c)) { 547 uc32 c1 = source_->Advance(); 556 void PushBack(uc32 ch) { 557 if (ch > static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) [all...] |
scanner.cc | 64 uc32 Scanner::ScanHexNumber(int expected_length) { 67 uc32 x = 0; 82 uc32 Scanner::ScanUnlimitedLengthHexNumber(int max_value) { 83 uc32 x = 0; 278 static inline bool IsLittleEndianByteOrderMark(uc32 c) { 414 uc32 ch = c0_; 736 uc32 c = c0_; 793 uc32 Scanner::ScanOctalEscape(uc32 c, int length) { 794 uc32 x = c - '0' [all...] |
scanner-character-streams.h | 26 void PushBack(uc32 character) override; 159 void PushBack(uc32 character) override {
|
json-parser.h | 82 inline uc32 AdvanceGetChar() { 89 inline bool MatchSkipWhiteSpace(uc32 c) { 204 uc32 c0_; 606 inline void SeqStringSet(Handle<StringType> seq_str, int i, uc32 c); 609 inline void SeqStringSet(Handle<SeqTwoByteString> seq_str, int i, uc32 c) { 614 inline void SeqStringSet(Handle<SeqOneByteString> seq_str, int i, uc32 c) { 698 uc32 value = 0; 753 uc32 c0 = c0_;
|
scanner-character-streams.cc | 62 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
|
/external/v8/src/runtime/ |
runtime-strings.cc | 795 static inline bool ToUpperOverflows(uc32 character) { 798 static const uc32 yuml_code = 0xff; 799 static const uc32 micro_code = 0xb5; 825 uc32 current = stream.GetNext(); 829 uc32 next = has_next ? stream.GetNext() : 0; 838 DCHECK(static_cast<uc32>(chars[0]) != current); [all...] |
/external/v8/test/cctest/ |
test-regexp.cc | [all...] |