/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
H A D | Interval.java | 13 * documentation and/or other materials provided with the distribution. 68 Interval other = (Interval)o; 69 return this.a==other.a && this.b==other.b; 72 /** Does this start completely before other? Disjoint */ 73 public boolean startsBeforeDisjoint(Interval other) { argument 74 return this.a<other.a && this.b<other.a; 77 /** Does this start at or before other? Nondisjoint */ 78 public boolean startsBeforeNonDisjoint(Interval other) { argument 83 startsAfter(Interval other) argument 86 startsAfterDisjoint(Interval other) argument 91 startsAfterNonDisjoint(Interval other) argument 96 disjoint(Interval other) argument 101 adjacent(Interval other) argument 105 properlyContains(Interval other) argument 110 union(Interval other) argument 115 intersection(Interval other) argument 124 differenceNotProperlyContained(Interval other) argument [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
H A D | SparseFieldMatrix.java | 77 * @param other The instance to copy 79 public SparseFieldMatrix(SparseFieldMatrix<T> other) { argument 80 super(other.getField(), other.getRowDimension(), other.getColumnDimension()); 81 rows = other.getRowDimension(); 82 columns = other.getColumnDimension(); 83 entries = new OpenIntToFieldHashMap<T>(other.entries); 88 * @param other The instance to copy 90 public SparseFieldMatrix(FieldMatrix<T> other){ argument [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/ |
H A D | LinearConstraint.java | 189 public boolean equals(Object other) { argument 191 if (this == other) { 195 if (other instanceof LinearConstraint) { 196 LinearConstraint rhs = (LinearConstraint) other;
|
H A D | LinearObjectiveFunction.java | 106 public boolean equals(Object other) { argument 108 if (this == other) { 112 if (other instanceof LinearObjectiveFunction) { 113 LinearObjectiveFunction rhs = (LinearObjectiveFunction) other;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
H A D | TransformerMap.java | 157 public boolean equals(Object other) { argument 158 if (this == other) { 161 if (other instanceof TransformerMap) { 162 TransformerMap rhs = (TransformerMap) other;
|
/external/blktrace/ |
H A D | rbtree.c | 139 struct rb_node *other; local 145 other = parent->rb_right; 146 if (rb_is_red(other)) 148 rb_set_black(other); 151 other = parent->rb_right; 153 if ((!other->rb_left || rb_is_black(other->rb_left)) && 154 (!other->rb_right || rb_is_black(other->rb_right))) 156 rb_set_red(other); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
H A D | Extensions.java | 158 Extensions other) 160 if (extensions.size() != other.extensions.size()) 171 if (!extensions.get(key).equals(other.extensions.get(key))) 157 equivalent( Extensions other) argument
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
H A D | SecP192K1FieldElement.java | 193 public boolean equals(Object other) argument 195 if (other == this) 200 if (!(other instanceof SecP192K1FieldElement)) 205 SecP192K1FieldElement o = (SecP192K1FieldElement)other;
|
H A D | SecP192R1FieldElement.java | 170 public boolean equals(Object other) argument 172 if (other == this) 177 if (!(other instanceof SecP192R1FieldElement)) 182 SecP192R1FieldElement o = (SecP192R1FieldElement)other;
|
H A D | SecP256K1FieldElement.java | 195 public boolean equals(Object other) argument 197 if (other == this) 202 if (!(other instanceof SecP256K1FieldElement)) 207 SecP256K1FieldElement o = (SecP256K1FieldElement)other;
|
H A D | SecP256R1FieldElement.java | 169 public boolean equals(Object other) argument 171 if (other == this) 176 if (!(other instanceof SecP256R1FieldElement)) 181 SecP256R1FieldElement o = (SecP256R1FieldElement)other;
|
H A D | SecP384R1FieldElement.java | 191 public boolean equals(Object other) argument 193 if (other == this) 198 if (!(other instanceof SecP384R1FieldElement)) 203 SecP384R1FieldElement o = (SecP384R1FieldElement)other;
|
H A D | SecP521R1FieldElement.java | 149 public boolean equals(Object other) argument 151 if (other == this) 156 if (!(other instanceof SecP521R1FieldElement)) 161 SecP521R1FieldElement o = (SecP521R1FieldElement)other;
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
H A D | example-function.cpp | 32 function(const function& other) : invoker(0) { argument 33 if (other.invoker) 34 invoker = other.invoker->clone(); 46 function& operator=(const function& other) { argument 47 function(other).swap(*this); 57 void swap(function& other) { argument 59 invoker = other.invoker; 60 other.invoker = tmp;
|
/external/clang/test/CodeGenCXX/ |
H A D | empty-classes.cpp | 17 C(const C& other) : A(0x12345678), Empty(other) { } argument 21 D& operator=(const D& other) { argument 23 Empty::operator=(other);
|
H A D | lpad-linetable.cpp | 19 { typedef allocator<_Tp1> other; }; typedef in struct:std::allocator::rebind 25 typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type;
|
H A D | thunk-use-after-free.cpp | 9 typedef new_allocator other; typedef in struct:new_allocator::rebind 15 typedef typename _Alloc::template rebind < _Tp >::other _Tp_alloc_type;
|
/external/clang/test/SemaCXX/ |
H A D | rval-references-examples.cpp | 11 unique_ptr(unique_ptr &&other) : ptr(other.ptr) { other.ptr = 0; } argument 16 unique_ptr &operator=(unique_ptr &&other) { // expected-note{{candidate function not viable: no known conversion from 'unique_ptr<int>' to 'unique_ptr<int> &&' for 1st argument}} argument 17 if (this == &other) 21 ptr = other.ptr; 22 other.ptr = 0;
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_flags.cc | 44 void CommonFlags::CopyFrom(const CommonFlags &other) { argument 45 internal_memcpy(this, &other, sizeof(*this));
|
/external/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_mutexset.h | 41 void operator=(const MutexSet &other) { argument 42 internal_memcpy(this, &other, sizeof(*this));
|
/external/deqp/framework/common/ |
H A D | tcuEither.hpp | 47 Either (const Either<First, Second>& other); 48 Either& operator= (const Either<First, Second>& other); 175 Either<First, Second>::Either (const Either<First, Second>& other) argument 176 : m_isFirst (other.m_isFirst) 179 m_first = new(m_data)First(*other.m_first); 181 m_second = new(m_data)Second(*other.m_second); 185 Either<First, Second>& Either<First, Second>::operator= (const Either<First, Second>& other) argument 187 if (this == &other) 192 m_isFirst = other.m_isFirst; 195 m_first = new(m_data)First(*other [all...] |
H A D | tcuMaybe.hpp | 43 Maybe (const Maybe<T>& other); 44 Maybe<T>& operator= (const Maybe<T>& other); 106 Maybe<T>::Maybe (const Maybe<T>& other) argument 109 if (other.m_ptr) 110 m_ptr = new(m_data)T(*other.m_ptr); 114 Maybe<T>& Maybe<T>::operator= (const Maybe<T>& other) argument 116 if (this == &other) 122 if (other.m_ptr) 123 m_ptr = new(m_data)T(*other.m_ptr);
|
H A D | tcuResource.hpp | 100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {} argument 101 DirArchive& operator= (const DirArchive& other) { m_path = other.m_path; return *this; } argument 120 FileResource (const FileResource& other); 121 FileResource& operator= (const FileResource& other);
|
/external/deqp/framework/delibs/decpp/ |
H A D | deArrayBuffer.hpp | 53 ArrayBuffer (const ArrayBuffer& other); 55 ArrayBuffer& operator= (const ArrayBuffer& other); 59 void swap (ArrayBuffer& other) throw(); 100 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (const ArrayBuffer<T,Alignment,Stride>& other) argument 104 if (other.m_cap) 108 const size_t storageSize = (other.m_cap - 1) * Stride + sizeof(T); 109 ArrayBuffer tmp (other.m_cap); 111 deMemcpy(tmp.m_ptr, other.m_ptr, (int)storageSize); 123 ArrayBuffer<T,Alignment,Stride>& ArrayBuffer<T,Alignment,Stride>::operator= (const ArrayBuffer& other) argument 125 ArrayBuffer copied(other); 148 swap(ArrayBuffer& other) argument [all...] |
/external/deqp/framework/egl/ |
H A D | egluConfigFilter.cpp | 78 FilterList& FilterList::operator<< (const FilterList& other) argument 81 m_rules.resize(m_rules.size()+other.m_rules.size()); 82 std::copy(other.m_rules.begin(), other.m_rules.end(), m_rules.begin()+oldEnd);
|