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

<<41424344454647484950>>

  /external/eigen/Eigen/src/Core/
Transpositions.h 61 /** Copies the \a other transpositions into \c *this */
63 Derived& operator=(const TranspositionsBase<OtherDerived>& other)
65 indices() = other.indices();
73 Derived& operator=(const TranspositionsBase& other)
75 indices() = other.indices();
169 inline Transpositions(const TranspositionsBase<OtherDerived>& other)
170 : m_indices(other.indices()) {}
174 * from hiding the other templated constructor */
175 inline Transpositions(const Transpositions& other) : m_indices(other.indices()) {
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
DefaultTable.py 42 def __ne__(self, other):
43 return not self.__eq__(other)
44 def __eq__(self, other):
45 if type(self) != type(other):
47 return self.__dict__ == other.__dict__
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillType.java 27 * {@link android.graphics.Bitmap} against any other sizes/configurations that may be being pre-filled.
71 PreFillType other = (PreFillType) o; local
72 return height == other.height
73 && width == other.width
74 && weight == other.weight
75 && config == other.config;
151 * Sets the weight to use to balance how many Bitmaps of this type are prefilled relative to the other requested
154 * {@link android.graphics.Bitmap} against any other sizes/configurations that may be being pre-filled.
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TablesTransformValuesTest.java 64 Table<String, Integer, Character> other = HashBasedTable.create(); local
65 other.put("foo", 1, 'd');
66 other.put("bar", 2, 'e');
67 other.put("cat", 2, 'f');
69 table.putAll(other);
  /external/guava/guava-tests/test/com/google/common/collect/
TablesTransformValuesTest.java 67 Table<String, Integer, Character> other = HashBasedTable.create(); local
68 other.put("foo", 1, 'd');
69 other.put("bar", 2, 'e');
70 other.put("cat", 2, 'f');
72 table.putAll(other);
  /external/icu/icu4c/source/i18n/
decimfmtimpl.cpp 89 NumberFormat *super, const DecimalFormatImpl &other, UErrorCode &status) :
91 fMultiplier(other.fMultiplier),
92 fScale(other.fScale),
93 fRoundingMode(other.fRoundingMode),
94 fMinSigDigits(other.fMinSigDigits),
95 fMaxSigDigits(other.fMaxSigDigits),
96 fUseScientific(other.fUseScientific),
97 fUseSigDigits(other.fUseSigDigits),
98 fGrouping(other.fGrouping),
99 fPositivePrefixPattern(other.fPositivePrefixPattern)
    [all...]
funcrepl.cpp 41 FunctionReplacer::FunctionReplacer(const FunctionReplacer& other) :
42 UnicodeFunctor(other),
43 UnicodeReplacer(other)
45 translit = other.translit->clone();
46 replacer = other.replacer->clone();
scriptset.cpp 38 ScriptSet::ScriptSet(const ScriptSet &other) {
39 *this = other;
43 ScriptSet & ScriptSet::operator =(const ScriptSet &other) {
45 bits[i] = other.bits[i];
51 UBool ScriptSet::operator == (const ScriptSet &other) const {
53 if (bits[i] != other.bits[i]) {
104 ScriptSet &ScriptSet::Union(const ScriptSet &other) {
106 bits[i] |= other.bits[i];
111 ScriptSet &ScriptSet::intersect(const ScriptSet &other) {
113 bits[i] &= other.bits[i]
    [all...]
repattrn.cpp 45 RegexPattern::RegexPattern(const RegexPattern &other) : UObject(other) {
47 *this = other;
57 RegexPattern &RegexPattern::operator = (const RegexPattern &other) {
58 if (this == &other) {
70 fDeferredStatus = other.fDeferredStatus;
76 if (other.fPatternString == NULL) {
78 fPattern = utext_clone(fPattern, other.fPattern, FALSE, TRUE, &fDeferredStatus);
80 fPatternString = new UnicodeString(*(other.fPatternString));
91 fFlags = other.fFlags
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
TimeZoneICU.java 42 TimeZoneICU other = (TimeZoneICU)super.clone(); local
43 other.fIcuTz = (TimeZone)fIcuTz.clone();
44 return other;
82 public boolean hasSameRules(java.util.TimeZone other) {
83 return other.hasSameRules(TimeZoneICU.wrap(fIcuTz));
  /external/jsoncpp/src/lib_json/
json_value.cpp 173 Value::CZString::CZString(const CZString& other)
174 : cstr_(other.index_ != noDuplication && other.cstr_ != 0
175 ? duplicateStringValue(other.cstr_)
176 : other.cstr_),
177 index_(other.cstr_
178 ? static_cast<ArrayIndex>(other.index_ == noDuplication
180 : other.index_) {}
187 void Value::CZString::swap(CZString& other) {
188 std::swap(cstr_, other.cstr_)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/
DirectionalLight.java 68 public boolean equals (final DirectionalLight other) {
69 return (other != null) && ((other == this) || ((color.equals(other.color) && direction.equals(other.direction))));
  /external/webrtc/webrtc/base/
window.h 63 bool Equals(const WindowId& other) const {
64 return id_ == other.id();
99 bool Equals(const DesktopId& other) const {
100 return id_ == other.id() && index_ == other.index();
  /frameworks/base/core/java/android/hardware/camera2/params/
RggbChannelVector.java 173 final RggbChannelVector other = (RggbChannelVector) obj; local
174 return mRed == other.mRed &&
175 mGreenEven == other.mGreenEven &&
176 mGreenOdd == other.mGreenOdd &&
177 mBlue == other.mBlue;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CommandDetails.java 44 public boolean compareTo(CommandDetails other) {
45 return (this.compRequired == other.compRequired &&
46 this.commandNumber == other.commandNumber &&
47 this.commandQualifier == other.commandQualifier &&
48 this.typeOfCommand == other.typeOfCommand);
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
IngestObjectInfo.java 99 IngestObjectInfo other = (IngestObjectInfo) obj; local
100 if (mCompressedSize != other.mCompressedSize) {
103 if (mDateCreated != other.mDateCreated) {
106 if (mFormat != other.mFormat) {
109 if (mHandle != other.mHandle) {
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pPeer.java 70 WifiP2pPeer other = (WifiP2pPeer) preference; local
73 if (device.status != other.device.status) {
74 return device.status < other.device.status ? -1 : 1;
79 return device.deviceName.compareToIgnoreCase(other.device.deviceName);
82 return device.deviceAddress.compareToIgnoreCase(other.device.deviceAddress);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
fsuse.py 85 def __lt__(self, other):
86 return self.key < other.key
88 def __eq__(self, other):
89 return self.ruletype == other.ruletype and self.fs == other.fs
  /external/deqp/framework/delibs/decpp/
deArrayBuffer.hpp 56 ArrayBuffer (const ArrayBuffer& other);
58 ArrayBuffer& operator= (const ArrayBuffer& other);
62 void swap (ArrayBuffer& other) throw();
130 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (const ArrayBuffer<T,Alignment,Stride>& other)
134 if (other.m_cap)
138 const size_t storageSize = (other.m_cap - 1) * Stride + sizeof(T);
139 ArrayBuffer tmp (other.m_cap);
141 deMemcpy(tmp.m_ptr, other.m_ptr, (int)storageSize);
153 ArrayBuffer<T,Alignment,Stride>& ArrayBuffer<T,Alignment,Stride>::operator= (const ArrayBuffer& other)
155 ArrayBuffer copied(other);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btAABB.java 91 public btAABB(btAABB other) {
92 this(CollisionJNI.new_btAABB__SWIG_3(btAABB.getCPtr(other), other), true);
95 public btAABB(btAABB other, float margin) {
96 this(CollisionJNI.new_btAABB__SWIG_4(btAABB.getCPtr(other), other, margin), true);
107 public void copy_with_margin(btAABB other, float margin) {
108 CollisionJNI.btAABB_copy_with_margin(swigCPtr, this, btAABB.getCPtr(other), other, margin);
127 public void find_intersection(btAABB other, btAABB intersection)
    [all...]
  /external/nanopb-c/generator/google/protobuf/internal/
containers.py 13 # in the documentation and/or other materials provided with the
49 # Minimizes memory usage and disallows assignment to other attributes.
70 def __ne__(self, other):
73 return not self == other
94 # Disallows assignment to other attributes.
135 def MergeFrom(self, other):
139 self._values.extend(other._values)
176 def __eq__(self, other):
178 if self is other:
181 if isinstance(other, self.__class__)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
LiteralByteString.java 13 // in the documentation and/or other materials provided with the
177 public boolean equals(Object other) {
178 if (other == this) {
181 if (!(other instanceof ByteString)) {
185 if (size() != ((ByteString) other).size()) {
192 if (other instanceof LiteralByteString) {
193 return equalsRange((LiteralByteString) other, 0, size());
194 } else if (other instanceof RopeByteString) {
195 return other.equals(this);
199 + other.getClass())
    [all...]
  /external/protobuf/python/google/protobuf/internal/
containers.py 13 # in the documentation and/or other materials provided with the
49 # Minimizes memory usage and disallows assignment to other attributes.
70 def __ne__(self, other):
73 return not self == other
94 # Disallows assignment to other attributes.
132 def MergeFrom(self, other):
136 self._values.extend(other._values)
176 def __eq__(self, other):
178 if self is other:
181 if isinstance(other, self.__class__)
    [all...]
  /external/vixl/test/
test-invalset.cc 11 // and/or other materials provided with the distribution.
48 bool operator==(const Obj& other) const {
49 return (key_ == other.key_) && (val_ == other.val_);
51 bool operator<(const Obj& other) const {
52 return (key_ < other.key_) ||
53 ((key_ == other.key_) && (val_ < other.val_));
55 bool operator<=(const Obj& other) const {
56 return (key_ <= other.key_) |
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewTransform.java 81 public void copyFrom(TaskViewTransform other) {
82 translationZ = other.translationZ;
83 scale = other.scale;
84 alpha = other.alpha;
85 visible = other.visible;
86 dimAlpha = other.dimAlpha;
87 viewOutlineAlpha = other.viewOutlineAlpha;
88 rect.set(other.rect);
92 * @return whether {@param other} is the same transform as this
94 public boolean isSame(TaskViewTransform other) {
    [all...]

Completed in 647 milliseconds

<<41424344454647484950>>