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

  /external/v8/src/
char-predicates.h 17 inline int AsciiAlphaToLower(uc32 c);
18 inline bool IsCarriageReturn(uc32 c);
19 inline bool IsLineFeed(uc32 c);
20 inline bool IsAsciiIdentifier(uc32 c);
21 inline bool IsAlphaNumeric(uc32 c);
22 inline bool IsDecimalDigit(uc32 c);
23 inline bool IsHexDigit(uc32 c);
24 inline bool IsOctalDigit(uc32 c);
25 inline bool IsBinaryDigit(uc32 c);
26 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) {
584 inline void SeqStringSet(Handle<StringType> seq_str, int i, uc32 c);
587 inline void SeqStringSet(Handle<SeqTwoByteString> seq_str, int i, uc32 c) {
592 inline void SeqStringSet(Handle<SeqOneByteString> seq_str, int i, uc32 c) {
672 uc32 value = 0;
725 uc32 c0 = c0_;
uri.cc 48 uc32 value = unibrow::Utf8::ValueOf(octets, length, &cursor);
54 if (value <= static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
log-utils.cc 197 uc32 c = str->Get(i);
globals.h 257 typedef int32_t uc32; typedef in namespace:v8::internal
    [all...]
messages.cc 542 const uc32 subject_char = subject_reader.Get(subject_index);
    [all...]
utils.h 33 inline int HexValue(uc32 c) {
    [all...]
objects.h     [all...]
objects-inl.h 902 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() {
111 bool RegExpParser::IsSyntaxCharacterOrSlash(uc32 c) {
376 uc32 c = Next();
388 uc32 p = Next();
441 uc32 first_digit = Next();
455 uc32 octal = ParseOctalLiteral();
483 uc32 controlLetter = Next();
486 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 221 Entry(uc32 from, uc32 to, OutSet* out_set)
225 uc32 from() { return from_; }
226 uc32 to() { return to_; }
227 void set_to(uc32 value) { to_ = value; }
233 uc32 from_;
234 uc32 to_;
240 typedef uc32 Key;
242 static const uc32 kNoKey;
244 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 37 static const uc32 kEndOfInput = -1;
43 inline uc32 Advance() {
45 return static_cast<uc32>(*(buffer_cursor_++));
47 return static_cast<uc32>(*(buffer_cursor_++));
196 static const uc32 kEndOfInput = Utf16CharacterStream::kEndOfInput;
377 INLINE(void AddChar(uc32 code_unit)) {
379 code_unit <= static_cast<uc32>(unibrow::Latin1::kMaxChar)) {
441 void AddCharSlow(uc32 code_unit);
467 uc32 ScanOctalEscape(uc32 c, int length)
    [all...]
scanner.cc 106 void Scanner::LiteralBuffer::AddCharSlow(uc32 code_unit) {
109 if (code_unit <= static_cast<uc32>(unibrow::Latin1::kMaxChar)) {
117 static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
199 uc32 Scanner::ScanHexNumber(int expected_length) {
203 uc32 x = 0;
221 uc32 Scanner::ScanUnlimitedLengthHexNumber(int max_value, int beg_pos) {
222 uc32 x = 0;
432 static inline bool IsLittleEndianByteOrderMark(uc32 c) {
570 uc32 ch = c0_;
944 uc32 c = c0_
    [all...]
  /external/v8/src/builtins/
builtins-string.cc 624 uc32 NextCodePoint(Isolate* isolate, BuiltinArguments args, int index) {
647 uc32 code = 0;
668 if (code <= static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
    [all...]

Completed in 610 milliseconds