Home
last modified time | relevance | path

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

12

/external/v8/src/regexp/
Dregexp-ast.h54 Interval() : from_(kNone), to_(kNone) {} in Interval()
55 Interval(int from, int to) : from_(from), to_(to) {} in Interval()
57 if (that.from_ == kNone) in Union()
59 else if (from_ == kNone) in Union()
62 return Interval(Min(from_, that.from_), Max(to_, that.to_)); in Union()
64 bool Contains(int value) { return (from_ <= value) && (value <= to_); } in Contains()
65 bool is_empty() { return from_ == kNone; } in is_empty()
66 int from() const { return from_; } in from()
72 int from_;
81 CharacterRange() : from_(0), to_(0) {} in CharacterRange()
[all …]
Djsregexp.h247 Entry() : from_(0), to_(0), out_set_(nullptr) {} in Entry()
249 : from_(from), to_(to), out_set_(out_set) { in Entry()
252 uc32 from() { return from_; } in from()
260 uc32 from_;
/external/v8/src/compiler/
Descape-analysis-reducer.cc371 : node_cache_(cache), from_(nullptr) { in Constructor()
394 DCHECK(tmp_ || from_); in Get()
397 node = node_cache_->Query(from_); in Get()
398 if (!node) node = from_; in Get()
408 tmp_ = from_ = nullptr; in Get()
413 DCHECK(tmp_ || from_); in MutableNode()
416 tmp_ = node_cache_->graph_->CloneNode(from_); in MutableNode()
420 int from_input_count = from_->InputCount(); in MutableNode()
427 tmp_->ReplaceInput(i, from_->InputAt(i)); in MutableNode()
429 tmp_->AppendInput(node_cache_->graph_->zone(), from_->InputAt(i)); in MutableNode()
[all …]
Descape-analysis-reducer.h33 : node_cache_(cache), from_(from), tmp_(nullptr) {} in Constructor()
40 if (!tmp_ && input == NodeProperties::GetValueInput(from_, i)) return; in ReplaceValueInput()
45 if (!tmp_ && input == from_->InputAt(i)) return; in ReplaceInput()
58 Node* from_; variable
/external/python/cpython2/Demo/turtle/
Dtdemo_minimal_hanoi.py44 def hanoi(n, from_, with_, to_): argument
46 hanoi(n-1, from_, to_, with_)
47 to_.push(from_.pop())
48 hanoi(n-1, with_, from_, to_)
/external/python/cpython3/Lib/turtledemo/
Dminimal_hanoi.py44 def hanoi(n, from_, with_, to_): argument
46 hanoi(n-1, from_, to_, with_)
47 to_.push(from_.pop())
48 hanoi(n-1, with_, from_, to_)
/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/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_extensions.py76 x = ttk.LabeledScale(self.root, from_=pair[0])
79 x = ttk.LabeledScale(self.root, from_='2.5')
82 x = ttk.LabeledScale(self.root, from_=None)
91 x = ttk.LabeledScale(self.root, variable=myvar, from_=0.5)
119 lscale = ttk.LabeledScale(self.root, from_=0, to=10)
130 lscale.scale.configure(from_=-5, to=5)
141 lscale.scale.configure(from_=0, to=10)
/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_extensions.py75 x = ttk.LabeledScale(self.root, from_=pair[0])
78 x = ttk.LabeledScale(self.root, from_=None)
87 x = ttk.LabeledScale(self.root, variable=myvar, from_=0.5)
115 lscale = ttk.LabeledScale(self.root, from_=0, to=10)
126 lscale.scale.configure(from_=-5, to=5)
137 lscale.scale.configure(from_=0, to=10)
/external/python/cpython2/Lib/lib-tk/
Dttk.py1480 def __init__(self, master=None, variable=None, from_=0, to=10, **kw): argument
1495 self._variable.set(from_)
1496 self._last_valid = from_
1499 self.scale = Scale(self, variable=self._variable, from_=from_, to=to)
1542 from_ = _to_number(self.scale['from'])
1544 if to < from_:
1545 from_, to = to, from_
1547 if not from_ <= newval <= to:
DTix.py1447 def delete(self, from_, to=None): argument
1448 self.tk.call(self._w, 'delete', from_, to)
1813 def delete_row(self, from_, to=None): argument
1817 self.tk.call(self, 'delete', 'row', from_)
1819 self.tk.call(self, 'delete', 'row', from_, to)
1821 def delete_column(self, from_, to=None): argument
1825 self.tk.call(self, 'delete', 'column', from_)
1827 self.tk.call(self, 'delete', 'column', from_, to)
1859 def move_column(self, from_, to, offset): argument
1863 self.tk.call(self, 'move', 'column', from_, to, offset)
[all …]
/external/python/cpython3/Lib/tkinter/
Dttk.py1533 def __init__(self, master=None, variable=None, from_=0, to=10, **kw): argument
1548 self._variable.set(from_)
1549 self._last_valid = from_
1552 self.scale = Scale(self, variable=self._variable, from_=from_, to=to)
1594 from_ = _to_number(self.scale['from'])
1596 if to < from_:
1597 from_, to = to, from_
1599 if not from_ <= newval <= to:
Dtix.py1444 def delete(self, from_, to=None): argument
1445 self.tk.call(self._w, 'delete', from_, to)
1809 def delete_row(self, from_, to=None): argument
1813 self.tk.call(self, 'delete', 'row', from_)
1815 self.tk.call(self, 'delete', 'row', from_, to)
1817 def delete_column(self, from_, to=None): argument
1821 self.tk.call(self, 'delete', 'column', from_)
1823 self.tk.call(self, 'delete', 'column', from_, to)
1855 def move_column(self, from_, to, offset): argument
1859 self.tk.call(self, 'move', 'column', from_, to, offset)
[all …]
/external/perf_data_converter/src/
Dintervalmap_test.cc58 : from_(from), to_(to), expected_(expected) {} in LookupCommand()
61 for (uint64 key = from_; key <= to_; ++key) { in ExecuteOn()
72 const uint64 from_; member in perftools::__anon558377130111::LookupCommand
/external/python/cpython2/Demo/tkinter/matt/
Dslider-demo-1.py14 self.slider = Scale(self, from_=0, to=100,
Danimation-w-velocity-ctrl.py20 self.speed = Scale(self, orient=HORIZONTAL, from_=-100, to=100)
Dpong-demo-1.py17 from_=-100, to=100)
/external/python/cpython3/Lib/
Dmailbox.py784 def get_string(self, key, from_=False): argument
787 self.get_bytes(key)).as_string(unixfrom=from_)
789 def get_bytes(self, key, from_=False): argument
793 if not from_:
798 def get_file(self, key, from_=False): argument
802 if not from_:
1650 def set_from(self, from_, time_=None): argument
1655 from_ += ' ' + time.asctime(time_)
1656 self._from = from_
/external/toolchain-utils/automation/common/
Devents.py71 return '%s => %s' % (self.from_, self.to_)
/external/v8/src/objects/
Dstring-inl.h235 from_(from), in SeqOneByteSubStringKey()
238 DCHECK_LE(from_ + length_, string_->length()); in SeqOneByteSubStringKey()
250 int from_; variable
/external/python/cpython2/Lib/
Dmailbox.py779 def get_string(self, key, from_=False): argument
783 if not from_:
788 def get_file(self, key, from_=False): argument
792 if not from_:
1604 def set_from(self, from_, time_=None): argument
1609 from_ += ' ' + time.asctime(time_)
1610 self._from = from_
/external/toolchain-utils/automation/server/monitor/
Ddashboard.py69 'state_from': evlog.event.from_,
/external/python/cpython3/Lib/test/
Dtest_unicode.py2798 for idx, from_ in enumerate(strings):
2803 unicode_copycharacters, to, 0, from_, 0, 5
2808 unicode_copycharacters(from_, 0, from_, from_start, 5),
2809 (from_[from_start:from_start+5].ljust(5, '\0'),
2814 unicode_copycharacters(from_, to_start, from_, to_start, 5),
2815 (from_[to_start:to_start+5].rjust(5, '\0'),
/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

12