Searched refs:from_ (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/ |
D | jsregexp.h | 269 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 …]
|
D | code-stubs.cc | 436 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()
|
D | code-stubs.h | 1100 : from_(from), in ElementsTransitionAndStoreStub() 1115 return FromBits::encode(from_) | in MinorKey() 1124 ElementsKind from_; variable
|
D | deoptimizer.h | 323 Address from_; variable
|
D | hydrogen-instructions.h | 2935 : 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_;
|
D | deoptimizer.cc | 355 from_(from), in Deoptimizer()
|
D | objects.cc | 10733 : 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
|
D | hydrogen-instructions.cc | 788 switch (from_) { in PrintDataTo()
|
/external/v8/src/x64/ |
D | deoptimizer-x64.cc | 314 output_[0]->SetPc(reinterpret_cast<intptr_t>(from_)); in DoComputeOsrOutputFrame()
|
/external/v8/src/mips/ |
D | deoptimizer-mips.cc | 327 output_[0]->SetPc(reinterpret_cast<uint32_t>(from_)); in DoComputeOsrOutputFrame()
|
/external/v8/src/arm/ |
D | deoptimizer-arm.cc | 337 output_[0]->SetPc(reinterpret_cast<uint32_t>(from_)); in DoComputeOsrOutputFrame()
|
/external/v8/src/ia32/ |
D | deoptimizer-ia32.cc | 427 output_[0]->SetPc(reinterpret_cast<uint32_t>(from_)); in DoComputeOsrOutputFrame()
|