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

<<41424344454647484950>>

  /external/icu/icu4c/source/layout/
GlyphSubstLookupProc.h 50 GlyphSubstitutionLookupProcessor(const GlyphSubstitutionLookupProcessor &other); // forbid copying of this class
51 GlyphSubstitutionLookupProcessor &operator=(const GlyphSubstitutionLookupProcessor &other); // forbid copying of this class
  /external/icu/icu4c/source/test/intltest/
sfwdchit.h 64 SimpleFwdCharIterator(const SimpleFwdCharIterator &other)
65 : ForwardCharacterIterator(other) {}
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
Selection.java 28 public Selection set(Selection other) {
29 anchor = other.anchor;
30 caret = other.caret;
31 clickAfter = other.clickAfter;
42 public boolean equals(Object other) {
43 Selection other2 = (Selection)other;
49 public boolean isLessThan(Selection other) {
50 return getStart() < other.getEnd();
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btBroadphasePairArray.java 63 * @param other The collision object the pair must contain (which itself is excluded from the result)
66 public com.badlogic.gdx.utils.Array<btCollisionObject> getCollisionObjects(final com.badlogic.gdx.utils.Array<btCollisionObject> out, final btCollisionObject other, final int[] tempArray) {
67 final int c = getCollisionObjects(tempArray, tempArray.length, (int)btCollisionObject.getCPtr(other));
76 * @param other The collision object the pair must contain (which itself is excluded from the result)
78 public int getCollisionObjectsValue(final int[] out, final btCollisionObject other) {
79 return getCollisionObjectsValue(out, out.length, (int)btCollisionObject.getCPtr(other));
90 public int getCollisionObjects(int[] result, int max, int other) {
91 return CollisionJNI.btBroadphasePairArray_getCollisionObjects(swigCPtr, this, result, max, other);
94 public int getCollisionObjectsValue(int[] result, int max, int other) {
95 return CollisionJNI.btBroadphasePairArray_getCollisionObjectsValue(swigCPtr, this, result, max, other);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Attributes.java 159 /** Check if this collection has the same attributes as the other collection. If compareValues is true, it also compares the
162 * @return True if this collection contains the same attributes (and optionally attribute values) as the other. */
163 public final boolean same (final Attributes other, boolean compareValues) {
164 if (other == this) return true;
165 if ((other == null) || (mask != other.mask)) return false;
168 other.sort();
170 if (!attributes.get(i).equals(other.attributes.get(i))) return false;
175 * @return True if this collection contains the same attributes (but not values) as the other. */
176 public final boolean same (final Attributes other) {
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
BlendingAttribute.java 94 BlendingAttribute other = (BlendingAttribute)o;
95 if (blended != other.blended) return blended ? 1 : -1;
96 if (sourceFunction != other.sourceFunction) return sourceFunction - other.sourceFunction;
97 if (destFunction != other.destFunction) return destFunction - other.destFunction;
98 return (MathUtils.isEqual(opacity, other.opacity)) ? 0 : (opacity < other.opacity ? 1 : -1);
DepthTestAttribute.java 99 DepthTestAttribute other = (DepthTestAttribute)o;
100 if (depthFunc != other.depthFunc) return depthFunc - other.depthFunc;
101 if (depthMask != other.depthMask) return depthMask ? -1 : 1;
102 if (!MathUtils.isEqual(depthRangeNear, other.depthRangeNear))
103 return depthRangeNear < other.depthRangeNear ? -1 : 1;
104 if (!MathUtils.isEqual(depthRangeFar, other.depthRangeFar))
105 return depthRangeFar < other.depthRangeFar ? -1 : 1;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 12 // in the documentation and/or other materials provided with the
89 // Determines whether the given iterator and other point to the same
92 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
107 ParamIterator& operator=(const ParamIterator& other) {
108 if (this != &other)
109 impl_.reset(other.impl_->Clone());
126 bool operator==(const ParamIterator& other) const {
127 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_)
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 12 // in the documentation and/or other materials provided with the
89 // Determines whether the given iterator and other point to the same
92 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
107 ParamIterator& operator=(const ParamIterator& other) {
108 if (this != &other)
109 impl_.reset(other.impl_->Clone());
126 bool operator==(const ParamIterator& other) const {
127 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_)
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfKeyCode.h 15 // in the documentation and/or other materials provided with the
118 KeyCode (const KeyCode &other);
119 KeyCode & operator = (const KeyCode &other);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address_v4.hpp 60 address_v4(const address_v4& other)
61 : addr_(other.addr_)
66 address_v4(address_v4&& other)
67 : addr_(other.addr_)
72 address_v4& operator=(const address_v4& other)
74 addr_ = other.addr_;
79 address_v4& operator=(address_v4&& other)
81 addr_ = other.addr_;
basic_endpoint.hpp 85 basic_endpoint(const basic_endpoint& other)
86 : impl_(other.impl_)
91 basic_endpoint(basic_endpoint&& other)
92 : impl_(other.impl_)
97 basic_endpoint& operator=(const basic_endpoint& other)
99 impl_ = other.impl_;
104 basic_endpoint& operator=(basic_endpoint&& other)
106 impl_ = other.impl_;
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 12 // in the documentation and/or other materials provided with the
88 // Determines whether the given iterator and other point to the same
91 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
105 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
106 ParamIterator& operator=(const ParamIterator& other) {
107 if (this != &other)
108 impl_.reset(other.impl_->Clone());
125 bool operator==(const ParamIterator& other) const {
126 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_)
    [all...]
  /external/testng/src/main/java/org/testng/internal/
MethodSelectorDescriptor.java 34 public int compareTo(MethodSelectorDescriptor other) {
39 int p2 = other.getPriority();
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 12 // in the documentation and/or other materials provided with the
89 // Determines whether the given iterator and other point to the same
92 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
107 ParamIterator& operator=(const ParamIterator& other) {
108 if (this != &other)
109 impl_.reset(other.impl_->Clone());
126 bool operator==(const ParamIterator& other) const {
127 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
dlrr.h 36 Dlrr(const Dlrr& other) = default; member in class:webrtc::rtcp::Dlrr
39 Dlrr& operator=(const Dlrr& other) = default; member in class:webrtc::rtcp::Dlrr
  /frameworks/base/core/java/android/hardware/display/
WifiDisplay.java 139 public boolean equals(WifiDisplay other) {
140 return other != null
141 && mDeviceAddress.equals(other.mDeviceAddress)
142 && mDeviceName.equals(other.mDeviceName)
143 && Objects.equal(mDeviceAlias, other.mDeviceAlias);
147 * Returns true if the other display is not null and has the same address as this one.
151 public boolean hasSameAddress(WifiDisplay other) {
152 return other != null && mDeviceAddress.equals(other.mDeviceAddress);
  /frameworks/rs/
rsList.h 82 bool operator==(const iterator& other) const {
83 return p == other.p && buffer == other.buffer && list == other.list;
86 bool operator!=(const iterator& other) const {
87 return p != other.p || buffer != other.buffer || list != other.list;
  /libcore/luni/src/main/java/java/util/concurrent/
CompletionStage.java 18 * in turn trigger other dependent stages. The functionality defined
68 * In all other cases, if a stage's computation terminates abruptly
91 * value for any other parameter will result in a {@link
265 * Returns a new CompletionStage that, when this and the other
272 * @param other the other CompletionStage
275 * @param <U> the type of the other CompletionStage's result
280 (CompletionStage<? extends U> other,
284 * Returns a new CompletionStage that, when this and the other
292 * @param other the other CompletionStag
    [all...]
  /libnativehelper/include/nativehelper/
ScopedFd.h 36 ScopedFd(ScopedFd&& other) : fd_(other.release()) {}
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 12 // in the documentation and/or other materials provided with the
89 // Determines whether the given iterator and other point to the same
92 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
107 ParamIterator& operator=(const ParamIterator& other) {
108 if (this != &other)
109 impl_.reset(other.impl_->Clone());
126 bool operator==(const ParamIterator& other) const {
127 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 137 * (portrait vs. landscape) of the other.
139 public AspectRatio withOrientationOf(AspectRatio other) {
140 if (other.isPortrait()) {
148 * @return True if this aspect ratio is wider than the other.
150 public boolean isWiderThan(AspectRatio other) {
151 // this.mWidth other.mWidth
153 // this.mHeight other.mHeight
154 return this.mWidth * other.mHeight > other.mWidth * this.mHeight;
158 * @return True if this aspect ratio is taller than the other
    [all...]
  /system/bt/service/common/bluetooth/
advertise_data.h 45 AdvertiseData(const AdvertiseData& other);
71 AdvertiseData& operator=(const AdvertiseData& other);
  /system/netd/server/
UidRanges.h 42 void add(const UidRanges& other);
43 void remove(const UidRanges& other);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
reloc.d 9 Relocation section '\.rela\.data\.other' at .* contains 2 entries:

Completed in 682 milliseconds

<<41424344454647484950>>