Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-ast.h52 Interval() : from_(kNone), to_(kNone) {} in Interval()
53 Interval(int from, int to) : from_(from), to_(to) {} in Interval()
60 return Interval(Min(from_, that.from_), Max(to_, that.to_)); in Union()
62 bool Contains(int value) { return (from_ <= value) && (value <= to_); } in Contains()
65 int to() const { return to_; } in to()
71 int to_; variable
79 CharacterRange() : from_(0), to_(0) {} in CharacterRange()
103 bool Contains(uc32 i) { return from_ <= i && i <= to_; } in Contains()
106 uc32 to() const { return to_; } in to()
107 void set_to(uc32 value) { to_ = value; } in set_to()
[all …]
Djsregexp.h220 Entry() : from_(0), to_(0), out_set_(NULL) { } in Entry()
222 : from_(from), to_(to), out_set_(out_set) { in Entry()
226 uc32 to() { return to_; } in to()
227 void set_to(uc32 value) { to_ = value; } in set_to()
234 uc32 to_; 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/webrtc/webrtc/libjingle/xmpp/
Diqtask.cc25 to_(to), in IqTask()
26 stanza_(MakeIq(verb, to_, task_id())) { in IqTask()
38 if (!MatchResponseIq(stanza, to_, task_id())) in HandleStanza()
Dxmppengineimpl_iq.cc23 to_(to), in XmppIqEntry()
32 const std::string to_; member in buzz::XmppIqEntry
249 if (iq_entry->id_ == id && iq_entry->to_ == from) { in HandleIqResponse()
Diqtask.h42 Jid to_; variable
/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()
73 const uint64 to_; member in perftools::__anonb4828d4a0111::LookupCommand
/external/toolchain-utils/automation/common/
Devents.py71 return '%s => %s' % (self.from_, self.to_)
/external/toolchain-utils/automation/server/monitor/
Ddashboard.py70 'state_to': evlog.event.to_,
/external/v8/src/crankshaft/
Dhydrogen-instructions.cc1202 if (to_ == LAST_TYPE) os << " spec_object"; in PrintDataTo()
1205 if (to_ == JS_REGEXP_TYPE) os << " reg_exp"; in PrintDataTo()
1208 if (to_ == JS_ARRAY_TYPE) os << " array"; in PrintDataTo()
1211 if (to_ == JS_FUNCTION_TYPE) os << " function"; in PrintDataTo()
2811 *block = (from_ <= type) && (type <= to_) in KnownSuccessorBlock()
Dhydrogen-instructions.h3990 InstanceType to() { return to_; } in to()
4004 : HUnaryControlInstruction(value, NULL, NULL), from_(type), to_(type) { } in DECLARE_CONCRETE_INSTRUCTION()
4006 : HUnaryControlInstruction(value, NULL, NULL), from_(from), to_(to) { in HHasInstanceTypeAndBranch()
4011 InstanceType to_; // Inclusive range, not all combinations work. variable
/external/python/cpython3/Objects/
Dunicodeobject.c10096 unsigned char * to_ = (unsigned char *)((data)) + (start); \
10097 memset(to_, (unsigned char)value, (length)); \
10101 Py_UCS2 * to_ = (Py_UCS2 *)((data)) + (start); \
10102 for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
10106 Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \
10107 for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
/external/googletest/googlemock/docs/
DCookBook.md1058 pointer, but what if you want to make sure the value _pointed to_ by