Home
last modified time | relevance | path

Searched refs:FormatRangeSource (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dintl-objects.h62 enum class FormatRangeSource { kShared, kStartRange, kEndRange }; enum
68 FormatRangeSource GetSource(int32_t start, int32_t limit) const;
78 FormatRangeSource source);
Dintl-objects.cc2930 Intl::FormatRangeSource Intl::FormatRangeSourceTracker::GetSource( in GetSource()
2932 FormatRangeSource source = FormatRangeSource::kShared; in GetSource()
2934 source = FormatRangeSource::kStartRange; in GetSource()
2936 source = FormatRangeSource::kEndRange; in GetSource()
2948 Handle<String> Intl::SourceString(Isolate* isolate, FormatRangeSource source) { in SourceString()
2950 case FormatRangeSource::kShared: in SourceString()
2952 case FormatRangeSource::kStartRange: in SourceString()
2954 case FormatRangeSource::kEndRange: in SourceString()