Searched refs:uc32 (Results 1 - 19 of 19) sorted by relevance

/external/v8/src/
H A Dchar-predicates.h37 inline bool IsCarriageReturn(uc32 c);
38 inline bool IsLineFeed(uc32 c);
39 inline bool IsDecimalDigit(uc32 c);
40 inline bool IsHexDigit(uc32 c);
41 inline bool IsRegExpWord(uc32 c);
42 inline bool IsRegExpNewline(uc32 c);
45 static inline bool Is(uc32 c) {
55 static inline bool Is(uc32 c) {
H A Dchar-predicates-inl.h40 inline int AsciiAlphaToLower(uc32 c) {
45 inline bool IsCarriageReturn(uc32 c) {
50 inline bool IsLineFeed(uc32 c) {
62 inline bool IsDecimalDigit(uc32 c) {
68 inline bool IsHexDigit(uc32 c) {
H A Dscanner-base.cc45 uc32 Scanner::ScanHexEscape(uc32 c, int length) {
48 uc32 digits[4];
49 uc32 x = 0;
75 uc32 Scanner::ScanOctalEscape(uc32 c, int length) {
76 uc32 x = c - '0';
111 static inline bool IsByteOrderMark(uc32 c) {
480 uc32 c = c0_;
522 uc32 quot
[all...]
H A Dscanner-base.h47 inline int HexValue(uc32 c) {
67 inline uc32 Advance() {
70 return static_cast<uc32>(*(buffer_cursor_++));
107 static const uc32 kEndOfInput = -1;
376 inline void AddLiteralChar(uc32 c) {
399 void PushBack(uc32 ch) {
409 inline Token::Value Select(uc32 next, Token::Value then, Token::Value else_) {
419 uc32 ScanHexEscape(uc32 c, int length);
422 uc32 ScanOctalEscap
[all...]
H A Dscanner.h46 virtual void PushBack(uc32 character);
110 virtual void PushBack(uc32 character) {
H A Dparser.h321 uc32 ParseClassCharacterEscape();
325 bool ParseHexEscape(int length, uc32* value);
327 uc32 ParseOctalLiteral();
351 static const uc32 kEndMarker = (1 << 21);
397 uc32 current() { return current_; }
400 uc32 Next();
408 uc32 current_;
H A Dglobals.h230 typedef int32_t uc32; typedef in namespace:v8::internal
233 const uc32 kMaxAsciiCharCode = 0x7f;
H A Dpreparser-api.cc73 virtual void PushBack(uc32 ch) {
H A Dscanner.cc51 void BufferedUC16CharacterStream::PushBack(uc32 character) {
495 uc32 value = 0;
H A Dparser.cc4223 uc32 RegExpParser::Next() {
4454 uc32 c = Next();
4478 uc32 first_digit = Next();
4489 uc32 octal = ParseOctalLiteral();
4517 uc32 controlLetter = Next();
4520 uc32 letter = controlLetter & ~('a' ^ 'A');
4535 uc32 value;
4545 uc32 value;
4625 static bool IsSpecialClassEscape(uc32 c) {
4686 uc32
[all...]
H A Dlog-utils.cc377 uc32 c = str->Get(i);
H A Djsregexp.cc4146 uc32 chr = chars[i];
4184 uc32 c = range[i];
4353 uc32 chr = chars[j];
5202 void Call(uc32 from, DispatchTable::Entry entry);
5208 void AddDispatchRange::Call(uc32 from, DispatchTable::Entry entry) {
H A Dobjects-inl.h322 uc32 FlatStringReader::Get(int index) {
3779 void StringHasher::AddCharacter(uc32 c) {
3808 void StringHasher::AddCharacterNoIndex(uc32 c) {
H A Dobjects.h5194 inline void AddCharacter(uc32 c);
5199 inline void AddCharacterNoIndex(uc32 c);
5911 inline uc32 Get(int index);
H A Dobjects.cc5307 uc32 ca = ia->GetNext();
5308 uc32 cb = ib->GetNext();
5474 uc32 r = decoder->GetNext();
5533 uc32 ch = buffer->GetNext();
8646 hasher.AddCharacter(static_cast<uc32>(string_[i]));
8653 hasher.AddCharacterNoIndex(static_cast<uc32>(string_[i]));
H A Dheap.cc3391 const uc32 kMaxSupportedChar = 0xFFFF;
3412 uc32 r = decoder->GetNext();
H A Druntime.cc5236 uc32 current = buffer->GetNext();
5239 uc32 next = has_next ? buffer->GetNext() : 0;
5247 ASSERT(static_cast<uc32>(chars[0]) != current);
H A Dapi.cc3314 i::uc32 c = write_input_buffer.GetNext();
3325 i::uc32 c = write_input_buffer.GetNext();
/external/v8/test/cctest/
H A Dtest-regexp.cc1414 static uc32 canonicalize(uc32 c) {
1437 for (uc32 c = 128; c < (1 << 21); c++)
1441 for (uc32 c = 0; c < (1 << 16); c++) {
1448 uc32 u = upper[0];
1456 static uc32 CanonRangeEnd(uc32 c) {
1475 uc32 block_end = CanonRangeEnd(block_start);

Completed in 931 milliseconds