/5.5.2/goproj/src/github.com/couchbase/query/value/ |
H A D | binary.go | 47 func (this binaryValue) Equals(other Value) Value { 48 other = other.unwrap() 49 switch other := other.(type) { 51 return other 53 return other 55 if bytes.Equal(this, other) { 63 func (this binaryValue) EquivalentTo(other Value) bool { 64 other [all...] |
H A D | boolean.go | 74 func (this boolValue) Equals(other Value) Value { 75 other = other.unwrap() 76 switch other := other.(type) { 78 return other 80 return other 82 if this == other { 90 func (this boolValue) EquivalentTo(other Value) bool { 91 other [all...] |
H A D | integer.go | 68 func (this intValue) Equals(other Value) Value { 69 other = other.unwrap() 70 switch other := other.(type) { 72 return other 74 return other 76 if this == other { 80 if float64(this) == float64(other) { 88 func (this intValue) EquivalentTo(other Valu [all...] |
H A D | array.go | 89 func (this sliceValue) Equals(other Value) Value { 90 other = other.unwrap() 91 switch other := other.(type) { 93 return other 95 return other 97 return arrayEquals(this, other) 99 return arrayEquals(this, other.sliceValue) 101 return arrayEquals(this, other [all...] |
H A D | float.go | 74 func (this floatValue) Equals(other Value) Value { 75 other = other.unwrap() 76 switch other := other.(type) { 78 return other 80 return other 82 if this == other { 86 if float64(this) == float64(other) { 94 func (this floatValue) EquivalentTo(other Valu [all...] |
H A D | string.go | 79 If other is type stringValue and is the same as the receiver 82 func (this stringValue) Equals(other Value) Value { 83 other = other.unwrap() 84 switch other := other.(type) { 86 return other 88 return other 90 if this == other { 98 func (this stringValue) EquivalentTo(other Valu [all...] |
H A D | null.go | 72 func (this *nullValue) Equals(other Value) Value { 73 other = other.unwrap() 74 switch other.Type() { 76 return other 82 func (this *nullValue) EquivalentTo(other Value) bool { 83 return other.Type() == NULL 87 Returns the relative position of null wrt other. 89 func (this *nullValue) Collate(other Value) int { 90 return int(NULL - other [all...] |
H A D | object.go | 166 func (this objectValue) Equals(other Value) Value { 167 other = other.unwrap() 168 switch other := other.(type) { 170 return other 172 return other 174 return objectEquals(this, other) 176 return objectEquals(this, other.objectValue) 182 func (this objectValue) EquivalentTo(other Valu [all...] |
/5.5.2/goproj/src/github.com/couchbase/indexing/secondary/common/ |
H A D | timestamp.go | 95 func (ts *TsVbuuid) CompareVbuuids(other *TsVbuuid) bool { 96 if ts == nil || other == nil { 99 if ts.Bucket != other.Bucket || ts.Len() != other.Len() { 103 if (vbuuid != other.Vbuuids[i]) || 104 (ts.Snapshots[i][0] != other.Snapshots[i][0]) || 105 (ts.Snapshots[i][1] != other.Snapshots[i][1]) { 122 // as that of `other`. 123 func (ts *TsVbuuid) CheckCrc64(other *TsVbuuid) bool { 124 if ts == nil || other [all...] |
H A D | mutation.go | 104 func (vbmap *VbConnectionMap) Equal(other *VbConnectionMap) bool { 105 if vbmap.Bucket != other.Bucket { 108 if len(vbmap.Vbuckets) != len(other.Vbuckets) || 109 len(vbmap.Vbuuids) != len(other.Vbuuids) { 113 if vbno != other.Vbuckets[i] || vbmap.Vbuuids[i] != other.Vbuuids[i] { 156 func (vb *VbKeyVersions) Equal(other *VbKeyVersions) bool { 157 if vb.Vbucket != other.Vbucket || 158 vb.Vbuuid != other.Vbuuid { 161 if len(vb.Kvs) != len(other [all...] |
/5.5.2/kv_engine/daemon/ |
H A D | settings.cc | 755 void Settings::updateSettings(const Settings& other, bool apply) { in updateSettings() argument 756 if (other.has.rbac_file) { in updateSettings() 757 if (other.rbac_file != rbac_file) { in updateSettings() 761 if (other.has.threads) { in updateSettings() 762 if (other.num_threads != num_threads) { in updateSettings() 767 if (other.has.audit) { in updateSettings() 768 if (other.audit_file != audit_file) { in updateSettings() 772 if (other.has.bio_drain_buffer_sz) { in updateSettings() 773 if (other.bio_drain_buffer_sz != bio_drain_buffer_sz) { in updateSettings() 778 if (other in updateSettings() [all...] |
H A D | buckets.cc | 20 Bucket::Bucket(const Bucket& other) in Bucket() argument 22 std::lock_guard<std::mutex> guard(other.mutex); in Bucket() 23 clients = other.clients; in Bucket() 24 state = other.state.load(); in Bucket() 25 type = other.type; in Bucket() 26 std::copy(std::begin(other.name), std::end(other.name), in Bucket() 28 engine_event_handlers = other.engine_event_handlers; in Bucket() 29 engine = other.engine; in Bucket() 30 stats = other in Bucket() [all...] |
H A D | stats.h | 74 thread_stats & operator += (const thread_stats &other) { in operator +=() 75 cmd_get += other.cmd_get; in operator +=() 76 get_misses += other.get_misses; in operator +=() 77 cmd_set += other.cmd_set; in operator +=() 78 get_hits += other.get_hits; in operator +=() 79 delete_hits += other.delete_hits; in operator +=() 80 cas_hits += other.cas_hits; in operator +=() 81 cas_badval += other.cas_badval; in operator +=() 82 delete_misses += other.delete_misses; in operator +=() 83 decr_misses += other in operator +=() [all...] |
/5.5.2/third_party/spdlog/include/spdlog/fmt/bundled/ |
H A D | posix.h | 124 BufferedFile &operator=(BufferedFile &other) { in operator =() argument 126 file_ = other.file_; in operator =() 127 other.file_ = FMT_NULL; in operator =() 144 BufferedFile(BufferedFile &&other) FMT_NOEXCEPT : file_(other.file_) { in file_() 145 other.file_ = FMT_NULL; in file_() 148 BufferedFile& operator=(BufferedFile &&other) { in operator =() argument 150 file_ = other.file_; in operator =() 151 other.file_ = FMT_NULL; in operator =() 218 File(File &other) FMT_NOEXCEP 230 operator =(File &other) operator =() argument 254 operator =(File &&other) operator =() argument [all...] |
/5.5.2/kv_engine/engines/ep/src/ |
H A D | stored-value.cc | 79 StoredValue::StoredValue(const StoredValue& other, UniquePtr n, EPStats& stats) in StoredValue() argument 80 : value(other.value), // Implicitly also copies the frequency counter in StoredValue() 82 cas(other.cas), in StoredValue() 83 bySeqno(other.bySeqno), in StoredValue() 84 lock_expiry_or_delete_time(other.lock_expiry_or_delete_time), in StoredValue() 85 exptime(other.exptime), in StoredValue() 86 flags(other.flags), in StoredValue() 87 revSeqno(other.revSeqno), in StoredValue() 88 datatype(other.datatype) { in StoredValue() 89 setDirty(other in StoredValue() [all...] |
H A D | blob.cc | 36 Blob* Blob::Copy(const Blob& other) { in Copy() argument 37 Blob* t = new (::operator new(Blob::getAllocationSize(other.valueSize()))) in Copy() 38 Blob(other); in Copy() 57 Blob::Blob(const Blob& other) in Blob() argument 58 : size(other.size.load()), in Blob() 61 std::memcpy(data, other.data, other.valueSize()); in Blob()
|
H A D | atomic.h | 164 RCPtr(const RCPtr<C> &other) : value(other.gimme()) {} in RCPtr() argument 179 void reset(const RCPtr<C> &other) { in reset() argument 180 swap(other.gimme()); in reset() 188 RCPtr<C> & operator =(const RCPtr<C> &other) { in operator =() argument 189 reset(other); in operator =() 271 SingleThreadedRCPtr(const rcptr_type& other) : value(other.gimme()) { in SingleThreadedRCPtr() argument 275 SingleThreadedRCPtr(rcptr_type&& other) : value(other argument 280 SingleThreadedRCPtr(const SingleThreadedRCPtr<Y, P, Deleter>& other) SingleThreadedRCPtr() argument 284 SingleThreadedRCPtr(std::unique_ptr<T>&& other) SingleThreadedRCPtr() argument 301 reset(const rcptr_type& other) reset() argument 306 swap(rcptr_type& other) swap() argument 319 operator =(const rcptr_type& other) operator =() argument 325 operator =(rcptr_type&& other) operator =() argument [all...] |
/5.5.2/couchbase-cli/requests/packages/urllib3/ |
H A D | _collections.py | 160 def __eq__(self, other): 161 if not isinstance(other, Mapping) and not hasattr(other, 'keys'): 163 if not isinstance(other, type(self)): 164 other = type(self)(other) 166 dict((k.lower(), v) for k, v in other.itermerged())) 168 def __ne__(self, other): 169 return not self.__eq__(other) 239 other [all...] |
/5.5.2/kv_engine/logger/ |
H A D | logger.cc | 74 bool Config::operator==(const Config& other) const { in operator ==() 75 return (this->filename == other.filename) && in operator ==() 76 (this->buffersize == other.buffersize) && in operator ==() 77 (this->cyclesize == other.cyclesize) && in operator ==() 78 (this->unit_test == other.unit_test) && in operator ==() 79 (this->console == other.console); in operator ==() 82 bool Config::operator!=(const Config& other) const { in operator !=() 83 return !(*this == other); in operator !=()
|
/5.5.2/godeps/src/github.com/blevesearch/bleve/search/ |
H A D | facets_builder.go | 145 func (nrf *NumericRangeFacet) Same(other *NumericRangeFacet) bool { 146 if nrf.Min == nil && other.Min != nil { 149 if nrf.Min != nil && other.Min == nil { 152 if nrf.Min != nil && other.Min != nil && *nrf.Min != *other.Min { 155 if nrf.Max == nil && other.Max != nil { 158 if nrf.Max != nil && other.Max == nil { 161 if nrf.Max != nil && other.Max != nil && *nrf.Max != *other.Max { 198 func (drf *DateRangeFacet) Same(other *DateRangeFace [all...] |
/5.5.2/couchbase-cli/requests/packages/urllib3/packages/ |
H A D | ordered_dict.py | 157 # Make progressively weaker assumptions about "other" 158 other = () 160 other = args[1] 161 if isinstance(other, dict): 162 for key in other: 163 self[key] = other[key] 164 elif hasattr(other, 'keys'): 165 for key in other.keys(): 166 self[key] = other[key] 168 for key, value in other [all...] |
/5.5.2/goproj/src/github.com/couchbase/query/plan/ |
H A D | span2.go | 44 func (this *Range2) EquivalentTo(other *Range2) bool { 45 return this == other || (this.Inclusion == other.Inclusion && 46 expression.Equivalent(this.Low, other.Low) && 47 expression.Equivalent(this.High, other.High)) 118 func (this Ranges2) EquivalentTo(other Ranges2) bool { 120 if len(this) != len(other) { 125 if this[i] == other[i] { 129 if this[i] == nil || other[i] == nil { 133 if !this[i].EquivalentTo(other[ [all...] |
/5.5.2/third_party/gsl-lite/include/gsl/ |
H A D | gsl-lite-vc6.h | 273 not_null( not_null const & other ) : ptr_ ( other.ptr_ ) {} 274 not_null & operator=( not_null const & other ) { ptr_ = other.ptr_; } 277 // template< typename U > not_null( not_null<U> const & other ); 278 // template< typename U > not_null & operator=( not_null<U> const & other ) ; 385 span( span const & other ) 386 : begin_( other.begin() ) 387 , end_ ( other.end() ) 391 span & operator=( span const & other ) in operator =() [all...] |
/5.5.2/phosphor/src/ |
H A D | trace_context.cc | 41 TraceContext::TraceContext(TraceContext&& other) in TraceContext() argument 42 : trace_buffer(std::move(other.trace_buffer)), in TraceContext() 43 thread_names(std::move(other.thread_names)) { in TraceContext() 46 TraceContext& TraceContext::operator=(TraceContext&& other) { in operator =() argument 47 trace_buffer = std::move(other.trace_buffer); in operator =() 48 thread_names = std::move(other.thread_names); in operator =()
|
/5.5.2/third_party/spdlog/include/spdlog/details/ |
H A D | async_log_helper.h | 60 async_msg(async_msg&& other) SPDLOG_NOEXCEPT: 61 logger_name(std::move(other.logger_name)), 62 level(std::move(other.level)), 63 time(std::move(other.time)), 64 thread_id(other.thread_id), 65 txt(std::move(other.txt)), 66 msg_type(std::move(other.msg_type)), 67 msg_id(other.msg_id) in msg_id() 77 async_msg& operator=(async_msg&& other) SPDLOG_NOEXCEPT 79 logger_name = std::move(other 91 async_msg& operator=(const async_msg& other) = delete; global() member [all...] |