HomeSort by relevance Sort by last modified time
    Searched refs:uc32 (Results 1 - 25 of 37) sorted by null

1 2

  /external/v8/src/
char-predicates.h 39 inline bool IsCarriageReturn(uc32 c);
40 inline bool IsLineFeed(uc32 c);
41 inline bool IsDecimalDigit(uc32 c);
42 inline bool IsHexDigit(uc32 c);
43 inline bool IsRegExpWord(uc32 c);
44 inline bool IsRegExpNewline(uc32 c);
47 static inline bool Is(uc32 c) {
57 static inline bool Is(uc32 c) {
char-predicates-inl.h 40 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) {
scanner.h 66 inline int HexValue(uc32 c) {
88 inline uc32 Advance() {
91 return static_cast<uc32>(*(buffer_cursor_++));
128 static const uc32 kEndOfInput = -1;
395 uc32 ScanOctalEscape(uc32 c, int length);
464 INLINE(void AddLiteralChar(uc32 c)) {
487 void PushBack(uc32 ch) {
497 inline Token::Value Select(uc32 next, Token::Value then, Token::Value else_) {
507 uc32 ScanHexNumber(int expected_length)
    [all...]
scanner-character-streams.h 44 virtual void PushBack(uc32 character);
108 virtual void PushBack(uc32 character) {
scanner.cc 61 uc32 Scanner::ScanHexNumber(int expected_length) {
64 uc32 digits[4] = { 0, 0, 0, 0 };
65 uc32 x = 0;
244 static inline bool IsByteOrderMark(uc32 c) {
317 uc32 ch = c0_;
615 uc32 c = c0_;
666 uc32 Scanner::ScanOctalEscape(uc32 c, int length) {
667 uc32 x = c - '0';
690 uc32 quote = c0_
    [all...]
json-parser.h 83 inline uc32 AdvanceGetChar() {
90 inline bool MatchSkipWhiteSpace(uc32 c) {
162 uc32 c0_;
419 inline void SeqStringSet(Handle<StringType> seq_str, int i, uc32 c);
422 inline void SeqStringSet(Handle<SeqTwoByteString> seq_str, int i, uc32 c) {
427 inline void SeqStringSet(Handle<SeqAsciiString> seq_str, int i, uc32 c) {
506 uc32 value = 0;
parser.h 326 uc32 ParseClassCharacterEscape();
330 bool ParseHexEscape(int length, uc32* value);
332 uc32 ParseOctalLiteral();
356 static const uc32 kEndMarker = (1 << 21);
402 uc32 current() { return current_; }
405 uc32 Next();
413 uc32 current_;
globals.h 274 typedef int32_t uc32; typedef in namespace:v8::internal
277 const uc32 kMaxAsciiCharCode = 0x7f;
preparser-api.cc 79 virtual void PushBack(uc32 ch) {
parser.cc     [all...]
log-utils.cc 268 uc32 c = str->Get(i);
scanner-character-streams.cc 51 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
  /external/chromium_org/v8/src/
char-predicates.h 39 inline bool IsCarriageReturn(uc32 c);
40 inline bool IsLineFeed(uc32 c);
41 inline bool IsDecimalDigit(uc32 c);
42 inline bool IsHexDigit(uc32 c);
43 inline bool IsOctalDigit(uc32 c);
44 inline bool IsBinaryDigit(uc32 c);
45 inline bool IsRegExpWord(uc32 c);
46 inline bool IsRegExpNewline(uc32 c);
49 static inline bool Is(uc32 c) {
59 static inline bool Is(uc32 c)
    [all...]
char-predicates-inl.h 40 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) {
74 inline bool IsOctalDigit(uc32 c) {
80 inline bool IsBinaryDigit(uc32 c) {
scanner.h 47 inline int HexValue(uc32 c) {
69 inline uc32 Advance() {
72 return static_cast<uc32>(*(buffer_cursor_++));
109 static const uc32 kEndOfInput = -1;
387 uc32 ScanOctalEscape(uc32 c, int length);
457 INLINE(void AddLiteralChar(uc32 c)) {
480 void PushBack(uc32 ch) {
490 inline Token::Value Select(uc32 next, Token::Value then, Token::Value else_) {
500 uc32 ScanHexNumber(int expected_length)
    [all...]
scanner-character-streams.h 44 virtual void PushBack(uc32 character);
108 virtual void PushBack(uc32 character) {
scanner.cc 62 uc32 Scanner::ScanHexNumber(int expected_length) {
65 uc32 digits[4] = { 0, 0, 0, 0 };
66 uc32 x = 0;
245 static inline bool IsByteOrderMark(uc32 c) {
318 uc32 ch = c0_;
616 uc32 c = c0_;
668 uc32 Scanner::ScanOctalEscape(uc32 c, int length) {
669 uc32 x = c - '0';
692 uc32 quote = c0_
    [all...]
json-parser.h 101 inline uc32 AdvanceGetChar() {
108 inline bool MatchSkipWhiteSpace(uc32 c) {
217 uc32 c0_;
567 inline void SeqStringSet(Handle<StringType> seq_str, int i, uc32 c);
570 inline void SeqStringSet(Handle<SeqTwoByteString> seq_str, int i, uc32 c) {
575 inline void SeqStringSet(Handle<SeqOneByteString> seq_str, int i, uc32 c) {
660 uc32 value = 0;
714 uc32 c0 = c0_;
parser.h 320 uc32 ParseClassCharacterEscape();
324 bool ParseHexEscape(int length, uc32* value);
326 uc32 ParseOctalLiteral();
350 static const uc32 kEndMarker = (1 << 21);
397 uc32 current() { return current_; }
400 uc32 Next();
409 uc32 current_;
preparser-api.cc 79 virtual void PushBack(uc32 ch) {
parser.cc     [all...]
globals.h 290 typedef int32_t uc32; typedef in namespace:v8::internal
log-utils.cc 222 uc32 c = str->Get(i);
scanner-character-streams.cc 52 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
  /external/chromium_org/v8/test/cctest/
test-regexp.cc     [all...]

Completed in 2275 milliseconds

1 2