/external/eigen/Eigen/src/SparseCore/ |
H A D | SparseCwiseUnaryOp.h | 143 SparseMatrixBase<Derived>::operator*=(const Scalar& other) argument 147 i.valueRef() *= other; 153 SparseMatrixBase<Derived>::operator/=(const Scalar& other) argument 157 i.valueRef() /= other;
|
H A D | TriangularSolver.h | 31 static void run(const Lhs& lhs, Rhs& other) argument 33 for(int col=0 ; col<other.cols() ; ++col) 37 Scalar tmp = other.coeff(i,col); 46 tmp -= lastVal * other.coeff(lastIndex,col); 49 other.coeffRef(i,col) = tmp; 53 other.coeffRef(i,col) = tmp/lastVal; 65 static void run(const Lhs& lhs, Rhs& other) argument 67 for(int col=0 ; col<other.cols() ; ++col) 71 Scalar tmp = other.coeff(i,col); 86 tmp -= it.value() * other 103 run(const Lhs& lhs, Rhs& other) argument 135 run(const Lhs& lhs, Rhs& other) argument 213 run(const Lhs& lhs, Rhs& other) argument [all...] |
/external/eigen/Eigen/src/StlSupport/ |
H A D | details.h | 36 typedef aligned_allocator_indirection<U> other; typedef in struct:Eigen::aligned_allocator_indirection::rebind 65 inline workaround_msvc_stl_support(const T& other) : T(other) {} argument 69 inline T& operator=(const OtherT& other) argument 70 { T::operator=(other); return *this; } 71 inline workaround_msvc_stl_support& operator=(const workaround_msvc_stl_support& other) argument 72 { T::operator=(other); return *this; }
|
/external/fio/lib/ |
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/glide/library/src/main/java/com/bumptech/glide/ |
H A D | GenericTranscodeRequest.java | 46 Class<ResourceType> transcodeClass, GenericRequestBuilder<ModelType, ?, ?, ?> other, 49 super(build(other.glide, modelLoader, dataClass, resourceClass, UnitTranscoder.<ResourceType>get()), 50 transcodeClass, other); 45 GenericTranscodeRequest( Class<ResourceType> transcodeClass, GenericRequestBuilder<ModelType, ?, ?, ?> other, ModelLoader<ModelType, DataType> modelLoader, Class<DataType> dataClass, Class<ResourceType> resourceClass, RequestManager.OptionsApplier optionsApplier) argument
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
H A D | cpu_set.h | 12 // in the documentation and/or other materials provided with the 113 void IntersectWith(const CpuSet& other) { argument 115 mask_[nn] &= other.mask_[nn];
|
/external/guava/guava/src/com/google/common/cache/ |
H A D | CacheStats.java | 134 * attempts, and requests which waited for other threads to finish loading. It is thus the case 216 * and {@code other}. Negative values, which aren't supported by {@code CacheStats} will be 219 public CacheStats minus(CacheStats other) { argument 221 Math.max(0, hitCount - other.hitCount), 222 Math.max(0, missCount - other.missCount), 223 Math.max(0, loadSuccessCount - other.loadSuccessCount), 224 Math.max(0, loadExceptionCount - other.loadExceptionCount), 225 Math.max(0, totalLoadTime - other.totalLoadTime), 226 Math.max(0, evictionCount - other.evictionCount)); 231 * and {@code other} 235 plus(CacheStats other) argument [all...] |
/external/guava/guava/src/com/google/common/collect/ |
H A D | ContiguousSet.java | 140 * Returns the set of values that are contained in both this set and the other. 145 public abstract ContiguousSet<C> intersection(ContiguousSet<C> other); argument
|
H A D | Interners.java | 127 @Override public boolean equals(Object other) { argument 128 if (other instanceof InternerFunction) { 129 InternerFunction<?> that = (InternerFunction<?>) other;
|
/external/guava/guava/src/com/google/common/net/ |
H A D | HostAndPort.java | 277 public boolean equals(@Nullable Object other) { argument 278 if (this == other) { 281 if (other instanceof HostAndPort) { 282 HostAndPort that = (HostAndPort) other;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | ContiguousSet.java | 109 * Returns the set of values that are contained in both this set and the other. 114 public abstract ContiguousSet<C> intersection(ContiguousSet<C> other); argument
|
H A D | ForwardingImmutableList.java | 87 @Override public <T> T[] toArray(T[] other) { argument 88 return delegateList().toArray(other);
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
H A D | SerializableTesterTest.java | 89 public boolean equals(Object other) { argument 90 return (other instanceof ClassWhichIsAlwaysEqualButHasDifferentHashcodes); 99 public boolean equals(Object other) { argument 100 return (other instanceof ObjectWhichIsEqualButChangesClass 101 || other instanceof OtherForm); 115 public boolean equals(Object other) { argument 116 return (other instanceof ObjectWhichIsEqualButChangesClass 117 || other instanceof OtherForm);
|
/external/icu/icu4c/source/common/ |
H A D | rbbinode.cpp | 74 RBBINode::RBBINode(const RBBINode &other) : UMemory(other) { argument 78 fType = other.fType; 82 fInputSet = other.fInputSet; 83 fPrecedence = other.fPrecedence; 84 fText = other.fText; 85 fFirstPos = other.fFirstPos; 86 fLastPos = other.fLastPos; 87 fNullable = other.fNullable; 88 fVal = other [all...] |
H A D | uvector.h | 104 * Assign this object to another (make this a copy of 'other'). 107 void assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec); 114 UBool operator==(const UVector& other); 119 inline UBool operator!=(const UVector& other); 141 UBool equals(const UVector &other) const; 157 UBool containsAll(const UVector& other) const; 159 UBool removeAll(const UVector& other); 161 UBool retainAll(const UVector& other); 212 * @param other vector to be checked for containment 215 UBool containsNone(const UVector& other) cons 383 operator !=(const UVector& other) argument [all...] |
H A D | uvectr64.cpp | 69 * Assign this object to another (make this a copy of 'other'). 71 void UVector64::assign(const UVector64& other, UErrorCode &ec) { argument 72 if (ensureCapacity(other.count, ec)) { 73 setSize(other.count); 74 for (int32_t i=0; i<other.count; ++i) { 75 elements[i] = other.elements[i]; 81 UBool UVector64::operator==(const UVector64& other) { argument 83 if (count != other.count) return FALSE; 85 if (elements[i] != other.elements[i]) {
|
H A D | uvectr64.h | 76 * Assign this object to another (make this a copy of 'other'). 79 void assign(const UVector64& other, UErrorCode &ec); 86 UBool operator==(const UVector64& other); 91 inline UBool operator!=(const UVector64& other); 105 //UBool equals(const UVector64 &other) const; 113 //UBool containsAll(const UVector64& other) const; 115 //UBool removeAll(const UVector64& other); 117 //UBool retainAll(const UVector64& other); 145 //UBool containsNone(const UVector64& other) const; 250 inline UBool UVector64::operator!=(const UVector64& other) { argument [all...] |
/external/icu/icu4c/source/common/unicode/ |
H A D | enumset.h | 34 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {} argument 45 inline const EnumSet<T,minValue,limitValue>& operator=(const EnumSet<T,minValue,limitValue>& other) { argument 46 fBools = other.fBools;
|
/external/icu/icu4c/source/i18n/ |
H A D | cecal.cpp | 55 CECalendar::CECalendar (const CECalendar& other) argument 56 : Calendar(other)
|
H A D | coptccal.cpp | 32 CopticCalendar::CopticCalendar (const CopticCalendar& other) argument 33 : CECalendar(other)
|
H A D | dangical.cpp | 57 DangiCalendar::DangiCalendar (const DangiCalendar& other) argument 58 : ChineseCalendar(other)
|
H A D | funcrepl.cpp | 41 FunctionReplacer::FunctionReplacer(const FunctionReplacer& other) : argument 42 UnicodeFunctor(other), 43 UnicodeReplacer(other) 45 translit = other.translit->clone(); 46 replacer = other.replacer->clone();
|
H A D | rbt.cpp | 164 const RuleBasedTransliterator& other) : 165 Transliterator(other), fData(other.fData), 166 isDataOwned(other.isDataOwned) { 178 fData = new TransliterationRuleData(*other.fData); 248 // some other transliteration that is still in progress and holding the 163 RuleBasedTransliterator( const RuleBasedTransliterator& other) argument
|
H A D | utf16collationiterator.cpp | 28 UTF16CollationIterator::UTF16CollationIterator(const UTF16CollationIterator &other, argument 30 : CollationIterator(other), 32 pos(newText + (other.pos - other.start)), 33 limit(other.limit == NULL ? NULL : newText + (other.limit - other.start)) { 39 UTF16CollationIterator::operator==(const CollationIterator &other) const { 40 if(!CollationIterator::operator==(other)) { return FALSE; } 41 const UTF16CollationIterator &o = static_cast<const UTF16CollationIterator &>(other); 149 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText) argument [all...] |
H A D | utf16collationiterator.h | 39 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText); 43 virtual UBool operator==(const CollationIterator &other) const; 61 UTF16CollationIterator(const UTF16CollationIterator &other) argument 62 : CollationIterator(other), 92 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText); 96 virtual UBool operator==(const CollationIterator &other) const;
|