HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 126 - 150 of 9229) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 36 public Vector2(Vector2 other) {
37 set(other);
40 public final void add(Vector2 other) {
41 x += other.x;
42 y += other.y;
50 public final void subtract(Vector2 other) {
51 x -= other.x;
52 y -= other.y;
60 public final void multiply(Vector2 other) {
61 x *= other.x
    [all...]
  /system/core/libutils/include/utils/
String16.h 75 void setTo(const String16& other);
76 status_t setTo(const char16_t* other);
77 status_t setTo(const char16_t* other, size_t len);
78 status_t setTo(const String16& other,
82 status_t append(const String16& other);
83 status_t append(const char16_t* other, size_t len);
85 inline String16& operator=(const String16& other);
87 inline String16& operator+=(const String16& other);
88 inline String16 operator+(const String16& other) const;
109 inline int compare(const String16& other) const
    [all...]
StrongPointer.h 57 sp(T* other); // NOLINT(implicit)
58 sp(const sp<T>& other);
59 sp(sp<T>&& other);
60 template<typename U> sp(U* other); // NOLINT(implicit)
61 template<typename U> sp(const sp<U>& other); // NOLINT(implicit)
62 template<typename U> sp(sp<U>&& other); // NOLINT(implicit)
68 sp& operator = (T* other);
69 sp& operator = (const sp<T>& other);
70 sp& operator = (sp<T>&& other);
72 template<typename U> sp& operator = (const sp<U>& other);
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
edns.py 13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
52 def _cmp(self, other):
54 Return < 0 if self < other, 0 if self == other, and > 0 if self > other.
58 def __eq__(self, other):
59 if not isinstance(other, Option):
61 if self.otype != other.otype:
63 return self._cmp(other) == 0
65 def __ne__(self, other)
    [all...]
  /cts/libs/view/src/com/android/view/
Position.java 42 public double dotProduct(Position other) {
43 return (mX * other.mX) + (mY * other.mY);
47 * @return The euclidean distance between {@code this} and the other {@link Position}.
49 public double distanceTo(Position other) {
50 return Math.sqrt(Math.pow((mX - other.mX), 2) + Math.pow((mY - other.mY), 2));
55 * {@code this} to the other {@link Position}, given the origin of the arc.
62 public double arcAngleTo(Position other, Position origin) {
63 // Compute the angle of the polar representation of this and other w.r.t. the arc origin
97 Position other = (Position) o; local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
FileSystemException.java 43 private final String other; field in class:FileSystemException
56 this.other = null;
66 * @param other
67 * a string identifying the other file or {@code null} if there
72 public FileSystemException(String file, String other, String reason) {
75 this.other = other;
88 * Returns the other file used to create this exception.
90 * @return the other file (can be {@code null})
93 return other;
    [all...]
  /system/core/libpixelflinger/codeflinger/tinyutils/
smartpointer.h 54 sp(T* other); // NOLINT, implicit
55 sp(const sp<T>& other);
56 template<typename U> sp(U* other); // NOLINT, implicit
57 template<typename U> sp(const sp<U>& other); // NOLINT, implicit
63 sp& operator = (T* other);
64 sp& operator = (const sp<T>& other);
66 template<typename U> sp& operator = (const sp<U>& other);
67 template<typename U> sp& operator = (U* other);
97 sp<T>::sp(T* other)
98 : m_ptr(other)
    [all...]
  /external/deqp/framework/randomshaders/
rsgToken.cpp 45 Token& Token::operator= (const Token& other)
53 m_type = other.m_type;
57 m_arg.identifier = deStrdup(other.m_arg.identifier);
62 m_arg.floatValue = other.m_arg.floatValue;
64 m_arg.intValue = other.m_arg.intValue;
66 m_arg.boolValue = other.m_arg.boolValue;
71 Token::Token (const Token& other)
74 *this = other;
77 bool Token::operator!= (const Token& other) const
79 if (m_type != other.m_type
    [all...]
  /external/libchrome/base/profiler/
tracked_time.cc 18 Duration& Duration::operator+=(const Duration& other) {
19 ms_ += other.ms_;
23 Duration Duration::operator+(const Duration& other) const {
24 return Duration(ms_ + other.ms_);
27 bool Duration::operator==(const Duration& other) const {
28 return ms_ == other.ms_;
31 bool Duration::operator!=(const Duration& other) const {
32 return ms_ != other.ms_;
35 bool Duration::operator>(const Duration& other) const {
36 return ms_ > other.ms_
    [all...]
  /system/bt/service/common/bluetooth/
scan_filter.cc 23 ScanFilter::ScanFilter(const ScanFilter& other) {
24 device_name_ = other.device_name_;
25 device_address_ = other.device_address_;
27 if (other.service_uuid_) service_uuid_.reset(new UUID(*other.service_uuid_));
29 if (other.service_uuid_mask_)
30 service_uuid_mask_.reset(new UUID(*other.service_uuid_mask_));
33 ScanFilter& ScanFilter::operator=(const ScanFilter& other) {
34 device_name_ = other.device_name_;
35 device_address_ = other.device_address_
    [all...]
  /art/runtime/
dex_file_types.h 40 bool operator==(const StringIndex& other) const {
41 return index_ == other.index_;
43 bool operator!=(const StringIndex& other) const {
44 return index_ != other.index_;
46 bool operator<(const StringIndex& other) const {
47 return index_ < other.index_;
49 bool operator<=(const StringIndex& other) const {
50 return index_ <= other.index_;
52 bool operator>(const StringIndex& other) const {
53 return index_ > other.index_
    [all...]
  /cts/tools/dasm/src/java_cup/
reduce_action.java 50 public boolean equals(reduce_action other)
52 return other != null && other.reduce_with() == reduce_with();
58 public boolean equals(Object other)
60 if (other instanceof reduce_action)
61 return equals((reduce_action)other);
shift_action.java 50 public boolean equals(shift_action other)
52 return other != null && other.shift_to() == shift_to();
58 public boolean equals(Object other)
60 if (other instanceof shift_action)
61 return equals((shift_action)other);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstLiteral32.java 38 public final boolean equals(Object other) {
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral32) other).bits;
52 protected int compareTo0(Constant other) {
53 int otherBits = ((CstLiteral32) other).bits;
CstLiteral64.java 38 public final boolean equals(Object other) {
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral64) other).bits;
52 protected int compareTo0(Constant other) {
53 long otherBits = ((CstLiteral64) other).bits;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstLiteral32.java 38 public final boolean equals(Object other) {
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral32) other).bits;
52 protected int compareTo0(Constant other) {
53 int otherBits = ((CstLiteral32) other).bits;
CstLiteral64.java 38 public final boolean equals(Object other) {
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral64) other).bits;
52 protected int compareTo0(Constant other) {
53 long otherBits = ((CstLiteral64) other).bits;
  /external/icu/icu4c/source/i18n/unicode/
tmutamt.h 71 TimeUnitAmount(const TimeUnitAmount& other);
78 TimeUnitAmount& operator=(const TimeUnitAmount& other);
98 * @param other the object to compare to.
102 virtual UBool operator==(const UObject& other) const;
107 * @param other the object to compare to.
111 UBool operator!=(const UObject& other) const;
136 * other classes have different class IDs.
160 TimeUnitAmount::operator!=(const UObject& other) const {
161 return !operator==(other);
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderDef.h 180 CirParams &operator=(const CirParams &other) {
181 if (this == &other) return *this;
183 this->cir_num_mbs = other.cir_num_mbs;
193 AirParams &operator=(const AirParams &other) {
194 if (this == &other) return *this;
196 this->airMBs= other.airMBs;
197 this->airThreshold= other.airThreshold;
198 this->airAuto = other.airAuto;
207 VideoFrameRate &operator=(const VideoFrameRate &other) {
208 if (this == &other) return *this
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ArrayReferenceValue.java 60 public ReferenceValue generalize(ReferenceValue other)
62 return other.generalize(this);
66 public int equal(ReferenceValue other)
68 return other.equal(this);
75 // public ReferenceValue generalize(IdentifiedReferenceValue other)
77 // return generalize((TypedReferenceValue)other);
81 // public int equal(IdentifiedReferenceValue other)
83 // return equal((TypedReferenceValue)other);
90 public ReferenceValue generalize(ArrayReferenceValue other)
93 this.equals(other) ? this
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabaseConfiguration.java 94 * database and default values for all other parameters.
116 * @param other The other configuration.
118 public SQLiteDatabaseConfiguration(SQLiteDatabaseConfiguration other) {
119 if (other == null) {
120 throw new IllegalArgumentException("other must not be null.");
123 this.path = other.path;
124 this.label = other.label;
125 updateParametersFrom(other);
130 * from the other configuration object
    [all...]

Completed in 1363 milliseconds

1 2 3 4 56 7 8 91011>>