/external/v8/src/ |
D | conversions-inl.h | 244 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, ¤t, end)) { in InternalStringToIntDouble() 316 AdvanceToNonspace(unicode_cache, ¤t, end)) { in InternalStringToIntDouble() 358 double InternalStringToInt(UnicodeCache* unicode_cache, in InternalStringToInt() argument 365 if (!AdvanceToNonspace(unicode_cache, ¤t, 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 …]
|
D | conversions.h | 109 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);
|
D | conversions.cc | 73 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 …]
|
D | dateparser-inl.h | 17 UnicodeCache* unicode_cache = isolate->unicode_cache(); in Parse() local 19 InputReader<Char> in(unicode_cache, str); in Parse()
|
D | background-parsing-task.h | 40 UnicodeCache unicode_cache; member
|
D | dateparser.h | 52 InputReader(UnicodeCache* unicode_cache, Vector<Char> s) in InputReader() argument 55 unicode_cache_(unicode_cache) { in InputReader()
|
D | background-parsing-task.cc | 38 info->set_unicode_cache(&source_->unicode_cache); in BackgroundParsingTask()
|
D | json-parser.cc | 566 number = StringToDouble(isolate()->unicode_cache(), chars, in ParseJsonNumber() 574 number = StringToDouble(isolate()->unicode_cache(), result, in ParseJsonNumber()
|
D | lookup.cc | 794 return IsSpecialIndex(isolate_->unicode_cache(), *name_string) in NotFound()
|
D | isolate.h | 886 UnicodeCache* unicode_cache() { in unicode_cache() function
|
D | factory.cc | 334 decoder(isolate()->unicode_cache()->utf8_decoder()); in NewStringFromUtf8() 370 isolate()->unicode_cache()->utf8_decoder()); in NewStringFromUtf8SubString()
|
D | objects.cc | 10246 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/ |
D | parse-info.cc | 58 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()
|
D | parse-info.h | 148 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()
|
D | scanner.cc | 180 Scanner::Scanner(UnicodeCache* unicode_cache) in Scanner() argument 181 : unicode_cache_(unicode_cache), in Scanner()
|
D | scanner.h | 290 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache() function
|
D | parser.cc | 508 scanner_(info->unicode_cache()), in Parser()
|
/external/v8/src/runtime/ |
D | runtime-numbers.cc | 61 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/ |
D | access-info.cc | 404 IsSpecialIndex(isolate()->unicode_cache(), String::cast(*name))) { in ComputePropertyAccessInfo()
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 6013 IsSpecialIndex(isolate()->unicode_cache(), String::cast(*name_)); in IsIntegerIndexedExotic()
|