/frameworks/base/core/java/android/hardware/camera2/params/ |
MeteringRectangle.java | 224 public boolean equals(final Object other) { 225 return other instanceof MeteringRectangle && equals((MeteringRectangle)other); 234 * @param other Another MeteringRectangle 238 public boolean equals(final MeteringRectangle other) { 239 if (other == null) { 243 return (mX == other.mX 244 && mY == other.mY 245 && mWidth == other.mWidth 246 && mHeight == other.mHeigh [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/ |
movi32-2.d | 20 [ ]+10:[ ]+R_SH_IMM_MEDLOW16 \.text\.other\+0x35 22 [ ]+14:[ ]+R_SH_IMM_LOW16 \.text\.other\+0x35 26 [ ]+18:[ ]+R_SH_IMM_MEDLOW16 \.data\.other\+0x38 28 [ ]+1c:[ ]+R_SH_IMM_LOW16 \.data\.other\+0x38 29 Disassembly of section \.text\.other:
|
/external/icu/icu4c/source/common/ |
uvectr32.cpp | 72 * Assign this object to another (make this a copy of 'other'). 74 void UVector32::assign(const UVector32& other, UErrorCode &ec) { 75 if (ensureCapacity(other.count, ec)) { 76 setSize(other.count); 77 for (int32_t i=0; i<other.count; ++i) { 78 elements[i] = other.elements[i]; 84 UBool UVector32::operator==(const UVector32& other) { 86 if (count != other.count) return FALSE; 88 if (elements[i] != other.elements[i]) { 115 UBool UVector32::containsAll(const UVector32& other) const [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseMatrixBase.h | 42 Derived& operator=(const EigenBase<OtherDerived> &other) 44 other.derived().evalTo(derived()); 160 * In other words, this function returns 178 Derived& operator=(const ReturnByValue<OtherDerived>& other) 180 other.evalTo(derived()); 186 inline Derived& operator=(const SparseMatrixBase<OtherDerived>& other) 188 return assign(other.derived()); 191 inline Derived& operator=(const Derived& other) 193 // if (other.isRValue()) 194 // derived().swap(other.const_cast_derived()) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
SparseFieldMatrix.java | 77 * @param other The instance to copy 79 public SparseFieldMatrix(SparseFieldMatrix<T> other) { 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){ [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
Cwise.h | 66 operator*(const MatrixBase<OtherDerived> &other) const; 70 operator/(const MatrixBase<OtherDerived> &other) const; 75 (min)(const MatrixBase<OtherDerived> &other) const 76 { return EIGEN_CWISE_BINOP_RETURN_TYPE(internal::scalar_min_op)(_expression(), other.derived()); } 81 (max)(const MatrixBase<OtherDerived> &other) const 82 { return EIGEN_CWISE_BINOP_RETURN_TYPE(internal::scalar_max_op)(_expression(), other.derived()); } 112 inline ExpressionType& operator*=(const MatrixBase<OtherDerived> &other); 115 inline ExpressionType& operator/=(const MatrixBase<OtherDerived> &other); 118 operator<(const MatrixBase<OtherDerived>& other) const; 121 operator<=(const MatrixBase<OtherDerived>& other) const [all...] |
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
AngleAxis.h | 34 * but rather to make easier the creation of other rotation (Quaternion, rotation Matrix) 87 inline QuaternionType operator* (const AngleAxis& other) const 88 { return QuaternionType(*this) * QuaternionType(other); } 91 inline QuaternionType operator* (const QuaternionType& other) const 92 { return QuaternionType(*this) * other; } 99 inline Matrix3 operator* (const Matrix3& other) const 100 { return toRotationMatrix() * other; } 107 inline Vector3 operator* (const Vector3& other) const 108 { return toRotationMatrix() * other; } 133 inline explicit AngleAxis(const AngleAxis<OtherScalarType>& other) [all...] |
Scaling.h | 78 inline Scaling operator* (const Scaling& other) const 79 { return Scaling(coeffs().cwise() * other.coeffs()); } 89 inline LinearMatrixType operator* (const LinearMatrixType& other) const 90 { return coeffs().asDiagonal() * other; } 94 friend inline LinearMatrixType operator* (const LinearMatrixType& other, const Scaling& s) 95 { return other * s.coeffs().asDiagonal(); } 102 inline VectorType operator* (const VectorType& other) const 103 { return coeffs().asDiagonal() * other; } 109 inline Scaling& operator=(const Scaling& other) 111 m_coeffs = other.m_coeffs [all...] |
/external/icu/icu4c/source/i18n/ |
selfmt.cpp | 49 SelectFormat::SelectFormat(const SelectFormat& other) : Format(other), 50 msgPattern(other.msgPattern) { 130 UnicodeString other(FALSE, SELECT_KEYWORD_OTHER, 5); 144 } else if(msgStart==0 && pattern.partSubstringMatches(part, other)) { 158 SelectFormat::operator=(const SelectFormat& other) { 159 if (this != &other) { 160 msgPattern = other.msgPattern; 166 SelectFormat::operator==(const Format& other) const { 167 if (this == &other) { [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/impl/ |
read.hpp | 104 read_op(const read_op& other) 105 : detail::base_from_completion_cond<CompletionCondition>(other), 106 stream_(other.stream_), 107 buffers_(other.buffers_), 108 start_(other.start_), 109 total_transferred_(other.total_transferred_), 110 handler_(other.handler_) 114 read_op(read_op&& other) 115 : detail::base_from_completion_cond<CompletionCondition>(other), 116 stream_(other.stream_) [all...] |
/external/skia/src/gpu/ |
GrStrokeInfo.h | 58 GrStrokeInfo& operator=(const GrStrokeInfo& other) { 59 if (other.isDashed()) { 60 fDashType = other.fDashType; 61 fDashPhase = other.fDashPhase; 62 fIntervals.reset(other.getDashCount()); 63 memcpy(fIntervals.get(), other.fIntervals.get(), fIntervals.count() * sizeof(SkScalar)); 67 this->INHERITED::operator=(other); 71 bool hasEqualEffect(const GrStrokeInfo& other) const { 72 if (this->isDashed() != other.isDashed()) { 76 if (fDashPhase != other.fDashPhase | [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
ArrayProto.java | 13 * in the documentation and/or other materials provided with the 100 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) { 101 if (other instanceof ArrayProto) { 103 TypeUtils.isPrimitiveType(((ArrayProto)other).getElementType())) { 104 if (dimensions == ((ArrayProto)other).dimensions && 105 getElementType().equals(((ArrayProto)other).getElementType())) { 111 if (dimensions == ((ArrayProto)other).dimensions) { 113 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType); 119 return other; 124 int dimensions = Math.min(this.dimensions, ((ArrayProto)other).dimensions) [all...] |
/frameworks/base/media/java/android/media/ |
MediaRouterClientState.java | 39 * Globally selected routes override any other route selections that applications 120 public RouteInfo(RouteInfo other) { 121 id = other.id; 122 name = other.name; 123 description = other.description; 124 supportedTypes = other.supportedTypes; 125 enabled = other.enabled; 126 statusCode = other.statusCode; 127 playbackType = other.playbackType; 128 playbackStream = other.playbackStream [all...] |
/frameworks/native/libs/input/ |
InputDevice.cpp | 133 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) : 134 mId(other.mId), mGeneration(other.mGeneration), mControllerNumber(other.mControllerNumber), 135 mIdentifier(other.mIdentifier), mAlias(other.mAlias), mIsExternal(other.mIsExternal), 136 mHasMic(other.mHasMic), mSources(other.mSources), 137 mKeyboardType(other.mKeyboardType), mKeyCharacterMap(other.mKeyCharacterMap) [all...] |
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/ |
jython-2.5.3.jar | |
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
AutoDiffScalar.h | 102 AutoDiffScalar(const AutoDiffScalar<OtherDerType>& other) 103 : m_value(other.value()), m_derivatives(other.derivatives()) 111 AutoDiffScalar(const AutoDiffScalar& other) 112 : m_value(other.value()), m_derivatives(other.derivatives()) 116 inline AutoDiffScalar& operator=(const AutoDiffScalar<OtherDerType>& other) 118 m_value = other.value(); 119 m_derivatives = other.derivatives(); 123 inline AutoDiffScalar& operator=(const AutoDiffScalar& other) [all...] |
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/ |
DeltaDescriptor.java | 118 DeltaDescriptor other = (DeltaDescriptor) obj; 120 if (other.deltaFriendlyNewFileRange != null) return false; 121 } else if (!deltaFriendlyNewFileRange.equals(other.deltaFriendlyNewFileRange)) return false; 123 if (other.deltaFriendlyOldFileRange != null) return false; 124 } else if (!deltaFriendlyOldFileRange.equals(other.deltaFriendlyOldFileRange)) return false; 125 if (deltaLength != other.deltaLength) return false; 126 if (format != other.format) return false;
|
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/ |
rebind_alloc.pass.cpp | 15 // template <class T> using rebind_alloc = Alloc::rebind<U>::other | Alloc<T, Args...>; 30 template <class U> struct rebind {typedef ReboundA<U> other;}; typedef in struct:A::rebind 41 template <class V> struct rebind {typedef ReboundB<V, U> other;}; typedef in struct:B::rebind 73 static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_alloc<double>::other, ReboundA<double> >::value), ""); 74 static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_alloc<double>::other, ReboundB<double, char> >::value), ""); 75 static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_alloc<double>::other, C<double> >::value), ""); 76 static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_alloc<double>::other, D<double, char> >::value), ""); 77 static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_alloc<double>::other, E<double> >::value), "");
|
/external/libcxx/test/std/utilities/memory/allocator.traits/ |
rebind_traits.pass.cpp | 30 template <class U> struct rebind {typedef ReboundA<U> other;}; typedef in struct:A::rebind 41 template <class V> struct rebind {typedef ReboundB<V, U> other;}; typedef in struct:B::rebind 73 static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_traits<double>::other, std::allocator_traits<ReboundA<double> > >::value), ""); 74 static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_traits<double>::other, std::allocator_traits<ReboundB<double, char> > >::value), ""); 75 static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_traits<double>::other, std::allocator_traits<C<double> > >::value), ""); 76 static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_traits<double>::other, std::allocator_traits<D<double, char> > >::value), ""); 77 static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_traits<double>::other, std::allocator_traits<E<double> > >::value), "");
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/ |
DirectReadOnlyByteBuffer.java | 31 static DirectReadOnlyByteBuffer copy (DirectByteBuffer other, int markOfOther) { 32 DirectReadOnlyByteBuffer buf = new DirectReadOnlyByteBuffer(other.byteArray.buffer(), other.capacity(), 33 other.byteArray.byteOffset()); 34 buf.limit = other.limit(); 35 buf.position = other.position(); 37 buf.order(other.order());
|
ReadOnlyHeapByteBuffer.java | 29 static ReadOnlyHeapByteBuffer copy (HeapByteBuffer other, int markOfOther) { 30 ReadOnlyHeapByteBuffer buf = new ReadOnlyHeapByteBuffer(other.backingArray, other.capacity(), other.offset); 31 buf.limit = other.limit(); 32 buf.position = other.position(); 34 buf.order(other.order());
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/ |
NodePart.java | 59 * Renderable. The other member of the provided {@link Renderable} remain untouched. Note that the material, mesh and bones
74 protected NodePart set (NodePart other) {
75 meshPart = new MeshPart(other.meshPart);
76 material = other.material;
77 enabled = other.enabled;
78 if (other.invBoneBindTransforms == null) {
83 invBoneBindTransforms = new ArrayMap<Node, Matrix4>(true, other.invBoneBindTransforms.size, Node.class, Matrix4.class);
86 invBoneBindTransforms.putAll(other.invBoneBindTransforms);
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
basic_io_object.hpp | 156 basic_io_object(basic_io_object&& other) 157 : service_(&other.get_service()) 159 service_->move_construct(implementation, other.implementation); 167 basic_io_object& operator=(basic_io_object&& other) 170 *other.service_, other.implementation); 171 service_ = other.service_;
|
/external/skia/include/core/ |
SkStrokeRec.h | 106 bool hasEqualEffect(const SkStrokeRec& other) const { 108 return this->getStyle() == other.getStyle(); 110 return fWidth == other.fWidth && 111 fMiterLimit == other.fMiterLimit && 112 fCap == other.fCap && 113 fJoin == other.fJoin && 114 fStrokeAndFill == other.fStrokeAndFill;
|
/external/v8/src/crankshaft/ |
hydrogen-types.h | 46 HType Combine(HType other) const WARN_UNUSED_RESULT { 47 return HType(static_cast<Kind>(kind_ & other.kind_)); 50 bool Equals(HType other) const WARN_UNUSED_RESULT { 51 return kind_ == other.kind_; 54 bool IsSubtypeOf(HType other) const WARN_UNUSED_RESULT { 55 return Combine(other).Equals(other);
|