Home
last modified time | relevance | path

Searched refs:uc32 (Results 1 – 17 of 17) sorted by relevance

/external/webkit/V8Binding/v8/src/
Dscanner.h43 void AddChar(uc32 c) { in AddChar()
69 void AddCharSlow(uc32 c);
78 virtual void PushBack(uc32 ch) = 0;
80 virtual uc32 Advance() = 0;
99 virtual void PushBack(uc32 ch);
100 virtual uc32 Advance();
104 List<uc32> pushback_buffer_;
105 uc32 last_;
108 List<uc32>* pushback_buffer() { return &pushback_buffer_; } in pushback_buffer()
117 virtual void PushBack(uc32 ch);
[all …]
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) { in Is()
55 static inline bool Is(uc32 c) { in Is()
Dscanner.cc66 void UTF8Buffer::AddCharSlow(uc32 c) { in AddCharSlow()
116 void CharacterStreamUTF16Buffer::PushBack(uc32 ch) { in PushBack()
123 uc32 CharacterStreamUTF16Buffer::Advance() { in Advance()
137 uc32 next = stream_->GetNext(); in Advance()
143 return last_ = static_cast<uc32>(-1); in Advance()
172 uc32 TwoByteStringUTF16Buffer::Advance() { in Advance()
179 return static_cast<uc32>(-1); in Advance()
184 void TwoByteStringUTF16Buffer::PushBack(uc32 ch) { in PushBack()
260 void Scanner::AddChar(uc32 c) { in AddChar()
277 static inline bool IsByteOrderMark(uc32 c) { in IsByteOrderMark()
[all …]
Dchar-predicates-inl.h37 inline bool IsCarriageReturn(uc32 c) { in IsCarriageReturn()
42 inline bool IsLineFeed(uc32 c) { in IsLineFeed()
54 inline bool IsDecimalDigit(uc32 c) { in IsDecimalDigit()
60 inline bool IsHexDigit(uc32 c) { in IsHexDigit()
Dparser.cc567 uc32 ParseClassCharacterEscape();
571 bool ParseHexEscape(int length, uc32* value);
573 uc32 ParseControlLetterEscape();
574 uc32 ParseOctalLiteral();
598 static const uc32 kEndMarker = (1 << 21);
639 uc32 current() { return current_; } in current()
642 uc32 Next();
645 uc32 current_;
4022 uc32 RegExpParser::Next() { in Next()
4251 uc32 c = Next(); in ParseDisjunction()
[all …]
Dconversions.h73 int HexValue(uc32 c);
Dglobals.h108 typedef int32_t uc32; typedef
Dlog-utils.cc297 uc32 c = str->Get(i); in AppendDetailed()
Dconversions.cc39 int HexValue(uc32 c) { in HexValue()
Dheap.cc1774 uc32 c = buffer->Get(start + i); in AllocateSubString()
1779 uc32 c = buffer->Get(start + i); in AllocateSubString()
2369 uc32 r = decoder->GetNext(); in AllocateStringFromUtf8()
2385 uc32 r = decoder->GetNext(); in AllocateStringFromUtf8()
Dobjects-inl.h336 uc32 FlatStringReader::Get(int index) { in Get()
2718 void StringHasher::AddCharacter(uc32 c) { in AddCharacter()
2747 void StringHasher::AddCharacterNoIndex(uc32 c) { in AddCharacterNoIndex()
Djsregexp.cc3924 uc32 chr = chars[i]; in AddCaseEquivalents()
3984 uc32 c = range[i]; in AddCaseEquivalents()
4326 void Call(uc32 from, DispatchTable::Entry entry);
4332 void AddDispatchRange::Call(uc32 from, DispatchTable::Entry entry) { in Call()
Dobjects.h3606 inline void AddCharacter(uc32 c);
3611 inline void AddCharacterNoIndex(uc32 c);
4231 inline uc32 Get(int index);
Dobjects.cc4305 uc32 ca = ia->GetNext(); in CompareStringContents()
4306 uc32 cb = ib->GetNext(); in CompareStringContents()
4473 uc32 r = decoder->GetNext(); in IsEqualTo()
4503 uc32 ch = buffer->GetNext(); in ComputeArrayIndex()
Dapi.cc2355 i::uc32 c = write_input_buffer.GetNext(); in WriteUtf8()
2365 i::uc32 c = write_input_buffer.GetNext(); in WriteUtf8()
Druntime.cc3449 uc32 current = buffer->GetNext(); in ConvertCaseHelper()
3452 uc32 next = has_next ? buffer->GetNext() : 0; in ConvertCaseHelper()
3460 ASSERT(static_cast<uc32>(chars[0]) != current); in ConvertCaseHelper()
/external/webkit/V8Binding/v8/test/cctest/
Dtest-regexp.cc1349 static uc32 canonicalize(uc32 c) { in canonicalize()
1372 for (uc32 c = 128; c < (1 << 21); c++) in TEST()
1375 for (uc32 c = 0; c < (1 << 21); c++) { in TEST()
1382 uc32 u = upper[0]; in TEST()
1390 static uc32 CanonRange(uc32 c) { in CanonRange()
1427 uc32 start = CanonRange(next_block); in TEST()