HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 1101 - 1125 of 9808) sorted by null

<<41424344454647484950>>

  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 59 template<typename Other>
60 EIGEN_STRONG_INLINE void copyCoeff(Index row, Index col, Other& other)
62 derived().coeffRef(row, col) = other.coeff(row, col);
82 void evalTo(MatrixBase<DenseDerived> &other) const;
84 void evalToLazy(MatrixBase<DenseDerived> &other) const;
201 template<typename Other> TriangularView& operator+=(const DenseBase<Other>& other) { return *this = m_matrix + other.derived();
    [all...]
PlainObjectBase.h 227 * the current values are left unchanged. In all other cases, including
257 * partially dynamic matrices when the static dimension is anything other
307 /** Resizes \c *this to have the same dimensions as \a other.
317 const OtherDerived& other = _other.derived(); local
318 internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(other.rows(), other.cols());
319 const Index othersize = other.rows()*other.cols();
322 eigen_assert(other.rows() == 1 || other.cols() == 1)
    [all...]
  /external/v8/src/
property-details.h 119 bool Equals(const Representation& other) const {
120 return kind_ == other.kind_;
123 bool IsCompatibleForLoad(const Representation& other) const {
124 return (IsDouble() && other.IsDouble()) ||
125 (!IsDouble() && !other.IsDouble());
128 bool IsCompatibleForStore(const Representation& other) const {
129 return Equals(other);
132 bool is_more_general_than(const Representation& other) const {
133 if (kind_ == kExternal && other.kind_ == kNone) return true;
134 if (kind_ == kExternal && other.kind_ == kExternal) return false
    [all...]
  /external/deqp/executor/
xeTestCase.hpp 79 TestNode (const TestNode& other);
80 TestNode& operator= (const TestNode& other);
146 TestHierarchyBuilder (const TestHierarchyBuilder& other);
147 TestHierarchyBuilder& operator= (const TestHierarchyBuilder& other);
187 bool operator!= (const ConstTestNodeIterator& other) const;
200 bool operator!= (const GroupState& other) const
202 return group != other.group || childNdx != other.childNdx;
205 bool operator== (const GroupState& other) const
207 return group == other.group && childNdx == other.childNdx
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 54 ShadowIntent other = shadowOf(intent); local
55 extras.putAll(other.extras);
56 action = other.action;
57 componentName = other.componentName;
58 type = other.type;
59 data = other.data;
60 flags = other.flags;
61 intentClass = other.intentClass;
62 packageName = other.packageName;
63 categories.addAll(other.categories)
429 ShadowIntent other = shadowOf(otherIntent); local
    [all...]
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 43 const RawString* other = valueCast<RawString>(value); local
44 if (!other) {
47 return *this->value == *other->value;
78 const Reference* other = valueCast<Reference>(value); local
79 if (!other) {
82 return referenceType == other->referenceType && privateReference == other->privateReference &&
83 id == other->id && name == other->name;
139 const String* other = valueCast<String>(value) local
172 const StyledString* other = valueCast<StyledString>(value); local
216 const FileReference* other = valueCast<FileReference>(value); local
254 const BinaryPrimitive* other = valueCast<BinaryPrimitive>(value); local
306 const Attribute* other = valueCast<Attribute>(value); local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLRSAPrivateCrtKey.java 209 OpenSSLRSAPrivateKey other = (OpenSSLRSAPrivateKey) o; local
210 return getOpenSSLKey().equals(other.getOpenSSLKey());
215 RSAPrivateCrtKey other = (RSAPrivateCrtKey) o; local
218 return getModulus().equals(other.getModulus())
219 && publicExponent.equals(other.getPublicExponent());
221 return getModulus().equals(other.getModulus())
222 && publicExponent.equals(other.getPublicExponent())
223 && getPrivateExponent().equals(other.getPrivateExponent())
224 && primeP.equals(other.getPrimeP()) && primeQ.equals(other.getPrimeQ()
231 RSAPrivateKey other = (RSAPrivateKey) o; local
    [all...]
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 18 * \returns the cross product of \c *this and \a other
26 MatrixBase<Derived>::cross(const MatrixBase<OtherDerived>& other) const
34 typename internal::nested<OtherDerived,2>::type rhs(other.derived());
64 * \returns the cross product of \c *this and \a other using only the x, y, and z coefficients
66 * The size of \c *this and \a other must be four. This function is especially useful
74 MatrixBase<Derived>::cross3(const MatrixBase<OtherDerived>& other) const
82 OtherDerivedNested rhs(other.derived());
90 * of the referenced expression with the \a other vector.
101 VectorwiseOp<ExpressionType,Direction>::cross(const MatrixBase<OtherDerived>& other) const
111 res.row(0) = (_expression().row(1) * other.coeff(2) - _expression().row(2) * other.coeff(1)).conjugate()
    [all...]
  /external/icu/icu4c/source/common/
unifiedcache.h 40 CacheKeyBase(const CacheKeyBase &other)
41 : UObject(other), fCreationStatus(other.fCreationStatus), fIsMaster(FALSE) { }
57 virtual UBool operator == (const CacheKeyBase &other) const = 0;
84 UBool operator != (const CacheKeyBase &other) const {
85 return !(*this == other);
124 virtual UBool operator == (const CacheKeyBase &other) const {
125 return typeid(*this) == typeid(other);
139 LocaleCacheKey(const LocaleCacheKey<T> &other)
140 : CacheKey<T>(other), fLoc(other.fLoc) {
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
stack_allocator.h 37 State(const State& other)
38 : m_beg(other.m_beg), m_end(other.m_end), m_cur(0),
39 m_isOk(true), m_swaped(other.m_swaped), m_nbAlloc(0),
40 m_sharedCur(other.m_sharedCur), m_sharedOk(other.m_sharedOk),
41 m_sharedNbAlloc(other.m_sharedNbAlloc) {}
74 StackAllocator(StackAllocator<_OtherTp> const& other)
75 : m_state(other.getState()) {}
84 typedef StackAllocator<_Other> other; typedef in struct:StackAllocator::rebind
    [all...]
  /ndk/tests/device/test-stlport/unit/
stack_allocator.h 37 State(const State& other)
38 : m_beg(other.m_beg), m_end(other.m_end), m_cur(0),
39 m_isOk(true), m_swaped(other.m_swaped), m_nbAlloc(0),
40 m_sharedCur(other.m_sharedCur), m_sharedOk(other.m_sharedOk),
41 m_sharedNbAlloc(other.m_sharedNbAlloc) {}
74 StackAllocator(StackAllocator<_OtherTp> const& other)
75 : m_state(other.getState()) {}
84 typedef StackAllocator<_Other> other; typedef in struct:StackAllocator::rebind
    [all...]
  /external/v8/src/compiler/
node.h 39 // compilation, e.g. during lowering passes. Other information that needs to be
360 bool operator==(const Edge& other) { return input_ptr_ == other.input_ptr_; }
361 bool operator!=(const Edge& other) { return !(*this == other); }
397 iterator(const iterator& other)
398 : use_(other.use_), input_ptr_(other.input_ptr_) {}
401 bool operator==(const iterator& other) const {
402 return input_ptr_ == other.input_ptr_
    [all...]
  /external/clang/test/SemaCXX/
compare.cpp 302 void test7(unsigned long other) {
303 // Common unsigned, other unsigned, constant unsigned
304 (void)((unsigned)other != (unsigned long)(0x1ffffffff)); // expected-warning{{true}}
305 (void)((unsigned)other != (unsigned long)(0xffffffff));
306 (void)((unsigned long)other != (unsigned)(0x1ffffffff));
307 (void)((unsigned long)other != (unsigned)(0xffffffff));
309 // Common unsigned, other signed, constant unsigned
310 (void)((int)other != (unsigned long)(0xffffffffffffffff)); // expected-warning{{different signs}}
311 (void)((int)other != (unsigned long)(0x00000000ffffffff)); // expected-warning{{true}}
312 (void)((int)other != (unsigned long)(0x000000000fffffff))
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 18 template< typename Other,
21 int OtherRows=Other::RowsAtCompileTime,
22 int OtherCols=Other::ColsAtCompileTime>
81 inline Transform(const Transform& other)
83 m_matrix = other.m_matrix;
91 inline Transform& operator=(const Transform& other)
92 { m_matrix = other.m_matrix; return *this; }
97 static inline void run(Transform *transform, const MatrixBase<OtherDerived>& other)
99 transform->matrix() = other;
105 static inline void run(Transform *transform, const MatrixBase<OtherDerived>& other)
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
Channel.java 271 Channel other = (Channel) o; local
273 return mId == other.mId && TextUtils.equals(mInputId, other.mInputId)
274 && mIsPassthrough == other.mIsPassthrough;
299 * Check whether {@code other} has same read-only channel info as this. But, it cannot check two
303 public boolean hasSameReadOnlyInfo(Channel other) {
304 return other != null
305 && Objects.equals(mId, other.mId)
306 && Objects.equals(mPackageName, other.mPackageName)
307 && Objects.equals(mInputId, other.mInputId
    [all...]
  /external/jsoncpp/include/json/
value.h 172 CZString(const CZString& other);
174 CZString& operator=(CZString other);
175 bool operator<(const CZString& other) const;
176 bool operator==(const CZString& other) const;
182 void swap(CZString& other);
224 * Like other value string constructor but do not duplicate the string for
238 Value(const Value& other);
241 Value& operator=(Value other);
245 void swap(Value& other);
249 bool operator<(const Value& other) const
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_richcmp.py 13 def __lt__(self, other):
14 return self.x < other
16 def __le__(self, other):
17 return self.x <= other
19 def __eq__(self, other):
20 return self.x == other
22 def __ne__(self, other):
23 return self.x != other
25 def __gt__(self, other):
26 return self.x > other
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_richcmp.py 13 def __lt__(self, other):
14 return self.x < other
16 def __le__(self, other):
17 return self.x <= other
19 def __eq__(self, other):
20 return self.x == other
22 def __ne__(self, other):
23 return self.x != other
25 def __gt__(self, other):
26 return self.x > other
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 13 def __lt__(self, other):
14 return self.x < other
16 def __le__(self, other):
17 return self.x <= other
19 def __eq__(self, other):
20 return self.x == other
22 def __ne__(self, other):
23 return self.x != other
25 def __gt__(self, other):
26 return self.x > other
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 13 def __lt__(self, other):
14 return self.x < other
16 def __le__(self, other):
17 return self.x <= other
19 def __eq__(self, other):
20 return self.x == other
22 def __ne__(self, other):
23 return self.x != other
25 def __gt__(self, other):
26 return self.x > other
    [all...]
  /art/compiler/utils/arm64/
managed_register_arm64.cc 35 // Returns true if this managed-register overlaps the other managed-register.
43 bool Arm64ManagedRegister::Overlaps(const Arm64ManagedRegister& other) const {
44 if (IsNoRegister() || other.IsNoRegister()) return false;
45 return (IsGPRegister() == other.IsGPRegister()) && (RegNo() == other.RegNo());
  /art/runtime/base/
bit_vector-inl.h 26 inline bool BitVector::IndexIterator::operator==(const IndexIterator& other) const {
27 DCHECK(bit_storage_ == other.bit_storage_);
28 DCHECK_EQ(storage_size_, other.storage_size_);
29 return bit_index_ == other.bit_index_;
  /art/runtime/
dex_cache_resolved_classes.h 37 int Compare(const DexCacheResolvedClasses& other) const {
38 if (location_checksum_ != other.location_checksum_) {
39 return static_cast<int>(location_checksum_ - other.location_checksum_);
42 return dex_location_.compare(other.dex_location_);
  /art/test/075-verification-error/src/other/
Mutant.java 17 package other; package
  /art/tools/checker/file_format/checker/
struct.py 32 def __eq__(self, other):
33 return isinstance(other, self.__class__) \
34 and self.testCases == other.testCases
68 def __eq__(self, other):
69 return isinstance(other, self.__class__) \
70 and self.name == other.name \
71 and self.assertions == other.assertions
112 def __eq__(self, other):
113 return isinstance(other, self.__class__) \
114 and self.variant == other.variant
    [all...]

Completed in 843 milliseconds

<<41424344454647484950>>