HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 1 - 25 of 5809) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/536-checker-needs-access-check/src/other/
InaccessibleClass.java 17 package other; package
  /art/test/536-checker-needs-access-check/src2/other/
InaccessibleClass.java 17 package other; package
  /art/test/537-checker-inline-and-unverified/src/other/
InaccessibleClass.java 17 package other; package
  /art/test/537-checker-inline-and-unverified/src2/other/
InaccessibleClass.java 17 package other; package
  /art/test/075-verification-error/src/other/
InaccessibleMethod.java 17 package other; package
InaccessibleClass.java 17 package other; package
  /art/test/075-verification-error/src2/other/
InaccessibleMethod.java 17 package other; package
InaccessibleClass.java 17 package other; package
  /art/test/601-method-access/src/other/
ProtectedClass.java 17 package other; package
PublicClass.java 17 package other; package
19 // Class that makes the ProtectedClass sub-classable by classes outside of package other.
  /frameworks/av/camera/ndk/ndk_vendor/impl/
ACaptureRequestVendor.h 22 bool operator == (const ACameraOutputTarget& other) const {
23 return mWindow == other.mWindow;
25 bool operator != (const ACameraOutputTarget& other) const {
26 return mWindow != other.mWindow;
28 bool operator < (const ACameraOutputTarget& other) const {
29 return mWindow < other.mWindow;
31 bool operator > (const ACameraOutputTarget& other) const {
32 return mWindow > other.mWindow;
  /external/proguard/src/proguard/evaluation/value/
SpecificDoubleValue.java 55 public DoubleValue generalize(DoubleValue other)
57 return other.generalize(this);
60 public DoubleValue add(DoubleValue other)
62 return other.add(this);
65 public DoubleValue subtract(DoubleValue other)
67 return other.subtractFrom(this);
70 public DoubleValue subtractFrom(DoubleValue other)
72 return other.subtract(this);
75 public DoubleValue multiply(DoubleValue other)
77 return other.multiply(this)
    [all...]
SpecificFloatValue.java 55 public FloatValue generalize(FloatValue other)
57 return other.generalize(this);
60 public FloatValue add(FloatValue other)
62 return other.add(this);
65 public FloatValue subtract(FloatValue other)
67 return other.subtractFrom(this);
70 public FloatValue subtractFrom(FloatValue other)
72 return other.subtract(this);
75 public FloatValue multiply(FloatValue other)
77 return other.multiply(this)
    [all...]
IntegerValue.java 82 * Returns the generalization of this IntegerValue and the given other
85 public abstract IntegerValue generalize(IntegerValue other);
90 public abstract IntegerValue add(IntegerValue other);
95 public abstract IntegerValue subtract(IntegerValue other);
100 public abstract IntegerValue subtractFrom(IntegerValue other);
105 public abstract IntegerValue multiply(IntegerValue other)
111 public abstract IntegerValue divide(IntegerValue other)
117 public abstract IntegerValue divideOf(IntegerValue other)
124 public abstract IntegerValue remainder(IntegerValue other)
131 public abstract IntegerValue remainderOf(IntegerValue other)
    [all...]
SpecificLongValue.java 55 public LongValue generalize(LongValue other)
57 return other.generalize(this);
60 public LongValue add(LongValue other)
62 return other.add(this);
65 public LongValue subtract(LongValue other)
67 return other.subtractFrom(this);
70 public LongValue subtractFrom(LongValue other)
72 return other.subtract(this);
75 public LongValue multiply(LongValue other)
77 return other.multiply(this)
    [all...]
SpecificIntegerValue.java 70 public IntegerValue generalize(IntegerValue other)
72 return other.generalize(this);
75 public IntegerValue add(IntegerValue other)
77 return other.add(this);
80 public IntegerValue subtract(IntegerValue other)
82 return other.subtractFrom(this);
85 public IntegerValue subtractFrom(IntegerValue other)
87 return other.subtract(this);
90 public IntegerValue multiply(IntegerValue other)
92 return other.multiply(this)
    [all...]
ParticularLongValue.java 75 public LongValue generalize(LongValue other)
77 return other.generalize(this);
80 public LongValue add(LongValue other)
82 return other.add(this);
85 public LongValue subtract(LongValue other)
87 return other.subtractFrom(this);
90 public LongValue subtractFrom(LongValue other)
92 return other.subtract(this);
95 public LongValue multiply(LongValue other)
97 return other.multiply(this)
    [all...]
ParticularIntegerValue.java 102 public IntegerValue generalize(IntegerValue other)
104 return other.generalize(this);
107 public IntegerValue add(IntegerValue other)
109 return other.add(this);
112 public IntegerValue subtract(IntegerValue other)
114 return other.subtractFrom(this);
117 public IntegerValue subtractFrom(IntegerValue other)
119 return other.subtract(this);
122 public IntegerValue multiply(IntegerValue other)
124 return other.multiply(this)
    [all...]
ParticularDoubleValue.java 75 public DoubleValue generalize(DoubleValue other)
77 return other.generalize(this);
80 public DoubleValue add(DoubleValue other)
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public DoubleValue subtract(DoubleValue other)
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(this)
    [all...]
ParticularFloatValue.java 75 public FloatValue generalize(FloatValue other)
77 return other.generalize(this);
80 public FloatValue add(FloatValue other)
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public FloatValue subtract(FloatValue other)
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(this)
    [all...]
DoubleValue.java 67 * Returns the generalization of this DoubleValue and the given other
70 public abstract DoubleValue generalize(DoubleValue other);
76 public abstract DoubleValue add(DoubleValue other);
81 public abstract DoubleValue subtract(DoubleValue other);
86 public abstract DoubleValue subtractFrom(DoubleValue other);
91 public abstract DoubleValue multiply(DoubleValue other);
96 public abstract DoubleValue divide(DoubleValue other);
101 public abstract DoubleValue divideOf(DoubleValue other);
106 public abstract DoubleValue remainder(DoubleValue other);
111 public abstract DoubleValue remainderOf(DoubleValue other);
    [all...]
FloatValue.java 67 * Returns the generalization of this FloatValue and the given other
70 public abstract FloatValue generalize(FloatValue other);
76 public abstract FloatValue add(FloatValue other);
81 public abstract FloatValue subtract(FloatValue other);
86 public abstract FloatValue subtractFrom(FloatValue other);
91 public abstract FloatValue multiply(FloatValue other);
96 public abstract FloatValue divide(FloatValue other);
101 public abstract FloatValue divideOf(FloatValue other);
106 public abstract FloatValue remainder(FloatValue other);
111 public abstract FloatValue remainderOf(FloatValue other);
    [all...]
  /external/libchrome/base/task_scheduler/
sequence_sort_key.h 25 bool operator<(const SequenceSortKey& other) const;
26 bool operator>(const SequenceSortKey& other) const { return other < *this; }
28 bool operator==(const SequenceSortKey& other) const {
29 return priority_ == other.priority_ &&
30 next_task_sequenced_time_ == other.next_task_sequenced_time_;
32 bool operator!=(const SequenceSortKey& other) const {
33 return !(other == *this);
  /cts/tools/dasm/src/java_cup/
parse_action.java 6 * Objects of this base class will default to ERROR, while the other two
55 public boolean equals(parse_action other)
58 return other != null && other.kind() == ERROR;
64 public boolean equals(Object other)
66 if (other instanceof parse_action)
67 return equals((parse_action)other);
  /external/icu/icu4c/source/common/
dtintrv.cpp 34 DateInterval::DateInterval(const DateInterval& other)
35 : UObject(other) {
36 *this = other;
41 DateInterval::operator=(const DateInterval& other) {
42 if ( this != &other ) {
43 fromDate = other.fromDate;
44 toDate = other.toDate;
57 DateInterval::operator==(const DateInterval& other) const {
58 return ( fromDate == other.fromDate && toDate == other.toDate )
    [all...]

Completed in 1359 milliseconds

1 2 3 4 5 6 7 8 91011>>