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

<<21222324252627282930>>

  /external/dexmaker/src/dx/java/com/android/dx/util/
IntSet.java 47 * Merges {@code other} into this set, so this set becomes the
50 * @param other {@code non-null;} other set to merge with.
52 void merge(IntSet other);
  /external/eigen/Eigen/src/Eigen2Support/
Lazy.h 54 EvalBeforeAssigningBit>& other)
56 other._expression().derived().addTo(derived()); return derived();
64 EvalBeforeAssigningBit>& other)
66 other._expression().derived().subTo(derived()); return derived();
TriangularSolver.h 28 Flagged<ExpressionType,Added,Removed>::solveTriangular(const MatrixBase<OtherDerived>& other) const
30 return m_matrix.template triangularView<Added>().solve(other.derived());
35 void Flagged<ExpressionType,Added,Removed>::solveTriangularInPlace(const MatrixBase<OtherDerived>& other) const
37 m_matrix.template triangularView<Added>().solveInPlace(other.derived());
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h 41 SkylineStorage(const SkylineStorage& other)
53 *this = other;
56 SkylineStorage & operator=(const SkylineStorage& other) {
57 resize(other.diagSize(), other.m_upperProfileSize, other.m_lowerProfileSize, other.upperSize(), other.lowerSize());
58 memcpy(m_diag, other.m_diag, m_diagSize * sizeof (Scalar));
59 memcpy(m_upper, other.m_upper, other.upperSize() * sizeof (Scalar))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Pair.java 40 public boolean equals(Object other) {
41 if (other == this) {
44 if (!(other instanceof Pair)) {
47 Pair<?, ?> rhs = (Pair<?, ?>) other;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Pair.java 38 public boolean equals(Object other) {
39 if (other == this) {
42 if (!(other instanceof Pair)) {
45 Pair<?, ?> rhs = (Pair<?, ?>) other;
  /external/libchrome/base/
pending_task.cc 36 bool PendingTask::operator<(const PendingTask& other) const {
41 if (delayed_run_time < other.delayed_run_time)
44 if (delayed_run_time > other.delayed_run_time)
49 return (sequence_num - other.sequence_num) > 0;
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/
discard.pass.cpp 42 other() function
70 other<unsigned int>();
71 other<unsigned long>();
72 other<unsigned long long>();
  /external/libcxx/test/std/utilities/memory/pointer.traits/
rebind.pass.cpp 27 static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>::other, double*>::value), "");
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
GridPoint3.java 82 * @param other The other point
83 * @return the squared distance between this point and the other point.
85 public float dst2 (GridPoint3 other) {
86 int xd = other.x - x;
87 int yd = other.y - y;
88 int zd = other.z - z;
94 * @param x The x-coordinate of the other point
95 * @param y The y-coordinate of the other point
96 * @param z The z-coordinate of the other poin
    [all...]
  /external/libweave/third_party/chromium/base/
location.h 33 Location(const Location& other);
36 // No need to use |function_name_| since the other two fields uniquely
38 bool operator==(const Location& other) const {
39 return line_number_ == other.line_number_ &&
40 file_name_ == other.file_name_;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
State.java 35 State(State other) {
36 state = other.state;
47 void set(State other) {
48 state = other.state;
  /external/nist-sip/java/gov/nist/javax/sip/header/
MaxForwards.java 110 public boolean equals(Object other) {
111 if (this==other) return true;
112 if (other instanceof MaxForwardsHeader) {
113 final MaxForwardsHeader o = (MaxForwardsHeader) other;
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417ECModulusPoly.h 22 CBC_PDF417ECModulusPoly* add(CBC_PDF417ECModulusPoly* other, int32_t& e);
23 CBC_PDF417ECModulusPoly* subtract(CBC_PDF417ECModulusPoly* other, int32_t& e);
24 CBC_PDF417ECModulusPoly* multiply(CBC_PDF417ECModulusPoly* other, int32_t& e);
30 CFX_PtrArray* divide(CBC_PDF417ECModulusPoly* other, int32_t& e);
  /external/replicaisland/src/com/replica/replicaisland/
InventoryComponent.java 75 public void add(UpdateRecord other) {
76 rubyCount += other.rubyCount;
77 coinCount += other.coinCount;
78 diaryCount += other.diaryCount;
  /external/selinux/sepolgen/src/sepolgen/
util.py 127 def _compare(self, other, method):
130 def __eq__(self, other):
131 return self._compare(other, lambda a, b: a == b)
133 def __lt__(self, other):
134 return self._compare(other, lambda a, b: a < b)
136 def __le__(self, other):
137 return self._compare(other, lambda a, b: a <= b)
139 def __ge__(self, other):
140 return self._compare(other, lambda a, b: a >= b)
142 def __gt__(self, other)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseFieldReference.java 13 * in the documentation and/or other materials provided with the
50 FieldReference other = (FieldReference)o; local
51 return getDefiningClass().equals(other.getDefiningClass()) &&
52 getName().equals(other.getName()) &&
53 getType().equals(other.getType());
  /external/v8/src/
diy-fp.cc 12 void DiyFp::Multiply(const DiyFp& other) {
20 uint64_t c = other.f_ >> 32;
21 uint64_t d = other.f_ & kM32;
31 e_ += other.e_ + 64;
  /frameworks/av/camera/ndk/impl/
ACameraManager.h 94 bool operator == (const Callback& other) const {
95 return (mAvailable == other.mAvailable &&
96 mUnavailable == other.mUnavailable &&
97 mContext == other.mContext);
99 bool operator != (const Callback& other) const {
100 return !(*this == other);
102 bool operator < (const Callback& other) const {
103 if (*this == other) return false;
104 if (mContext != other.mContext) return mContext < other.mContext
    [all...]
  /frameworks/base/core/java/android/security/net/config/
Pin.java 66 Pin other = (Pin) obj; local
67 if (other.hashCode() != mHashCode) {
70 if (!Arrays.equals(digest, other.digest)) {
73 if (!digestAlgorithm.equals(other.digestAlgorithm)) {
  /frameworks/base/core/java/android/transition/
TransitionValues.java 31 * be unique to avoid clobbering values stored by other transitions,
62 public boolean equals(Object other) {
63 if (other instanceof TransitionValues) {
64 if (view == ((TransitionValues) other).view) {
65 if (values.equals(((TransitionValues) other).values)) {
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
MultiSelectManager_SelectionTest.java 74 Selection other = new Selection(); local
76 other.add(ids[i]);
78 assertEquals(selection.size(), other.size());
86 Selection other = new Selection(); local
87 other.add(ids[0]);
88 other.add(ids[1]);
89 other.add(ids[2]);
90 assertEquals(selection, other);
91 assertEquals(selection.hashCode(), other.hashCode());
95 Selection other = new Selection() local
102 Selection other = new Selection(); local
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
Dependency.java 26 // will crash the app unless "Other" has a non-null value
29 public Dependency(Expr dependant, Expr other) {
31 mOther = other;
37 public Dependency(Expr dependant, Expr other, Expr condition, boolean expectedOutput) {
39 mOther = other;
  /frameworks/support/transition/base/android/support/transition/
TransitionValues.java 29 * be unique to avoid clobbering values stored by other transitions,
55 public boolean equals(Object other) {
56 if (other instanceof TransitionValues) {
57 if (view == ((TransitionValues) other).view) {
58 if (values.equals(((TransitionValues) other).values)) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/
discard.pass.cpp 42 other() function
70 other<unsigned int>();
71 other<unsigned long>();
72 other<unsigned long long>();

Completed in 706 milliseconds

<<21222324252627282930>>