Searched defs:other (Results 226 - 250 of 929) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAssertedService.java102 public boolean equals(Object other) argument
104 return (other instanceof PAssertedServiceHeader) && super.equals(other);
H A DPPreferredService.java103 public boolean equals(Object other) argument
105 return (other instanceof PPreferredServiceHeader) && super.equals(other);
/external/proguard/src/proguard/evaluation/
H A DTracedVariables.java108 public void initialize(TracedVariables other) argument
110 super.initialize(other);
112 producerVariables.initialize(other.producerVariables);
115 public boolean generalize(TracedVariables other, argument
118 boolean variablesChanged = super.generalize(other, clearConflictingOtherVariables);
119 boolean producersChanged = producerVariables.generalize(other.producerVariables, clearConflictingOtherVariables);
120 /* consumerVariables.generalize(other.consumerVariables)*/
133 other.producerVariables.values[index] = null;
169 TracedVariables other = (TracedVariables)object;
172 this.producerVariables.equals(other
[all...]
H A DVariables.java89 * given Variables object. The other object may have fewer values, in which
92 public void initialize(Variables other) argument
94 if (this.size < other.size)
96 throw new IllegalArgumentException("Variable frame is too small ["+this.size+"] compared to other frame ["+other.size+"]");
100 System.arraycopy(other.values, 0, this.values, 0, other.size);
107 * @param clearConflictingOtherVariables specifies whether the other
112 public boolean generalize(Variables other, argument
115 if (this.size != other
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java67 * Returns the generalization of this DoubleValue and the given other
70 public abstract DoubleValue generalize(DoubleValue other); argument
76 public abstract DoubleValue add(DoubleValue other); argument
81 public abstract DoubleValue subtract(DoubleValue other); argument
86 public abstract DoubleValue subtractFrom(DoubleValue other); argument
91 public abstract DoubleValue multiply(DoubleValue other); argument
96 public abstract DoubleValue divide(DoubleValue other); argument
101 public abstract DoubleValue divideOf(DoubleValue other); argument
106 public abstract DoubleValue remainder(DoubleValue other); argument
111 public abstract DoubleValue remainderOf(DoubleValue other); argument
117 compare(DoubleValue other) argument
126 compareReverse(DoubleValue other) argument
138 generalize(SpecificDoubleValue other) argument
147 add(SpecificDoubleValue other) argument
155 subtract(SpecificDoubleValue other) argument
163 subtractFrom(SpecificDoubleValue other) argument
171 multiply(SpecificDoubleValue other) argument
179 divide(SpecificDoubleValue other) argument
188 divideOf(SpecificDoubleValue other) argument
197 remainder(SpecificDoubleValue other) argument
206 remainderOf(SpecificDoubleValue other) argument
216 compare(SpecificDoubleValue other) argument
229 compareReverse(SpecificDoubleValue other) argument
241 generalize(ParticularDoubleValue other) argument
250 add(ParticularDoubleValue other) argument
258 subtract(ParticularDoubleValue other) argument
266 subtractFrom(ParticularDoubleValue other) argument
274 multiply(ParticularDoubleValue other) argument
282 divide(ParticularDoubleValue other) argument
291 divideOf(ParticularDoubleValue other) argument
300 remainder(ParticularDoubleValue other) argument
309 remainderOf(ParticularDoubleValue other) argument
319 compare(ParticularDoubleValue other) argument
332 compareReverse(ParticularDoubleValue other) argument
345 generalize(Value other) argument
[all...]
H A DFloatValue.java67 * Returns the generalization of this FloatValue and the given other
70 public abstract FloatValue generalize(FloatValue other); argument
76 public abstract FloatValue add(FloatValue other); argument
81 public abstract FloatValue subtract(FloatValue other); argument
86 public abstract FloatValue subtractFrom(FloatValue other); argument
91 public abstract FloatValue multiply(FloatValue other); argument
96 public abstract FloatValue divide(FloatValue other); argument
101 public abstract FloatValue divideOf(FloatValue other); argument
106 public abstract FloatValue remainder(FloatValue other); argument
111 public abstract FloatValue remainderOf(FloatValue other); argument
117 compare(FloatValue other) argument
126 compareReverse(FloatValue other) argument
138 generalize(SpecificFloatValue other) argument
147 add(SpecificFloatValue other) argument
155 subtract(SpecificFloatValue other) argument
163 subtractFrom(SpecificFloatValue other) argument
171 multiply(SpecificFloatValue other) argument
179 divide(SpecificFloatValue other) argument
188 divideOf(SpecificFloatValue other) argument
197 remainder(SpecificFloatValue other) argument
206 remainderOf(SpecificFloatValue other) argument
216 compare(SpecificFloatValue other) argument
229 compareReverse(SpecificFloatValue other) argument
241 generalize(ParticularFloatValue other) argument
250 add(ParticularFloatValue other) argument
258 subtract(ParticularFloatValue other) argument
266 subtractFrom(ParticularFloatValue other) argument
274 multiply(ParticularFloatValue other) argument
282 divide(ParticularFloatValue other) argument
291 divideOf(ParticularFloatValue other) argument
300 remainder(ParticularFloatValue other) argument
309 remainderOf(ParticularFloatValue other) argument
319 compare(ParticularFloatValue other) argument
332 compareReverse(ParticularFloatValue other) argument
345 generalize(Value other) argument
[all...]
H A DInstructionOffsetValue.java141 * other InstructionOffsetValue. The values of the other InstructionOffsetValue
144 public final Value generalize(InstructionOffsetValue other) argument
146 // If the values array of either is null, we can return the other one.
150 return other;
153 int[] otherValues = other.values;
169 // If the length of the union array is equal to the length of the other
173 return other;
177 // values array, we can return it. We have to make sure that the other
179 // single other valu
235 generalize(Value other) argument
[all...]
H A DParticularDoubleValue.java75 public DoubleValue generalize(DoubleValue other) argument
77 return other.generalize(this);
80 public DoubleValue add(DoubleValue other) argument
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public DoubleValue subtract(DoubleValue other) argument
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other
94 subtractFrom(DoubleValue other) argument
101 multiply(DoubleValue other) argument
106 divide(DoubleValue other) argument
111 divideOf(DoubleValue other) argument
116 remainder(DoubleValue other) argument
121 remainderOf(DoubleValue other) argument
126 compare(DoubleValue other) argument
135 generalize(ParticularDoubleValue other) argument
143 add(ParticularDoubleValue other) argument
148 subtract(ParticularDoubleValue other) argument
153 subtractFrom(ParticularDoubleValue other) argument
158 multiply(ParticularDoubleValue other) argument
163 divide(ParticularDoubleValue other) argument
168 divideOf(ParticularDoubleValue other) argument
173 remainder(ParticularDoubleValue other) argument
178 remainderOf(ParticularDoubleValue other) argument
183 compare(ParticularDoubleValue other) argument
[all...]
H A DParticularFloatValue.java75 public FloatValue generalize(FloatValue other) argument
77 return other.generalize(this);
80 public FloatValue add(FloatValue other) argument
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public FloatValue subtract(FloatValue other) argument
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other
94 subtractFrom(FloatValue other) argument
101 multiply(FloatValue other) argument
106 divide(FloatValue other) argument
111 divideOf(FloatValue other) argument
116 remainder(FloatValue other) argument
121 remainderOf(FloatValue other) argument
126 compare(FloatValue other) argument
135 generalize(ParticularFloatValue other) argument
143 add(ParticularFloatValue other) argument
148 subtract(ParticularFloatValue other) argument
153 subtractFrom(ParticularFloatValue other) argument
158 multiply(ParticularFloatValue other) argument
163 divide(ParticularFloatValue other) argument
168 divideOf(ParticularFloatValue other) argument
173 remainder(ParticularFloatValue other) argument
178 remainderOf(ParticularFloatValue other) argument
183 compare(ParticularFloatValue other) argument
[all...]
H A DSpecificDoubleValue.java55 public DoubleValue generalize(DoubleValue other) argument
57 return other.generalize(this);
60 public DoubleValue add(DoubleValue other) argument
62 return other.add(this);
65 public DoubleValue subtract(DoubleValue other) argument
67 return other.subtractFrom(this);
70 public DoubleValue subtractFrom(DoubleValue other) argument
72 return other.subtract(this);
75 public DoubleValue multiply(DoubleValue other) argument
77 return other
80 divide(DoubleValue other) argument
85 divideOf(DoubleValue other) argument
90 remainder(DoubleValue other) argument
95 remainderOf(DoubleValue other) argument
100 compare(DoubleValue other) argument
109 generalize(SpecificDoubleValue other) argument
114 add(SpecificDoubleValue other) argument
119 subtract(SpecificDoubleValue other) argument
124 subtractFrom(SpecificDoubleValue other) argument
129 multiply(SpecificDoubleValue other) argument
134 divide(SpecificDoubleValue other) argument
139 divideOf(SpecificDoubleValue other) argument
144 remainder(SpecificDoubleValue other) argument
149 remainderOf(SpecificDoubleValue other) argument
154 compare(SpecificDoubleValue other) argument
[all...]
H A DSpecificFloatValue.java55 public FloatValue generalize(FloatValue other) argument
57 return other.generalize(this);
60 public FloatValue add(FloatValue other) argument
62 return other.add(this);
65 public FloatValue subtract(FloatValue other) argument
67 return other.subtractFrom(this);
70 public FloatValue subtractFrom(FloatValue other) argument
72 return other.subtract(this);
75 public FloatValue multiply(FloatValue other) argument
77 return other
80 divide(FloatValue other) argument
85 divideOf(FloatValue other) argument
90 remainder(FloatValue other) argument
95 remainderOf(FloatValue other) argument
100 compare(FloatValue other) argument
109 generalize(SpecificFloatValue other) argument
114 add(SpecificFloatValue other) argument
119 subtract(SpecificFloatValue other) argument
124 subtractFrom(SpecificFloatValue other) argument
129 multiply(SpecificFloatValue other) argument
134 divide(SpecificFloatValue other) argument
139 divideOf(SpecificFloatValue other) argument
144 remainder(SpecificFloatValue other) argument
149 remainderOf(SpecificFloatValue other) argument
154 compare(SpecificFloatValue other) argument
[all...]
H A DUnknownDoubleValue.java55 public DoubleValue generalize(DoubleValue other) argument
60 public DoubleValue add(DoubleValue other) argument
65 public DoubleValue subtract(DoubleValue other) argument
70 public DoubleValue subtractFrom(DoubleValue other) argument
75 public DoubleValue multiply(DoubleValue other) argument
80 public DoubleValue divide(DoubleValue other) argument
85 public DoubleValue divideOf(DoubleValue other) argument
90 public DoubleValue remainder(DoubleValue other) argument
95 public DoubleValue remainderOf(DoubleValue other) argument
100 public IntegerValue compare(DoubleValue other) argument
[all...]
H A DUnknownFloatValue.java55 public FloatValue generalize(FloatValue other) argument
60 public FloatValue add(FloatValue other) argument
65 public FloatValue subtract(FloatValue other) argument
70 public FloatValue subtractFrom(FloatValue other) argument
75 public FloatValue multiply(FloatValue other) argument
80 public FloatValue divide(FloatValue other) argument
85 public FloatValue divideOf(FloatValue other) argument
90 public FloatValue remainder(FloatValue other) argument
95 public FloatValue remainderOf(FloatValue other) argument
100 public IntegerValue compare(FloatValue other) argument
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistryLite.java13 // in the documentation and/or other materials provided with the
61 * all other combinations not supported
67 * that all the inner messages must also support reflection. On the other hand,
143 ExtensionRegistryLite(ExtensionRegistryLite other) { argument
144 if (other == EMPTY) {
148 Collections.unmodifiableMap(other.extensionsByNumber);
181 final ObjectIntPair other = (ObjectIntPair)obj;
182 return object == other.object && number == other.number;
H A DUnmodifiableLazyStringList.java13 // in the documentation and/or other materials provided with the
187 public void mergeFrom(LazyStringList other) { argument
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java23 * Volumes can be tested for intersection against other volumes, and can be grown to contain a set
24 * of other volumes. The volume itself is stored in object-relative space (in terms of offsets from
55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
H A DInputXY.java89 public void clone(InputXY other) { argument
90 if (other.getPressed()) {
91 press(other.getLastPressedTime(), other.getX(), other.getY());
H A DVector2.java36 public Vector2(Vector2 other) { argument
37 set(other);
40 public final void add(Vector2 other) { argument
41 x += other.x;
42 y += other.y;
50 public final void subtract(Vector2 other) { argument
51 x -= other.x;
52 y -= other.y;
60 public final void multiply(Vector2 other) { argument
61 x *= other
72 set(Vector2 other) argument
82 dot(Vector2 other) argument
94 distance2(Vector2 other) argument
[all...]
/external/skia/include/gpu/
H A DGrTexture.h80 GrDeviceCoordTexture(const GrDeviceCoordTexture& other) { argument
81 *this = other;
89 GrDeviceCoordTexture& operator=(const GrDeviceCoordTexture& other) { argument
90 fTexture.reset(SkSafeRef(other.fTexture.get()));
91 fOffset = other.fOffset;
/external/skia/src/animator/
H A DSkTypedArray.cpp93 void SkDS32Array::swap(SkDS32Array& other) argument
95 SkTSwap(fArray, other.fArray);
97 SkTSwap(fData, other.fData);
99 SkTSwap(fReserve, other.fReserve);
100 SkTSwap(fCount, other.fCount);
/external/skia/src/gpu/
H A DGrStrokeInfo.h45 GrStrokeInfo& operator=(const GrStrokeInfo& other) { argument
46 if (other.isDashed()) {
47 fDashType = other.fDashType;
48 fDashPhase = other.fDashPhase;
49 fIntervals.reset(other.getDashCount());
50 memcpy(fIntervals.get(), other.fIntervals.get(), fIntervals.count() * sizeof(SkScalar));
54 fStroke = other.fStroke;
H A DGrTraceMarker.cpp18 GrTraceMarkerSet::GrTraceMarkerSet(const GrTraceMarkerSet& other) { argument
19 this->addSet(other);
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
H A DBasicMarker.java113 public boolean contains(Marker other) { argument
114 if (other == null) {
118 if (this.equals(other)) {
125 if (ref.contains(other)) {
168 final Marker other = (Marker) obj;
169 return name.equals(other.getName());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DArrayProto.java13 * in the documentation and/or other materials provided with the
99 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) { argument
100 if (other instanceof ArrayProto) {
102 TypeUtils.isPrimitiveType(((ArrayProto)other).getElementType())) {
103 if (dimensions == ((ArrayProto)other).dimensions &&
104 getElementType().equals(((ArrayProto)other).getElementType())) {
110 if (dimensions == ((ArrayProto)other).dimensions) {
112 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType);
118 return other;
123 int dimensions = Math.min(this.dimensions, ((ArrayProto)other)
[all...]
/external/v8/src/
H A Ddiy-fp.h23 // this = this - other.
25 // must be bigger than the significand of other.
27 void Subtract(const DiyFp& other) { argument
28 DCHECK(e_ == other.e_);
29 DCHECK(f_ >= other.f_);
30 f_ -= other.f_;
35 // than other. The result will not be normalized.
43 // this = this * other.
44 void Multiply(const DiyFp& other);

Completed in 451 milliseconds

1234567891011>>