Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-ast.h50 Interval() : from_(kNone), to_(kNone) {} in Interval()
51 Interval(int from, int to) : from_(from), to_(to) {} in Interval()
53 if (that.from_ == kNone) in Union()
55 else if (from_ == kNone) in Union()
58 return Interval(Min(from_, that.from_), Max(to_, that.to_)); in Union()
60 bool Contains(int value) { return (from_ <= value) && (value <= to_); } in Contains()
61 bool is_empty() { return from_ == kNone; } in is_empty()
62 int from() const { return from_; } in from()
68 int from_;
77 CharacterRange() : from_(0), to_(0) {} in CharacterRange()
[all …]
Djsregexp.h267 Entry() : from_(0), to_(0), out_set_(NULL) { } in Entry()
269 : from_(from), to_(to), out_set_(out_set) { } in Entry()
270 uc16 from() { return from_; } in from()
278 uc16 from_;
/external/autotest/frontend/db/backends/afe_sqlite/
Dcompiler.py6 from_, params = super(SQLCompiler, self).get_from_clause()
10 from_.append('%s %s AS %s ON (%s)'
17 return from_, params
/external/autotest/frontend/db/backends/afe/
Dcompiler.py6 from_, params = super(SQLCompiler, self).get_from_clause()
10 from_.append('%s %s AS %s ON (%s)'
17 return from_, params
/external/opencv3/modules/cudaimgproc/src/
Dmssegmentation.cpp123 SegmLink(int from_, int to_, const SegmLinkVal& val_) in SegmLink()
124 : from(from_), to(to_), val(val_) {} in SegmLink()
/external/webrtc/webrtc/base/
Dvirtualsocketserver.cc66 : size_(size), consumed_(0), from_(from) { in Packet()
78 const SocketAddress& from() const { return from_; } in from()
89 SocketAddress from_; member in rtc::Packet
/external/autotest/frontend/tko/
Dmodels.py97 from_ = sql[sql.find(' FROM'):]
99 from_),
/external/autotest/frontend/afe/
Dmodel_logic.py308 from_ = sql[sql.find(' FROM'):]
315 sql_query = ('SELECT ' + distinct + ','.join(selects) + from_)
/external/v8/src/
Ddeoptimizer.cc524 from_(from), in Deoptimizer()
567 PROFILE(isolate_, CodeDeoptEvent(compiled_code_, from_, fp_to_sp_delta_)); in Deoptimizer()
581 Code* compiled_code = FindDeoptimizingCode(from_); in FindOptimizedCode()
583 ? static_cast<Code*>(isolate_->FindCodeObject(from_)) in FindOptimizedCode()
587 DCHECK(optimized_code->contains(from_)); in FindOptimizedCode()
728 compiled_code_->PrintDeoptLocation(trace_scope_->file(), from_); in DoComputeOutputFrames()
Ddeoptimizer.h666 Address from_; variable
Dobjects-inl.h580 : string_(string), from_(from), length_(length) { in SeqOneByteSubStringKey()
586 DCHECK(from_ + length_ <= string_->length()); in Hash()
587 const uint8_t* chars = string_->GetChars() + from_; in Hash()
604 int from_; variable
Dobjects.cc16991 string_, from_, length_, hash_field_); in AsHandle()
16996 Vector<const uint8_t> chars(string_->GetChars() + from_, length_); in IsMatch()
/external/v8/src/crankshaft/
Dhydrogen-instructions.h4555 InstanceType from() { return from_; } in from()
4570 : HUnaryControlInstruction(value, NULL, NULL), from_(type), to_(type) { } in DECLARE_CONCRETE_INSTRUCTION()
4572 : HUnaryControlInstruction(value, NULL, NULL), from_(from), to_(to) { in HHasInstanceTypeAndBranch()
4576 InstanceType from_; variable
Dhydrogen-instructions.cc1265 switch (from_) { in PrintDataTo()
3300 *block = (from_ <= type) && (type <= to_) in KnownSuccessorBlock()