Home
last modified time | relevance | path

Searched refs:from_ (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/
Djsregexp.h269 CharacterRange() : from_(0), to_(0) { } in CharacterRange()
272 CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { } in CharacterRange()
285 bool Contains(uc16 i) { return from_ <= i && i <= to_; } in Contains()
286 uc16 from() const { return from_; } in from()
287 void set_from(uc16 value) { from_ = value; } in set_from()
290 bool is_valid() { return from_ <= to_; } in is_valid()
291 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; } in IsEverything()
292 bool IsSingleton() { return (from_ == to_); } in IsSingleton()
335 uc16 from_;
375 Entry() : from_(0), to_(0), out_set_(NULL) { } in Entry()
[all …]
Dcode-stubs.cc436 if (from_ == FAST_SMI_ONLY_ELEMENTS) { in Generate()
438 } else if (from_ == FAST_DOUBLE_ELEMENTS) { in Generate()
447 } else if (from_ == FAST_SMI_ONLY_ELEMENTS && to_ == FAST_DOUBLE_ELEMENTS) { in Generate()
Dcode-stubs.h1100 : from_(from), in ElementsTransitionAndStoreStub()
1115 return FromBits::encode(from_) | in MinorKey()
1124 ElementsKind from_; variable
Ddeoptimizer.h323 Address from_; variable
Dhydrogen-instructions.h2935 : HUnaryControlInstruction(value, NULL, NULL), from_(type), to_(type) { }
2937 : HUnaryControlInstruction(value, NULL, NULL), from_(from), to_(to) {
2941 InstanceType from() { return from_; }
2953 InstanceType from_;
Ddeoptimizer.cc355 from_(from), in Deoptimizer()
Dobjects.cc10733 : string_(string), from_(from), length_(length), seed_(seed) { } in SubStringAsciiSymbolKey()
10737 ASSERT(from_ + length_ <= string_->length()); in Hash()
10750 string_->SeqAsciiStringGet(i + from_))); in Hash()
10758 string_->SeqAsciiStringGet(i + from_))); in Hash()
10775 Vector<const char> chars(string_->GetChars() + from_, length_); in IsMatch()
10781 Vector<const char> chars(string_->GetChars() + from_, length_); in AsObject()
10787 int from_; member in v8::internal::SubStringAsciiSymbolKey
Dhydrogen-instructions.cc788 switch (from_) { in PrintDataTo()
/external/v8/src/x64/
Ddeoptimizer-x64.cc314 output_[0]->SetPc(reinterpret_cast<intptr_t>(from_)); in DoComputeOsrOutputFrame()
/external/v8/src/mips/
Ddeoptimizer-mips.cc327 output_[0]->SetPc(reinterpret_cast<uint32_t>(from_)); in DoComputeOsrOutputFrame()
/external/v8/src/arm/
Ddeoptimizer-arm.cc337 output_[0]->SetPc(reinterpret_cast<uint32_t>(from_)); in DoComputeOsrOutputFrame()
/external/v8/src/ia32/
Ddeoptimizer-ia32.cc427 output_[0]->SetPc(reinterpret_cast<uint32_t>(from_)); in DoComputeOsrOutputFrame()