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

  /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) {
json-parser.h 67 INLINE(uc32 AdvanceGetChar());
71 INLINE(bool MatchSkipWhiteSpace(uc32 c));
158 uc32 c0_;
json-parser.cc 203 uc32 JsonParser<seq_one_byte>::AdvanceGetChar() {
209 bool JsonParser<seq_one_byte>::MatchSkipWhiteSpace(uc32 c) {
583 inline void SeqStringSet(Handle<StringType> seq_str, int i, uc32 c);
586 inline void SeqStringSet(Handle<SeqTwoByteString> seq_str, int i, uc32 c) {
591 inline void SeqStringSet(Handle<SeqOneByteString> seq_str, int i, uc32 c) {
671 uc32 value = 0;
724 uc32 c0 = c0_;
log-utils.cc 198 uc32 c = str->Get(i);
uri.cc 48 uc32 value = unibrow::Utf8::ValueOf(octets, length, &cursor);
globals.h 225 typedef int32_t uc32; typedef in namespace:v8::internal
    [all...]
utils.h 32 inline int HexValue(uc32 c) {
    [all...]
builtins.cc     [all...]
objects.h     [all...]
objects-inl.h 484 uc32 FlatStringReader::Get(int index) {
    [all...]
  /external/v8/src/regexp/
regexp-parser.h 104 void AddUnicodeCharacter(uc32 character);
105 void AddEscapedUnicodeCharacter(uc32 character);
110 void AddCharacterClassForDesugaring(uc32 c);
128 bool NeedsDesugaringForIgnoreCase(uc32 c);
170 uc32 ParseClassCharacterEscape();
174 bool ParseHexEscape(int length, uc32* value);
175 bool ParseUnicodeEscape(uc32* value);
176 bool ParseUnlimitedLengthHexNumber(int max_value, uc32* value);
179 uc32 ParseOctalLiteral();
206 static bool IsSyntaxCharacterOrSlash(uc32 c)
    [all...]
regexp-parser.cc 47 inline uc32 RegExpParser::ReadNext() {
49 uc32 c0 = in()->Get(position);
65 uc32 RegExpParser::Next() {
110 bool RegExpParser::IsSyntaxCharacterOrSlash(uc32 c) {
373 uc32 c = Next();
385 uc32 p = Next();
438 uc32 first_digit = Next();
452 uc32 octal = ParseOctalLiteral();
480 uc32 controlLetter = Next();
483 uc32 letter = controlLetter & ~('a' ^ 'A')
    [all...]
regexp-macro-assembler.h 14 static const uc32 kLeadSurrogateStart = 0xd800;
15 static const uc32 kLeadSurrogateEnd = 0xdbff;
16 static const uc32 kTrailSurrogateStart = 0xdc00;
17 static const uc32 kTrailSurrogateEnd = 0xdfff;
18 static const uc32 kNonBmpStart = 0x10000;
19 static const uc32 kNonBmpEnd = 0x10ffff;
regexp-ast.h 85 static inline CharacterRange Singleton(uc32 value) {
88 static inline CharacterRange Range(uc32 from, uc32 to) {
103 bool Contains(uc32 i) { return from_ <= i && i <= to_; }
104 uc32 from() const { return from_; }
105 void set_from(uc32 value) { from_ = value; }
106 uc32 to() const { return to_; }
107 void set_to(uc32 value) { to_ = value; }
129 CharacterRange(uc32 from, uc32 to) : from_(from), to_(to) {
    [all...]
jsregexp.h 272 Entry(uc32 from, uc32 to, OutSet* out_set)
276 uc32 from() { return from_; }
277 uc32 to() { return to_; }
278 void set_to(uc32 value) { to_ = value; }
284 uc32 from_;
285 uc32 to_;
291 typedef uc32 Key;
293 static const uc32 kNoKey;
295 static inline int Compare(uc32 a, uc32 b)
    [all...]
regexp-macro-assembler.cc 47 uc32 c1 = substring1[i];
48 uc32 c2 = substring2[i];
jsregexp.cc     [all...]
  /external/v8/src/parsing/
scanner.h 45 inline uc32 Advance() {
48 return static_cast<uc32>(*(buffer_cursor_++));
87 static const uc32 kEndOfInput = -1;
171 INLINE(void AddChar(uc32 code_unit)) {
507 uc32 ScanOctalEscape(uc32 c, int length);
565 INLINE(void AddLiteralChar(uc32 c)) {
575 INLINE(void AddRawLiteralChar(uc32 c)) {
609 uc32 c1 = source_->Advance();
618 void PushBack(uc32 ch)
    [all...]
scanner.cc 66 uc32 Scanner::ScanHexNumber(int expected_length) {
70 uc32 x = 0;
88 uc32 Scanner::ScanUnlimitedLengthHexNumber(int max_value, int beg_pos) {
89 uc32 x = 0;
294 static inline bool IsLittleEndianByteOrderMark(uc32 c) {
430 uc32 ch = c0_;
762 uc32 c = c0_;
819 uc32 Scanner::ScanOctalEscape(uc32 c, int length) {
820 uc32 x = c - '0'
    [all...]
scanner-character-streams.h 26 void PushBack(uc32 character) override;
159 void PushBack(uc32 character) override {
scanner-character-streams.cc 62 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
  /external/v8/test/cctest/
test-regexp.cc 571 for (uc32 i = 0; i < (1 << 16); i++) {
    [all...]
  /external/v8/src/runtime/
runtime-strings.cc 798 static inline bool ToUpperOverflows(uc32 character) {
801 static const uc32 yuml_code = 0xff;
802 static const uc32 micro_code = 0xb5;
828 uc32 current = stream.GetNext();
832 uc32 next = has_next ? stream.GetNext() : 0;
841 DCHECK(static_cast<uc32>(chars[0]) != current);
    [all...]

Completed in 1881 milliseconds