/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-ast.h | 51 Interval() : from_(kNone), to_(kNone - 1) {} // '- 1' for branchless size(). in Interval() 52 Interval(int from, int to) : from_(from), to_(to) {} in Interval() 54 if (that.from_ == kNone) return *this; in Union() 55 if (from_ == kNone) return that; in Union() 56 return Interval(std::min(from_, that.from_), std::max(to_, that.to_)); in Union() 61 bool Contains(int value) const { return (from_ <= value) && (value <= to_); } in Contains() 62 bool is_empty() const { return from_ == kNone; } in is_empty() 63 int from() const { return from_; } in from() 65 int size() const { return to_ - from_ in to() 70 int from_; global() member in v8::internal::Interval 149 base::uc32 from_ = 0; global() member in v8::internal::CharacterRange [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | escape-analysis-reducer.cc | 375 : node_cache_(cache), from_(nullptr) { in Constructor() 398 DCHECK(tmp_ || from_); in Get() 401 node = node_cache_->Query(from_); in Get() 402 if (!node) node = from_; in Get() 412 tmp_ = from_ = nullptr; in Get() 417 DCHECK(tmp_ || from_); in MutableNode() 420 tmp_ = node_cache_->graph_->CloneNode(from_); in MutableNode() 424 int from_input_count = from_->InputCount(); in MutableNode() 431 tmp_->ReplaceInput(i, from_->InputAt(i)); in MutableNode() 433 tmp_->AppendInput(node_cache_->graph_->zone(), from_ in MutableNode() [all...] |
H A D | escape-analysis-reducer.h | 34 : node_cache_(cache), from_(from), tmp_(nullptr) {} in Constructor() 41 if (!tmp_ && input == NodeProperties::GetValueInput(from_, i)) return; in ReplaceValueInput() 46 if (!tmp_ && input == from_->InputAt(i)) return; in ReplaceInput() 59 Node* from_; member in v8::internal::compiler::NodeHashCache::Constructor
|
/third_party/python/Lib/turtledemo/ |
H A D | minimal_hanoi.py | 44 def hanoi(n, from_, with_, to_): 46 hanoi(n-1, from_, to_, with_) 47 to_.push(from_.pop()) 48 hanoi(n-1, with_, from_, to_)
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_unicode.py | 422 for idx, from_ in enumerate(strings): 427 unicode_copycharacters, to, 0, from_, 0, 5 432 unicode_copycharacters(from_, 0, from_, from_start, 5), 433 (from_[from_start:from_start+5].ljust(5, '\0'), 438 unicode_copycharacters(from_, to_start, from_, to_start, 5), 439 (from_[to_start:to_start+5].rjust(5, '\0'),
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_extensions.py | 63 x = ttk.LabeledScale(self.root, from_=pair[0]) 66 x = ttk.LabeledScale(self.root, from_=None) 69 # variable should have its default value set to the from_ value 75 x = ttk.LabeledScale(self.root, variable=myvar, from_=0.5) 103 lscale = ttk.LabeledScale(self.root, from_=0, to=10) 113 lscale.scale.configure(from_=-5, to=5) 124 lscale.scale.configure(from_=0, to=10)
|
H A D | test_widgets.py | 792 self.scale['from_'] = 10 798 self.scale.configure(from_=2, to=5) 799 self.scale.configure(from_=0, to=-2)
|
/third_party/python/Lib/tkinter/ |
H A D | ttk.py | 1055 Setting a value for any of the "from", "from_" or "to" options 1060 if any(['from' in kw, 'from_' in kw, 'to' in kw]): 1140 to, from_, increment, values, wrap, format, command 1485 def __init__(self, master=None, variable=None, from_=0, to=10, **kw): 1500 self._variable.set(from_) 1501 self._last_valid = from_ 1504 self.scale = Scale(self, variable=self._variable, from_=from_, to=to) 1549 from_ = _to_number(self.scale['from']) 1551 if to < from_ [all...] |
H A D | tix.py | 1446 def delete(self, from_, to=None): 1447 self.tk.call(self._w, 'delete', from_, to) 1811 def delete_row(self, from_, to=None): 1812 """Delete rows between from_ and to inclusive. 1813 If to is not provided, delete only row at from_""" 1815 self.tk.call(self, 'delete', 'row', from_) 1817 self.tk.call(self, 'delete', 'row', from_, to) 1819 def delete_column(self, from_, to=None): 1820 """Delete columns between from_ and to inclusive. 1821 If to is not provided, delete only column at from_""" [all...] |
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | deoptimizer.cc | 476 from_(from), in Deoptimizer() 511 from_, fp_to_sp_delta_)); in Deoptimizer() 534 // from_ is the value of the link register after the call to the in Deoptimizer() 535 // deoptimizer, so for the last lazy deopt, from_ points to the first in Deoptimizer() 538 if (from_ <= lazy_deopt_start) { in Deoptimizer() 539 int offset = static_cast<int>(from_ - kEagerDeoptExitSize - deopt_start); in Deoptimizer() 544 static_cast<int>(from_ - kLazyDeoptExitSize - lazy_deopt_start); in Deoptimizer() 551 Code compiled_code = FindDeoptimizingCode(from_); in FindOptimizedCode() 553 : isolate_->FindCodeObject(from_); in FindOptimizedCode() 666 Deoptimizer::GetDeoptInfo(compiled_code_, from_); in TraceDeoptBegin() [all...] |
H A D | deoptimizer.h | 196 Address from_; member in v8::internal::Deoptimizer
|
/third_party/python/Lib/ |
H A D | mailbox.py | 787 def get_string(self, key, from_=False): 790 self.get_bytes(key, from_)).as_string(unixfrom=from_) 792 def get_bytes(self, key, from_=False): 796 if not from_: 801 def get_file(self, key, from_=False): 805 if not from_: 1653 def set_from(self, from_, time_=None): 1658 from_ += ' ' + time.asctime(time_) 1659 self._from = from_ [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | string-inl.h | 419 from_(from), in SeqSubStringKey() 428 DCHECK_LE(from_ + length(), string_->length()); in SeqSubStringKey() 441 base::Vector<const Char>(string_->GetChars(no_gc) + from_, length()), in IsMatch() 451 CopyChars(result->GetChars(no_gc), string_->GetChars(no_gc) + from_, in PrepareForInsertion() 459 CopyChars(result->GetChars(no_gc), string_->GetChars(no_gc) + from_, in PrepareForInsertion() 471 int from_; member in v8::internal::final
|
/third_party/python/Lib/test/ |
H A D | test_mailbox.py | 1000 self.assertEqual(self._box.get_bytes(key0, from_=False), 1002 self.assertEqual(self._box.get_bytes(key1, from_=False), 1004 self.assertEqual(self._box.get_bytes(key0, from_=True), 1006 self.assertEqual(self._box.get_bytes(key1, from_=True), 1014 self.assertEqual(self._box.get_string(key0, from_=False), 1016 self.assertEqual(self._box.get_string(key1, from_=False).split('\n'), 1018 self.assertEqual(self._box.get_string(key0, from_=True), 1020 self.assertEqual(self._box.get_string(key1, from_=True).split('\n'),
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
H A D | vktGlobalPriorityQueueTests.cpp | 395 #define MAPENTRY(from_,to_) m_createInstanceMap[{from_,to_}] = &GPQCase::createInstance<from_,to_> 914 return std::string("from_") + from.second + std::string("_to_") + to.second; in createGlobalPriorityQueueTests()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/ |
H A D | vktGlobalPriorityQueueTests.cpp | 442 #define MAPENTRY(from_,to_) m_createInstanceMap[{from_,to_}] = &GPQCase::createInstance<from_,to_> 1015 return std::string("from_") + from.second + std::string("_to_") + to.second; in createGlobalPriorityQueueTests()
|
/third_party/python/Lib/idlelib/ |
H A D | configdialog.py | 1662 from_=1, to=10, width=2,
|