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

<<11121314151617181920>>

  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); }
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue()));
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
set.py 13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
87 def union_update(self, other):
88 """Update the set, adding any elements from other which are not
90 @param other: the collection of items with which to update the set
91 @type other: Set object
93 if not isinstance(other, Set):
94 raise ValueError('other must be a Set instance')
95 if self is other:
97 for item in other.items:
100 def intersection_update(self, other)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet):
    [all...]
UserList.py 17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other)
20 def __ne__(self, other): return self.data != self.__cast(other)
21 def __gt__(self, other): return self.data > self.__cast(other)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
UserList.py 17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other)
20 def __ne__(self, other): return self.data != self.__cast(other)
21 def __gt__(self, other): return self.data > self.__cast(other)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
UserList.py 17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other)
20 def __ne__(self, other): return self.data != self.__cast(other)
21 def __gt__(self, other): return self.data > self.__cast(other)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
UserList.py 17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other)
20 def __ne__(self, other): return self.data != self.__cast(other)
21 def __gt__(self, other): return self.data > self.__cast(other)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
UserList.py 17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other)
20 def __ne__(self, other): return self.data != self.__cast(other)
21 def __gt__(self, other): return self.data > self.__cast(other)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAContext.java 13 * documentation and/or other materials provided with the distribution.
31 * other NFAs. These trees only have to point upwards to their parents
139 NFAContext other = ((NFAContext)o); local
140 if ( this.cachedHashCode != other.cachedHashCode ) {
143 if ( this==other ) {
146 // System.out.println("comparing "+this+" with "+other);
148 while ( sp.parent!=null && other.parent!=null ) {
149 if ( sp.invokingState != other.invokingState ) {
153 other = other.parent
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
struct_ptr.h 44 StructPtr(StructPtr&& other) : ptr_(nullptr) { Take(&other); }
45 StructPtr& operator=(StructPtr&& other) {
46 Take(&other);
74 void Swap(StructPtr* other) { std::swap(ptr_, other->ptr_); }
81 bool Equals(const StructPtr& other) const {
82 if (is_null() || other.is_null())
83 return is_null() && other.is_null();
84 return ptr_->Equals(*other.ptr_)
    [all...]
  /frameworks/base/core/java/android/hardware/display/
DisplayManagerInternal.java 127 * may choose to make the physical display mirror some other logical display.
184 * have to micro-manage screen off animations, auto-brightness and other effects.
259 public DisplayPowerRequest(DisplayPowerRequest other) {
260 copyFrom(other);
271 public void copyFrom(DisplayPowerRequest other) {
272 policy = other.policy;
273 useProximitySensor = other.useProximitySensor;
274 screenBrightness = other.screenBrightness;
275 screenAutoBrightnessAdjustment = other.screenAutoBrightnessAdjustment;
276 screenLowPowerBrightnessFactor = other.screenLowPowerBrightnessFactor
    [all...]
  /external/chromium-trace/catapult/devil/devil/
base_error.py 13 def __eq__(self, other):
14 return (self.message == other.message
15 and self.is_infra_error == other.is_infra_error)
17 def __ne__(self, other):
18 return not self == other
  /external/icu/icu4c/source/common/unicode/
dtintrv.h 87 * other classes have different class IDs.
97 DateInterval(const DateInterval& other);
110 virtual UBool operator==(const DateInterval& other) const;
117 UBool operator!=(const DateInterval& other) const;
153 DateInterval::operator!=(const DateInterval& other) const {
154 return ( !operator==(other) );
  /external/skia/src/gpu/
GrScissorState.h 26 bool operator==(const GrScissorState& other) const {
27 return fEnabled == other.fEnabled &&
28 (false == fEnabled || fRect == other.fRect);
30 bool operator!=(const GrScissorState& other) const { return !(*this == other); }
  /external/v8/tools/clang/blink_gc_plugin/
NeedsTracing.h 19 NeedsTracing LUB(const NeedsTracing& other) {
20 return value_ > other.value_ ? value_ : other.value_;
22 bool operator==(const NeedsTracing& other) {
23 return value_ == other.value_;
TracingStatus.h 38 TracingStatus LUB(const TracingStatus& other) const {
39 return status_ > other.status_ ? status_ : other.status_;
41 bool operator==(const TracingStatus& other) const {
42 return status_ == other.status_;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
constructors_destructor_fn_imps.hpp 67 binomial_heap_base(const PB_DS_CLASS_C_DEC& other)
68 : base_type(other), m_p_max(0)
74 swap(PB_DS_CLASS_C_DEC& other)
77 base_type::swap(other);
78 std::swap(m_p_max, other.m_p_max);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
constructors_destructor_fn_imps.hpp 67 binomial_heap_base(const PB_DS_CLASS_C_DEC& other)
68 : base_type(other), m_p_max(0)
74 swap(PB_DS_CLASS_C_DEC& other)
77 base_type::swap(other);
78 std::swap(m_p_max, other.m_p_max);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binomial_heap_base_/
constructors_destructor_fn_imps.hpp 67 binomial_heap_base(const PB_DS_CLASS_C_DEC& other)
68 : base_type(other), m_p_max(0)
74 swap(PB_DS_CLASS_C_DEC& other)
77 base_type::swap(other);
78 std::swap(m_p_max, other.m_p_max);
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binomial_heap_base_/
constructors_destructor_fn_imps.hpp 67 binomial_heap_base(const PB_DS_CLASS_C_DEC& other)
68 : base_type(other), m_p_max(0)
74 swap(PB_DS_CLASS_C_DEC& other)
77 base_type::swap(other);
78 std::swap(m_p_max, other.m_p_max);
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binomial_heap_base_/
constructors_destructor_fn_imps.hpp 67 binomial_heap_base(const PB_DS_CLASS_C_DEC& other)
68 : base_type(other), m_p_max(0)
74 swap(PB_DS_CLASS_C_DEC& other)
77 base_type::swap(other);
78 std::swap(m_p_max, other.m_p_max);

Completed in 1570 milliseconds

<<11121314151617181920>>