/external/v8/src/regexp/ |
D | regexp-ast.h | 50 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 …]
|
D | jsregexp.h | 267 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/ |
D | compiler.py | 6 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/ |
D | compiler.py | 6 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/ |
D | mssegmentation.cpp | 123 SegmLink(int from_, int to_, const SegmLinkVal& val_) in SegmLink() 124 : from(from_), to(to_), val(val_) {} in SegmLink()
|
/external/webrtc/webrtc/base/ |
D | virtualsocketserver.cc | 66 : 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/ |
D | models.py | 97 from_ = sql[sql.find(' FROM'):] 99 from_),
|
/external/autotest/frontend/afe/ |
D | model_logic.py | 308 from_ = sql[sql.find(' FROM'):] 315 sql_query = ('SELECT ' + distinct + ','.join(selects) + from_)
|
/external/v8/src/ |
D | deoptimizer.cc | 524 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()
|
D | deoptimizer.h | 666 Address from_; variable
|
D | objects-inl.h | 580 : 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
|
D | objects.cc | 16991 string_, from_, length_, hash_field_); in AsHandle() 16996 Vector<const uint8_t> chars(string_->GetChars() + from_, length_); in IsMatch()
|
/external/v8/src/crankshaft/ |
D | hydrogen-instructions.h | 4555 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
|
D | hydrogen-instructions.cc | 1265 switch (from_) { in PrintDataTo() 3300 *block = (from_ <= type) && (type <= to_) in KnownSuccessorBlock()
|