OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unibrow
(Results
1 - 23
of
23
) sorted by null
/external/chromium_org/v8/src/
char-predicates.h
29
default: return
unibrow
::Letter::Is(c);
38
||
unibrow
::Number::Is(c)
41
||
unibrow
::CombiningMark::Is(c)
42
||
unibrow
::ConnectorPunctuation::Is(c);
54
// \u0020 and \u00A0 are included in
unibrow
::WhiteSpace.
55
unibrow
::WhiteSpace::Is(c);
63
return WhiteSpace::Is(c) ||
unibrow
::LineTerminator::Is(c);
scanner-character-streams.cc
180
static const
unibrow
::uchar kMaxUtf16Character = 0xffff;
187
unibrow
::uchar c = src[*src_pos];
188
if (c <=
unibrow
::Utf8::kMaxOneByteChar) {
191
c =
unibrow
::Utf8::CalculateValue(src + *src_pos, src_length - *src_pos,
195
dest[i++] =
unibrow
::Utf16::LeadSurrogate(c);
196
dest[i++] =
unibrow
::Utf16::TrailSurrogate(c);
250
if (character >
unibrow
::Utf8::kMaxOneByteChar) {
265
if (character >
unibrow
::Utf8::kMaxOneByteChar) {
385
unibrow
::uchar c;
392
unibrow
::Utf8::kMaxOneByteChar)
[
all
...]
scanner.h
114
typedef
unibrow
::Utf8Decoder<512> Utf8Decoder;
120
bool IsIdentifierStart(
unibrow
::uchar c) { return kIsIdentifierStart.get(c); }
121
bool IsIdentifierPart(
unibrow
::uchar c) { return kIsIdentifierPart.get(c); }
122
bool IsLineTerminator(
unibrow
::uchar c) { return kIsLineTerminator.get(c); }
123
bool IsWhiteSpace(
unibrow
::uchar c) { return kIsWhiteSpace.get(c); }
124
bool IsWhiteSpaceOrLineTerminator(
unibrow
::uchar c) {
129
unibrow
::Predicate<IdentifierStart, 128> kIsIdentifierStart;
130
unibrow
::Predicate<IdentifierPart, 128> kIsIdentifierPart;
131
unibrow
::Predicate<
unibrow
::LineTerminator, 128> kIsLineTerminator
[
all
...]
regexp-macro-assembler.cc
209
unibrow
::Mapping<
unibrow
::Ecma262Canonicalize>* canonicalize =
220
unibrow
::uchar c1 = substring1[i];
221
unibrow
::uchar c2 = substring2[i];
223
unibrow
::uchar s1[1] = { c1 };
226
unibrow
::uchar s2[1] = { c2 };
func-name-inferrer.cc
29
if (!name->IsEmpty() &&
unibrow
::Uppercase::Is(name->FirstCharacter())) {
isolate.h
[
all
...]
interpreter-irregexp.cc
22
typedef
unibrow
::Mapping<
unibrow
::Ecma262Canonicalize> Canonicalize;
30
unibrow
::uchar old_char = subject[from++];
31
unibrow
::uchar new_char = subject[current++];
33
unibrow
::uchar old_string[1] = { old_char };
34
unibrow
::uchar new_string[1] = { new_char };
runtime.h
[
all
...]
unicode.h
15
namespace
unibrow
{
namespace
259
} // namespace
unibrow
json-parser.h
735
unibrow
::Utf16::kMaxNonSurrogateCharCode) {
738
unibrow
::Utf16::LeadSurrogate(c0));
741
unibrow
::Utf16::TrailSurrogate(c0));
unicode-inl.h
12
namespace
unibrow
{
namespace
203
} // namespace
unibrow
jsregexp.cc
[
all
...]
log.cc
94
int previous =
unibrow
::Utf16::kNoPreviousCharacter;
97
if (c <=
unibrow
::Utf8::kMaxOneByteChar) {
100
int char_length =
unibrow
::Utf8::Length(c, previous);
102
unibrow
::Utf8::Encode(utf8_buffer_ + utf8_pos_, c, previous);
[
all
...]
unicode.cc
11
namespace
unibrow
{
namespace
317
if (character >
unibrow
::Utf16::kMaxNonSurrogateCharCode) {
[
all
...]
api.cc
[
all
...]
heap-snapshot-generator.cc
[
all
...]
objects.cc
[
all
...]
objects.h
[
all
...]
runtime.cc
[
all
...]
/external/chromium_org/v8/test/cctest/
test-regexp.cc
[
all
...]
test-parsing.cc
661
static const unsigned kMaxUC16CharU =
unibrow
::Utf8::kMaxThreeByteChar;
665
(
unibrow
::Utf8::kMaxOneByteChar + 1) +
666
(
unibrow
::Utf8::kMaxTwoByteChar -
unibrow
::Utf8::kMaxOneByteChar) * 2 +
667
(
unibrow
::Utf8::kMaxThreeByteChar -
unibrow
::Utf8::kMaxTwoByteChar) * 3;
674
cursor +=
unibrow
::Utf8::Encode(buffer + cursor,
676
unibrow
::Utf16::kNoPreviousCharacter);
[
all
...]
test-strings.cc
[
all
...]
/external/chromium_org/v8/src/heap/
heap.cc
[
all
...]
Completed in 644 milliseconds