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

<<31323334353637383940>>

  /external/proguard/src/proguard/evaluation/value/
TopValue.java 44 public final Value generalize(Value other)
46 return this.getClass() == other.getClass() ? this : null;
  /external/v8/src/compiler/
node-aux-data.h 56 const_iterator(const const_iterator& other)
57 : data_(other.data_), current_(other.current_) {}
62 bool operator==(const const_iterator& other) const {
63 return current_ == other.current_ && data_ == other.data_;
65 bool operator!=(const const_iterator& other) const {
66 return !(*this == other);
  /external/webrtc/webrtc/system_wrappers/include/
atomic32.h 51 Atomic32 operator+(const Atomic32& other);
52 Atomic32 operator-(const Atomic32& other);
  /frameworks/av/include/media/stagefright/foundation/
AString.h 74 bool operator==(const AString &other) const;
75 bool operator!=(const AString &other) const {
76 return !operator==(other);
78 bool operator<(const AString &other) const;
79 bool operator>(const AString &other) const;
81 int compare(const AString &other) const;
82 int compareIgnoreCase(const AString &other) const;
84 bool equalsIgnoreCase(const AString &other) const;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
SimpleDate.java 79 SimpleDate other = (SimpleDate) obj; local
80 if (year != other.year) {
83 if (month != other.month) {
86 if (day != other.day) {
93 public int compareTo(SimpleDate other) {
94 int yearDiff = this.year - other.getYear();
98 int monthDiff = this.month - other.getMonth();
102 return this.day - other.getDay();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/resize_policy/
sample_resize_policy.hpp 57 sample_range_hashing(const sample_resize_policy& other);
61 swap(sample_resize_policy& other);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
priority_queue.hpp 99 typedef typename __rebind_v::other __rebind_va;
134 priority_queue(const priority_queue& other)
135 : base_type((const base_type& )other) { }
141 operator=(const priority_queue& other)
143 if (this != &other)
145 priority_queue tmp(other);
152 swap(priority_queue& other)
153 { base_type::swap(other); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/resize_policy/
sample_resize_policy.hpp 57 sample_range_hashing(const sample_resize_policy& other);
61 swap(sample_resize_policy& other);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
priority_queue.hpp 99 typedef typename __rebind_v::other __rebind_va;
134 priority_queue(const priority_queue& other)
135 : base_type((const base_type& )other) { }
141 operator=(const priority_queue& other)
143 if (this != &other)
145 priority_queue tmp(other);
152 swap(priority_queue& other)
153 { base_type::swap(other); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/resize_policy/
sample_resize_policy.hpp 57 sample_range_hashing(const sample_resize_policy& other);
61 swap(sample_resize_policy& other);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
priority_queue.hpp 99 typedef typename __rebind_v::other __rebind_va;
134 priority_queue(const priority_queue& other)
135 : base_type((const base_type& )other) { }
141 operator=(const priority_queue& other)
143 if (this != &other)
145 priority_queue tmp(other);
152 swap(priority_queue& other)
153 { base_type::swap(other); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/resize_policy/
sample_resize_policy.hpp 57 sample_range_hashing(const sample_resize_policy& other);
61 swap(sample_resize_policy& other);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
priority_queue.hpp 99 typedef typename __rebind_v::other __rebind_va;
134 priority_queue(const priority_queue& other)
135 : base_type((const base_type& )other) { }
141 operator=(const priority_queue& other)
143 if (this != &other)
145 priority_queue tmp(other);
152 swap(priority_queue& other)
153 { base_type::swap(other); }
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
arm3-bad.l 2 .*arm3-bad.s:4: Error: Rn must not overlap other operands -- `swp r0,r1,\[r0\]'
3 .*arm3-bad.s:5: Error: Rn must not overlap other operands -- `swp r1,r0,\[r0\]'
  /external/eigen/Eigen/src/SparseCore/
TriangularSolver.h 31 static void run(const Lhs& lhs, Rhs& other)
33 for(int col=0 ; col<other.cols() ; ++col)
37 Scalar tmp = other.coeff(i,col);
46 tmp -= lastVal * other.coeff(lastIndex,col);
49 other.coeffRef(i,col) = tmp;
53 other.coeffRef(i,col) = tmp/lastVal;
65 static void run(const Lhs& lhs, Rhs& other)
67 for(int col=0 ; col<other.cols() ; ++col)
71 Scalar tmp = other.coeff(i,col);
86 tmp -= it.value() * other.coeff(it.index(),col)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
NameValuePair.java 68 public boolean equals(Object other) {
69 if (! (other instanceof NameValuePair)) {
73 NameValuePair otherPair = (NameValuePair) other;
85 public int compareTo(NameValuePair other) {
86 int result = name.compareTo(other.name);
92 return value.compareTo(other.value);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstMemberRef.java 50 public final boolean equals(Object other) {
51 if ((other == null) || (getClass() != other.getClass())) {
55 CstMemberRef otherRef = (CstMemberRef) other;
74 protected int compareTo0(Constant other) {
75 CstMemberRef otherMember = (CstMemberRef) other;
  /dalvik/dx/src/com/android/dx/rop/annotation/
NameValuePair.java 62 public boolean equals(Object other) {
63 if (! (other instanceof NameValuePair)) {
67 NameValuePair otherPair = (NameValuePair) other;
79 public int compareTo(NameValuePair other) {
80 int result = name.compareTo(other.name);
86 return value.compareTo(other.value);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstMemberRef.java 50 public final boolean equals(Object other) {
51 if ((other == null) || (getClass() != other.getClass())) {
55 CstMemberRef otherRef = (CstMemberRef) other;
74 protected int compareTo0(Constant other) {
75 CstMemberRef otherMember = (CstMemberRef) other;
  /external/clang/test/SemaCXX/
libstdcxx_pair_swap_hack.cpp 7 // The same problem afflicts a bunch of other class templates. Those
32 void swap(CLASS &other) noexcept(noexcept(do_swap(member, other.member)));
36 void swap(CLASS &other) noexcept(noexcept(swap(member, other.member)));
42 // void swap(vector &other) noexcept(noexcept(do_swap(member, other.member)));
66 void swap(CLASS &other) noexcept(noexcept(swap(*this, other))); // expected-error {{too many arguments}} expected-note {{declared here}}
  /external/deqp/framework/common/
tcuResource.hpp 100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {}
101 DirArchive& operator= (const DirArchive& other) { m_path = other.m_path; return *this; }
120 FileResource (const FileResource& other);
121 FileResource& operator= (const FileResource& other);
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
NameValuePair.java 62 public boolean equals(Object other) {
63 if (! (other instanceof NameValuePair)) {
67 NameValuePair otherPair = (NameValuePair) other;
79 public int compareTo(NameValuePair other) {
80 int result = name.compareTo(other.name);
86 return value.compareTo(other.value);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstMemberRef.java 50 public final boolean equals(Object other) {
51 if ((other == null) || (getClass() != other.getClass())) {
55 CstMemberRef otherRef = (CstMemberRef) other;
74 protected int compareTo0(Constant other) {
75 CstMemberRef otherMember = (CstMemberRef) other;
  /external/eigen/Eigen/src/Core/
DiagonalMatrix.h 45 void evalTo(MatrixBase<DenseDerived> &other) const;
47 void addTo(MatrixBase<DenseDerived> &other) const
48 { other.diagonal() += diagonal(); }
50 void subTo(MatrixBase<DenseDerived> &other) const
51 { other.diagonal() -= diagonal(); }
80 operator*(const Scalar& scalar, const DiagonalBase& other)
82 return other.diagonal() * scalar;
87 bool isApprox(const DiagonalBase<OtherDerived>& other, typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision()) const
89 return diagonal().isApprox(other.diagonal(), precision);
92 bool isApprox(const MatrixBase<OtherDerived>& other, typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision()) cons
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/security/
RoleInfo.java 121 public void combine(RoleInfo other)
123 if (other._forbidden)
125 else if (!other._checked) // TODO is this the right way around???
127 else if (other._isAnyRole)
131 for (String r : other._roles)
135 setUserDataConstraint(other._userDataConstraint);

Completed in 950 milliseconds

<<31323334353637383940>>