Home
last modified time | relevance | path

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

12345678910>>...48

/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/main/
H A Dcte_cycle.result50 SELECT depth+1, t1.from_, t1.to_
52 ) CYCLE from_, to_ RESTRICT
54 depth from_ to_
64 SELECT depth+1, t1.from_, t1.to_
66 ) CYCLE from_, to_ RESTRICT
72 depth from_ to_
82 depth from_ to_
111 ) CYCLE from_, to_ RESTRICT
113 depth from_ to_
133 depth from_ to_ load_
[all …]
H A Dcte_cycle.test53 create table t1 (from_ int, to_ int);
56 WITH RECURSIVE cte (depth, from_, to_) as (
59 SELECT depth+1, t1.from_, t1.to_
60 FROM t1, cte WHERE t1.from_ = cte.to_
61 ) CYCLE from_, to_ RESTRICT
67 SELECT depth+1, t1.from_, t1.to_
69 ) CYCLE from_, to_ RESTRICT
112 SELECT depth+1, t1.from_, t1.to_
114 ) CYCLE from_, to_ RESTRICT
130 ) CYCLE from_, to_, load_ RESTRICT
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/main/
H A Dcte_cycle.result50 SELECT depth+1, t1.from_, t1.to_
52 ) CYCLE from_, to_ RESTRICT
54 depth from_ to_
64 SELECT depth+1, t1.from_, t1.to_
66 ) CYCLE from_, to_ RESTRICT
72 depth from_ to_
82 depth from_ to_
111 ) CYCLE from_, to_ RESTRICT
113 depth from_ to_
133 depth from_ to_ load_
[all …]
H A Dcte_cycle.test53 create table t1 (from_ int, to_ int);
56 WITH RECURSIVE cte (depth, from_, to_) as (
59 SELECT depth+1, t1.from_, t1.to_
60 FROM t1, cte WHERE t1.from_ = cte.to_
61 ) CYCLE from_, to_ RESTRICT
67 SELECT depth+1, t1.from_, t1.to_
69 ) CYCLE from_, to_ RESTRICT
112 SELECT depth+1, t1.from_, t1.to_
114 ) CYCLE from_, to_ RESTRICT
130 ) CYCLE from_, to_, load_ RESTRICT
[all …]
/dports/chinese/libime/libime-1.0.9/src/libime/core/kenlm/lm/
H A Dvalue.hh20 GenericProbingProxy() : to_(0) {} in GenericProbingProxy()
22 bool Found() const { return to_ != 0; } in Found()
26 enc.f = to_->prob; in Prob()
31 float Backoff() const { return to_->backoff; } in Backoff()
35 enc.f = to_->prob; in IndependentLeft()
40 const Weights *to_; member in lm::ngram::GenericProbingProxy
48 GenericTrieUnigramProxy() : to_(0) {} in GenericTrieUnigramProxy()
50 bool Found() const { return to_ != 0; } in Found()
51 float Prob() const { return to_->prob; } in Prob()
56 const Weights *to_; member in lm::ngram::GenericTrieUnigramProxy
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/dataset/
H A Dprojector.cc74 : to_(std::move(to)), in RecordBatchProjector()
75 missing_columns_(to_->num_fields(), nullptr), in RecordBatchProjector()
76 column_indices_(to_->num_fields(), kNoMatch), in RecordBatchProjector()
77 scalars_(to_->num_fields(), nullptr) {} in RecordBatchProjector()
86 ARROW_ASSIGN_OR_RAISE(auto match, ref.FindOne(*to_)); in SetDefaultValue()
89 auto field_type = to_->field(index)->type(); in SetDefaultValue()
110 ArrayVector columns(to_->num_fields()); in Project()
112 for (int i = 0; i < to_->num_fields(); ++i) { in Project()
125 RETURN_NOT_OK(CheckProjectable(*from, *to_)); in SetInputSchema()
128 for (int i = 0; i < to_->num_fields(); ++i) { in SetInputSchema()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/dataset/
H A Dprojector.cc65 : to_(std::move(to)), in RecordBatchProjector()
66 missing_columns_(to_->num_fields(), nullptr), in RecordBatchProjector()
67 column_indices_(to_->num_fields(), kNoMatch), in RecordBatchProjector()
68 scalars_(to_->num_fields(), nullptr) {} in RecordBatchProjector()
77 ARROW_ASSIGN_OR_RAISE(auto match, ref.FindOne(*to_)); in SetDefaultValue()
80 auto field_type = to_->field(index)->type(); in SetDefaultValue()
101 std::vector<std::shared_ptr<Array>> columns(to_->num_fields()); in Project()
103 for (int i = 0; i < to_->num_fields(); ++i) { in Project()
116 RETURN_NOT_OK(CheckProjectable(*from, *to_)); in SetInputSchema()
119 for (int i = 0; i < to_->num_fields(); ++i) { in SetInputSchema()
[all …]
/dports/x11-wm/sawfish/sawfish_1.13.0/src/
H A Dgradient.c34 rep_DECLARE3(to_, COLORP);
45 to[0] = VCOLOR(to_)->red / 256;
46 to[1] = VCOLOR(to_)->green / 256;
47 to[2] = VCOLOR(to_)->blue / 256;
76 rep_DECLARE3(to_, COLORP);
87 to[0] = VCOLOR(to_)->red / 256;
88 to[1] = VCOLOR(to_)->green / 256;
89 to[2] = VCOLOR(to_)->blue / 256;
118 rep_DECLARE3(to_, COLORP);
129 to[0] = VCOLOR(to_)->red / 256;
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/fonts/
H A Dunicode_range_set.h41 UnicodeRange(UChar32 from, UChar32 to) : from_(from), to_(to) {} in UnicodeRange()
44 UChar32 To() const { return to_; } in To()
45 bool Contains(UChar32 c) const { return from_ <= c && c <= to_; } in Contains()
49 bool operator<(UChar32 c) const { return to_ < c; }
51 return other.from_ == from_ && other.to_ == to_;
56 UChar32 to_; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/fonts/
H A Dunicode_range_set.h41 UnicodeRange(UChar32 from, UChar32 to) : from_(from), to_(to) {} in UnicodeRange()
44 UChar32 To() const { return to_; } in To()
45 bool Contains(UChar32 c) const { return from_ <= c && c <= to_; } in Contains()
49 bool operator<(UChar32 c) const { return to_ < c; }
51 return other.from_ == from_ && other.to_ == to_;
56 UChar32 to_; member
/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/examples/call/
H A Ddiscoitemsquerytask.cc43 to_ = to; in DiscoItemsQueryTask()
47 talk_base::scoped_ptr<XmlElement> get(MakeIq(STR_GET, to_, task_id())); in ProcessStart()
55 SignalDiscoItemsError(to_, NULL); in ProcessStart()
71 SignalGotDiscoItems(to_, query); in ProcessResponse()
77 SignalDiscoItemsError(to_, stanza->FirstNamed(QN_ERROR)); in ProcessResponse()
84 SignalDiscoItemsError(to_, NULL); in OnTimeout()
89 if (!MatchResponseIq(stanza, to_, task_id())) in HandleStanza()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bgrl/
H A Dbgrl_vertex.cxx38 if (out_edge->to_) { in strip()
39 out_edge->to_->in_edges_.erase(out_edge); in strip()
40 out_edge->to_ = nullptr; in strip()
55 in_edge->to_ = nullptr; in strip()
74 if (!(*itr)->to_) { in purge()
107 if (out_edge->to_ == vertex) in add_edge_to()
118 new_edge->to_ = vertex.ptr(); in add_edge_to()
139 if ((*itr)->to_ == vertex) { in remove_edge_to()
141 (*itr)->to_ = nullptr; in remove_edge_to()
220 in_edge->to_ = this; in b_read()
H A Dbgrl_edge.h35 bgrl_edge() : from_(nullptr), to_(nullptr) {} in bgrl_edge()
37 bgrl_edge(bgrl_edge const& e) : vbl_ref_count(), from_(e.from_), to_(e.to_) {} in bgrl_edge()
45 bgrl_vertex_sptr to() const { return bgrl_vertex_sptr(to_); } in to()
76 bgrl_vertex* to_; variable
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/range-v3/include/range/v3/view/
H A Dlinear_distribute.hpp43 T from_, to_; member
59 RANGES_EXPECT(to_ == other.to_); in equal()
70 from_ = to_; in next()
74 from_ += (to_ - from_) / T(n_); in next()
82 , to_(to__) in linear_distribute_view()
86 RANGES_EXPECT(to_ >= from_); in linear_distribute_view()
H A Diota.hpp206 if(from_ == to_) in next()
273 , to_(std::move(to)) in cursor()
280 return {from_, to_}; in begin_cursor()
288 return {to_, to_, true}; in end_cursor()
301 RANGES_EXPECT(from_ <= to_); in check_bounds_()
310 , to_(std::move(to)) in closed_iota_view()
354 : to_(std::move(to)) in sentinel()
376 return from_ == that.to_; in equal()
420 return that.to_ - from_; in distance_to()
447 RANGES_EXPECT(from_ <= to_); in check_bounds_()
[all …]
/dports/devel/range-v3/range-v3-0.11.0/include/range/v3/view/
H A Dlinear_distribute.hpp43 T from_, to_; member
59 RANGES_EXPECT(to_ == other.to_); in equal()
70 from_ = to_; in next()
74 from_ += (to_ - from_) / T(n_); in next()
82 , to_(to__) in linear_distribute_view()
86 RANGES_EXPECT(to_ >= from_); in linear_distribute_view()
H A Diota.hpp206 if(from_ == to_) in next()
273 , to_(std::move(to)) in cursor()
280 return {from_, to_}; in begin_cursor()
288 return {to_, to_, true}; in end_cursor()
301 RANGES_EXPECT(from_ <= to_); in check_bounds_()
310 , to_(std::move(to)) in closed_iota_view()
354 : to_(std::move(to)) in sentinel()
376 return from_ == that.to_; in equal()
420 return that.to_ - from_; in distance_to()
447 RANGES_EXPECT(from_ <= to_); in check_bounds_()
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/colin/src/libs/
H A DApplication_Domain.cpp33 int lexicalCast_MixedIntVars_realPart(const Any& from_, Any& to_) in lexicalCast_MixedIntVars_realPart() argument
36 RealComponent &ans = to_.set<RealComponent>(); in lexicalCast_MixedIntVars_realPart()
45 int lexicalCast_MixedIntVars_intPart(const Any& from_, Any& to_) in lexicalCast_MixedIntVars_intPart() argument
48 IntegerComponent &ans = to_.set<IntegerComponent>(); in lexicalCast_MixedIntVars_intPart()
57 int lexicalCast_MixedIntVars_binPart(const Any& from_, Any& to_) in lexicalCast_MixedIntVars_binPart() argument
60 BinaryComponent &ans = to_.set<BinaryComponent>(); in lexicalCast_MixedIntVars_binPart()
74 int lexicalCast_MixedIntVars_discretePart(const Any& from_, Any& to_) in lexicalCast_MixedIntVars_discretePart() argument
77 DiscreteComponent &ans = to_.set<DiscreteComponent>(); in lexicalCast_MixedIntVars_discretePart()
99 int lexicalCast_MixedIntVars_differentiablePart(const Any& from_, Any& to_) in lexicalCast_MixedIntVars_differentiablePart() argument
102 DifferentiableComponent &ans = to_.set<DifferentiableComponent>(); in lexicalCast_MixedIntVars_differentiablePart()
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Common/UI/
H A DTween.cpp48 data.to = to_; in PersistData()
59 to_ = data.to; in PersistData()
73 return colorBlend(to_, from_, pos); in Current()
96 if (to_ == V_VISIBLE && p > 0.0f) in Current()
97 return to_; in Current()
98 return p >= 1.0f ? to_ : from_; in Current()
113 return Point(from_.x * inv + to_.x * p, from_.y * inv + to_.y * p); in Current()
/dports/emulators/ppsspp/ppsspp-1.12.3/Common/UI/
H A DTween.cpp48 data.to = to_; in PersistData()
59 to_ = data.to; in PersistData()
73 return colorBlend(to_, from_, pos); in Current()
96 if (to_ == V_VISIBLE && p > 0.0f) in Current()
97 return to_; in Current()
98 return p >= 1.0f ? to_ : from_; in Current()
113 return Point(from_.x * inv + to_.x * p, from_.y * inv + to_.y * p); in Current()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Common/UI/
H A DTween.cpp48 data.to = to_; in PersistData()
59 to_ = data.to; in PersistData()
73 return colorBlend(to_, from_, pos); in Current()
96 if (to_ == V_VISIBLE && p > 0.0f) in Current()
97 return to_; in Current()
98 return p >= 1.0f ? to_ : from_; in Current()
113 return Point(from_.x * inv + to_.x * p, from_.y * inv + to_.y * p); in Current()
/dports/cad/openroad/OpenROAD-2.0/src/sta/sdc/
H A DDisabledPorts.cc31 to_(nullptr), in DisabledPorts()
39 delete to_; in ~DisabledPorts()
76 if (to_ == nullptr) in setDisabledTo()
77 to_ = new LibertyPortSet; in setDisabledTo()
78 to_->insert(port); in setDisabledTo()
84 if (to_) in removeDisabledTo()
85 to_->erase(port); in removeDisabledTo()
121 || (to_ && to_->hasKey(to)) in isDisabled()
/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnsdb/src/
H A Ddynupdate-diff-nochain.c110 …atic void dnssec_chain_node_nochain_publish_log(dnssec_chain_node_t from_, dnssec_chain_node_t to_) in dnssec_chain_node_nochain_publish_log() argument
113 (void)to_; in dnssec_chain_node_nochain_publish_log()
116 …dnssec_chain_head_t chain_, dnssec_chain_node_t from_, dnssec_chain_node_t to_, zone_diff *diff, p… in dnssec_chain_node_nochain_publish_add() argument
120 (void)to_; in dnssec_chain_node_nochain_publish_add()
125 …dnssec_chain_head_t chain_, dnssec_chain_node_t from_, dnssec_chain_node_t to_, zone_diff *diff, p… in dnssec_chain_node_nochain_publish_delete() argument
129 (void)to_; in dnssec_chain_node_nochain_publish_delete()
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/src/def/def/
H A DdefiIOTiming.cpp61 to_ = 0; in Init()
110 if (to_) free(to_); in Destroy()
111 to_ = 0; in Destroy()
287 if (to_) free(to_); in setTo()
288 to_ = (char*) malloc(len); in setTo()
292 strcpy(to_, defData->DEFCASE(name)); in setTo()
414 return to_; in to()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/css/
H A Dcss_unicode_range_value.cc34 if (from_ == to_) in CustomCSSText()
36 return String::Format("U+%X-%X", from_, to_); in CustomCSSText()
40 return from_ == other.from_ && to_ == other.to_; in Equals()

12345678910>>...48