Searched refs:Copy (Results 1 - 25 of 181) sorted by relevance
12345678
/5.5.2/goproj/src/github.com/couchbase/query/expression/ |
H A D | case_util.go | 26 func (this *WhenTerm) Copy() *WhenTerm { 28 When: this.When.Copy(), 29 Then: this.Then.Copy(), 33 func (this WhenTerms) Copy() WhenTerms { 36 copies[i] = term.Copy()
|
H A D | coll_object.go | 115 func (this *Object) Copy() Expression { 116 return NewObject(this.nameMapping.Copy(), this.valueMapping.Copy(), 117 this.bindings.Copy(), Copy(this.when))
|
H A D | expression.go | 164 Copy() Expression 239 func (this Expressions) Copy() Expressions { 259 func Copy(expr Expression) Expression { 264 return expr.Copy() 272 return exprs.Copy()
|
H A D | coll_first.go | 97 func (this *First) Copy() Expression { 98 return NewFirst(this.valueMapping.Copy(), this.bindings.Copy(), Copy(this.when))
|
H A D | case_simple.go | 168 func (this *SimpleCase) Copy() Expression { 169 return NewSimpleCase(this.searchTerm.Copy(), this.whenTerms.Copy(), Copy(this.elseTerm))
|
H A D | case_searched.go | 151 func (this *SearchedCase) Copy() Expression { 152 return NewSearchedCase(this.whenTerms.Copy(), Copy(this.elseTerm))
|
H A D | coll_any.go | 98 func (this *Any) Copy() Expression { 99 return NewAny(this.bindings.Copy(), Copy(this.satisfies))
|
H A D | coll_any_every.go | 98 func (this *AnyEvery) Copy() Expression { 99 return NewAnyEvery(this.bindings.Copy(), Copy(this.satisfies))
|
H A D | coll_every.go | 98 func (this *Every) Copy() Expression { 99 return NewEvery(this.bindings.Copy(), Copy(this.satisfies))
|
H A D | binding.go | 37 func (this *Binding) Copy() *Binding { 41 expr: this.expr.Copy(), 184 func (this Bindings) Copy() Bindings { 187 copies[i] = b.Copy()
|
H A D | cons_object.go | 154 func (this *ObjectConstruct) Copy() Expression { 157 copies[name.Copy()] = value.Copy()
|
/5.5.2/goproj/src/github.com/couchbase/query/plan/ |
H A D | span2.go | 36 func (this *Range2) Copy() *Range2 { 38 Low: expression.Copy(this.Low), 39 High: expression.Copy(this.High), 107 func (this Ranges2) Copy() Ranges2 { 111 ranges[i] = r.Copy() 162 func (this *Span2) Copy() *Span2 { 165 Ranges: this.Ranges.Copy(), 273 func (this Spans2) Copy() Spans2 { 277 spans[i] = s.Copy()
|
H A D | scan_index_order.go | 30 func (this *IndexKeyOrder) Copy() *IndexKeyOrder { 77 func (this IndexKeyOrders) Copy() IndexKeyOrders { 81 orderkeys[i] = r.Copy()
|
H A D | span.go | 38 func (this *Range) Copy() *Range { 119 func (this *Span) Copy() *Span { 122 Range: *(this.Range.Copy()), 190 func (this Spans) Copy() Spans { 194 spans[i] = s.Copy()
|
/5.5.2/goproj/src/github.com/couchbase/query/planner/ |
H A D | index_entry.go | 44 func (this *indexEntry) Copy() *indexEntry { 51 cond: expression.Copy(this.cond), 52 origCond: expression.Copy(this.origCond),
|
H A D | build_scan_secondary.go | 181 keys = keys.Copy() 184 key = key.Copy() 214 cond = cond.Copy() 223 origCond = cond.Copy() 277 partitionKeys = partitionKeys.Copy() 279 key = key.Copy()
|
/5.5.2/goproj/src/github.com/couchbase/query/execution/ |
H A D | parallel.go | 43 func (this *Parallel) Copy() Operator { 46 child: this.child.Copy(), 68 this.children[i] = this.child.Copy() 99 outChild = this.child.Copy()
|
H A D | order_limit.go | 61 func (this *OrderLimit) Copy() Operator { 66 Order: this.Order.Copy().(*Order), 68 limit: this.limit.Copy().(*Limit), 76 Order: this.Order.Copy().(*Order), 77 offset: this.offset.Copy().(*Offset), 78 limit: this.limit.Copy().(*Limit),
|
H A D | scan_parent.go | 38 func (this *ParentScan) Copy() Operator { 57 this.sendItem(parent.Copy().(value.AnnotatedValue))
|
H A D | fetch.go | 45 func (this *Fetch) Copy() Operator { 140 fv = value.NewAnnotatedValue(fv.Copy()) 182 func (this *DummyFetch) Copy() Operator { 193 item.SetField(this.plan.Term().Alias(), item.Copy())
|
H A D | except.go | 44 func (this *ExceptAll) Copy() Operator { 47 first: this.first.Copy(), 48 second: this.second.Copy(),
|
H A D | intersect.go | 44 func (this *IntersectAll) Copy() Operator { 47 first: this.first.Copy(), 48 second: this.second.Copy(),
|
H A D | let.go | 39 func (this *Let) Copy() Operator { 50 lv := item.Copy().(value.AnnotatedValue)
|
H A D | prepare.go | 42 func (this *Prepare) Copy() Operator { 67 val := value.NewValue(this.prepared).Copy()
|
H A D | unnest.go | 39 func (this *Unnest) Copy() Operator { 74 av = value.NewAnnotatedValue(item.Copy())
|
Completed in 47 milliseconds
12345678