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

  /external/v8/src/
v8conversions.cc 83 double StringToDouble(UnicodeCache* unicode_cache,
89 return InternalStringToDouble(unicode_cache, begin, end, flags,
94 return InternalStringToDouble(unicode_cache, begin, end, flags,
98 return InternalStringToDouble(unicode_cache,
107 double StringToInt(UnicodeCache* unicode_cache,
114 return InternalStringToInt(unicode_cache, begin, end, radix);
118 return InternalStringToInt(unicode_cache, begin, end, radix);
121 return InternalStringToInt(unicode_cache,
v8conversions.h 50 double StringToDouble(UnicodeCache* unicode_cache,
56 double StringToInt(UnicodeCache* unicode_cache, String* str, int radix);
conversions.h 114 double StringToDouble(UnicodeCache* unicode_cache,
118 double StringToDouble(UnicodeCache* unicode_cache,
123 double StringToDouble(UnicodeCache* unicode_cache,
conversions-inl.h 122 inline bool AdvanceToNonspace(UnicodeCache* unicode_cache,
126 if (!unicode_cache->IsWhiteSpace(**current)) return true;
135 double InternalStringToIntDouble(UnicodeCache* unicode_cache,
162 !AdvanceToNonspace(unicode_cache, &current, end)) {
194 AdvanceToNonspace(unicode_cache, &current, end)) {
238 double InternalStringToInt(UnicodeCache* unicode_cache,
245 if (!AdvanceToNonspace(unicode_cache, &current, end)) {
313 unicode_cache, current, end, negative, allow_trailing_junk);
316 unicode_cache, current, end, negative, allow_trailing_junk);
319 unicode_cache, current, end, negative, allow_trailing_junk)
    [all...]
conversions.cc 41 double StringToDouble(UnicodeCache* unicode_cache,
44 return InternalStringToDouble(unicode_cache, str, end, flags,
49 double StringToDouble(UnicodeCache* unicode_cache,
54 return InternalStringToDouble(unicode_cache, str.start(), end, flags,
58 double StringToDouble(UnicodeCache* unicode_cache,
63 return InternalStringToDouble(unicode_cache, str.start(), end, flags,
preparser-api.cc 190 internal::UnicodeCache unicode_cache; local
191 internal::Scanner scanner(&unicode_cache);
dateparser-inl.h 39 UnicodeCache* unicode_cache) {
41 InputReader<Char> in(unicode_cache, str);
dateparser.h 74 InputReader(UnicodeCache* unicode_cache, Vector<Char> s)
77 unicode_cache_(unicode_cache) {
scanner.cc 41 Scanner::Scanner(UnicodeCache* unicode_cache)
42 : unicode_cache_(unicode_cache),
json-parser.h 397 number = StringToDouble(isolate()->unicode_cache(),
407 number = StringToDouble(isolate()->unicode_cache(),
scanner.h 390 UnicodeCache* unicode_cache() { return unicode_cache_; } function in class:v8::internal::Scanner
preparser.cc     [all...]
isolate.h 841 UnicodeCache* unicode_cache() { function in class:v8::internal::Isolate
    [all...]
parser.cc 542 scanner_(isolate_->unicode_cache()),
    [all...]
liveobjectlist.cc     [all...]
runtime.cc     [all...]
heap.cc     [all...]
objects.cc     [all...]
  /external/v8/test/cctest/
test-parsing.cc 58 i::UnicodeCache unicode_cache; local
67 i::Scanner scanner(&unicode_cache);
78 i::Scanner scanner(&unicode_cache);
89 i::Scanner scanner(&unicode_cache);
99 i::Scanner scanner(&unicode_cache);
262 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
298 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
400 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
620 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
701 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
    [all...]

Completed in 422 milliseconds