HomeSort by relevance Sort by last modified time
    Searched full:unibrow (Results 1 - 21 of 21) sorted by null

  /external/v8/src/
char-predicates.h 48 default: return unibrow::Letter::Is(c);
57 || unibrow::Number::Is(c)
58 || unibrow::CombiningMark::Is(c)
59 || unibrow::ConnectorPunctuation::Is(c);
scanner.h 46 static_cast<unsigned>(c) <= unibrow::Utf8::kMaxOneByteChar) {
76 return static_cast<int>(limit_ - data_) + unibrow::Utf8::kMaxEncodedSize;
80 return (data + capacity) - unibrow::Utf8::kMaxEncodedSize;
112 void Initialize(Handle<String> data, unibrow::CharacterStream* stream);
120 unibrow::CharacterStream* stream_;
261 typedef unibrow::Utf8InputBuffer<1024> Utf8Decoder;
268 unibrow::CharacterStream* stream,
345 static bool IsIdentifier(unibrow::CharacterStream* buffer);
347 static unibrow::Predicate<IdentifierStart, 128> kIsIdentifierStart;
348 static unibrow::Predicate<IdentifierPart, 128> kIsIdentifierPart
    [all...]
regexp-macro-assembler.cc 188 static unibrow::Mapping<unibrow::Ecma262Canonicalize> canonicalize;
227 unibrow::uchar c1 = substring1[i];
228 unibrow::uchar c2 = substring2[i];
230 unibrow::uchar s1[1] = { c1 };
233 unibrow::uchar s2[1] = { c2 };
scanner.cc 40 unibrow::Predicate<IdentifierStart, 128> Scanner::kIsIdentifierStart;
41 unibrow::Predicate<IdentifierPart, 128> Scanner::kIsIdentifierPart;
42 unibrow::Predicate<unibrow::LineTerminator, 128> Scanner::kIsLineTerminator;
43 unibrow::Predicate<unibrow::WhiteSpace, 128> Scanner::kIsWhiteSpace;
75 if (static_cast<unsigned>(c) <= unibrow::Utf8::kMaxOneByteChar) {
78 cursor_ += unibrow::Utf8::Encode(cursor_, c);
103 unibrow::CharacterStream* input) {
331 unibrow::CharacterStream* stream
    [all...]
interpreter-irregexp.cc 43 static unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize;
51 unibrow::uchar old_char = subject[from++];
52 unibrow::uchar new_char = subject[current++];
54 unibrow::uchar old_string[1] = { old_char };
55 unibrow::uchar new_string[1] = { new_char };
unicode-inl.h 33 namespace unibrow { namespace
236 } // namespace unibrow
unicode.h 38 namespace unibrow { namespace
277 } // namespace unibrow
debug-agent.cc 177 unibrow::Utf8InputBuffer<> buf(*message,
355 utf8_len += unibrow::Utf8::Length(message[i]);
373 unibrow::Utf8::Encode(buffer + buffer_position, message[i]);
parser.h 141 unibrow::CharacterStream* stream,
jsregexp.cc     [all...]
objects.h     [all...]
objects.cc     [all...]
heap-inl.h 45 unibrow::Utf8InputBuffer<> buffer(str.start(),
parser.cc 100 bool PreParseProgram(Handle<String> source, unibrow::CharacterStream* stream);
110 unibrow::CharacterStream* stream,
116 unibrow::CharacterStream* stream);
    [all...]
runtime.cc     [all...]
api.cc     [all...]
heap.h 385 static Object* AllocateInternalSymbol(unibrow::CharacterStream* buffer,
    [all...]
heap.cc     [all...]
unicode.cc 34 namespace unibrow { namespace
    [all...]
  /external/v8/test/cctest/
test-regexp.cc 87 unibrow::Utf8InputBuffer<> buffer(input, StrLength(input));
105 unibrow::Utf8InputBuffer<> buffer(input, StrLength(input));
431 return unibrow::Space::Is(c);
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js 28 // Texts are from the Unibrow test suite.
    [all...]

Completed in 280 milliseconds