Home
last modified time | relevance | path

Searched refs:unicode_cache (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/
Dconversions-inl.h244 inline bool AdvanceToNonspace(UnicodeCache* unicode_cache, in AdvanceToNonspace() argument
248 if (!unicode_cache->IsWhiteSpaceOrLineTerminator(**current)) return true; in AdvanceToNonspace()
257 double InternalStringToIntDouble(UnicodeCache* unicode_cache, in InternalStringToIntDouble() argument
284 !AdvanceToNonspace(unicode_cache, &current, end)) { in InternalStringToIntDouble()
316 AdvanceToNonspace(unicode_cache, &current, end)) { in InternalStringToIntDouble()
358 double InternalStringToInt(UnicodeCache* unicode_cache, in InternalStringToInt() argument
365 if (!AdvanceToNonspace(unicode_cache, &current, end)) { in InternalStringToInt()
431 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
434 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
437 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
[all …]
Dconversions.cc73 double StringToDouble(UnicodeCache* unicode_cache, in StringToDouble() argument
79 return InternalStringToDouble(unicode_cache, start, end, flags, in StringToDouble()
84 double StringToDouble(UnicodeCache* unicode_cache, in StringToDouble() argument
92 return InternalStringToDouble(unicode_cache, start, end, flags, in StringToDouble()
97 double StringToDouble(UnicodeCache* unicode_cache, in StringToDouble() argument
102 return InternalStringToDouble(unicode_cache, str.start(), end, flags, in StringToDouble()
108 double StringToInt(UnicodeCache* unicode_cache, in StringToInt() argument
112 unicode_cache, vector.start(), vector.start() + vector.length(), radix); in StringToInt()
116 double StringToInt(UnicodeCache* unicode_cache, in StringToInt() argument
120 unicode_cache, vector.start(), vector.start() + vector.length(), radix); in StringToInt()
[all …]
Dconversions.h109 double StringToDouble(UnicodeCache* unicode_cache,
113 double StringToDouble(UnicodeCache* unicode_cache,
118 double StringToDouble(UnicodeCache* unicode_cache,
124 double StringToInt(UnicodeCache* unicode_cache,
129 double StringToInt(UnicodeCache* unicode_cache,
184 double StringToDouble(UnicodeCache* unicode_cache, Handle<String> string,
193 bool IsSpecialIndex(UnicodeCache* unicode_cache, String* string);
Ddateparser-inl.h17 UnicodeCache* unicode_cache = isolate->unicode_cache(); in Parse() local
19 InputReader<Char> in(unicode_cache, str); in Parse()
Dbackground-parsing-task.h40 UnicodeCache unicode_cache; member
Ddateparser.h52 InputReader(UnicodeCache* unicode_cache, Vector<Char> s) in InputReader() argument
55 unicode_cache_(unicode_cache) { in InputReader()
Dbackground-parsing-task.cc38 info->set_unicode_cache(&source_->unicode_cache); in BackgroundParsingTask()
Djson-parser.cc566 number = StringToDouble(isolate()->unicode_cache(), chars, in ParseJsonNumber()
574 number = StringToDouble(isolate()->unicode_cache(), result, in ParseJsonNumber()
Dlookup.cc794 return IsSpecialIndex(isolate_->unicode_cache(), *name_string) in NotFound()
Disolate.h886 UnicodeCache* unicode_cache() { in unicode_cache() function
Dfactory.cc334 decoder(isolate()->unicode_cache()->utf8_decoder()); in NewStringFromUtf8()
370 isolate()->unicode_cache()->utf8_decoder()); in NewStringFromUtf8SubString()
Dobjects.cc10246 UnicodeCache* unicode_cache = isolate->unicode_cache(); in Trim() local
10249 unicode_cache->IsWhiteSpaceOrLineTerminator(string->Get(left))) { in Trim()
10259 unicode_cache->IsWhiteSpaceOrLineTerminator(string->Get(right - 1))) { in Trim()
10384 StringToDouble(isolate->unicode_cache(), subject, flags)); in ToNumber()
10879 UnicodeCache* cache = isolate->unicode_cache(); in CalculateLineEndsImpl()
/external/v8/src/parsing/
Dparse-info.cc58 set_unicode_cache(isolate_->unicode_cache()); in ParseInfo()
89 set_unicode_cache(isolate_->unicode_cache()); in ParseInfo()
120 p->set_unicode_cache(isolate->unicode_cache()); in AllocateWithoutScript()
Dparse-info.h148 UnicodeCache* unicode_cache() const { return unicode_cache_; } in unicode_cache() function
149 void set_unicode_cache(UnicodeCache* unicode_cache) { in set_unicode_cache() argument
150 unicode_cache_ = unicode_cache; in set_unicode_cache()
Dscanner.cc180 Scanner::Scanner(UnicodeCache* unicode_cache) in Scanner() argument
181 : unicode_cache_(unicode_cache), in Scanner()
Dscanner.h290 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache() function
Dparser.cc508 scanner_(info->unicode_cache()), in Parser()
/external/v8/src/runtime/
Druntime-numbers.cc61 result = StringToInt(isolate->unicode_cache(), flat.ToOneByteVector(), in RUNTIME_FUNCTION()
65 StringToInt(isolate->unicode_cache(), flat.ToUC16Vector(), radix32); in RUNTIME_FUNCTION()
80 StringToDouble(isolate->unicode_cache(), subject, ALLOW_TRAILING_JUNK, in RUNTIME_FUNCTION()
/external/v8/src/compiler/
Daccess-info.cc403 IsSpecialIndex(isolate()->unicode_cache(), String::cast(*name))) { in ComputePropertyAccessInfo()
/external/v8/src/crankshaft/
Dhydrogen.cc6013 IsSpecialIndex(isolate()->unicode_cache(), String::cast(*name_)); in IsIntegerIndexedExotic()