Searched refs:other (Results 1 - 25 of 3814) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/browser/android/
H A Dsynchronous_compositor.cc13 const SynchronousCompositorMemoryPolicy& other) const {
14 return bytes_limit == other.bytes_limit &&
15 num_resources_limit == other.num_resources_limit;
19 const SynchronousCompositorMemoryPolicy& other) const {
20 return !(*this == other);
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DMacro.cpp14 bool Macro::equals(const Macro &other) const
16 return (type == other.type) &&
17 (name == other.name) &&
18 (parameters == other.parameters) &&
19 (replacements == other.replacements);
/external/proguard/src/proguard/evaluation/value/
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 DIntegerValue.java82 * Returns the generalization of this IntegerValue and the given other
85 public abstract IntegerValue generalize(IntegerValue other); argument
90 public abstract IntegerValue add(IntegerValue other); argument
95 public abstract IntegerValue subtract(IntegerValue other); argument
100 public abstract IntegerValue subtractFrom(IntegerValue other); argument
105 public abstract IntegerValue multiply(IntegerValue other) argument
111 public abstract IntegerValue divide(IntegerValue other) argument
117 public abstract IntegerValue divideOf(IntegerValue other) argument
124 public abstract IntegerValue remainder(IntegerValue other) argument
131 public abstract IntegerValue remainderOf(IntegerValue other) argument
137 shiftLeft(IntegerValue other) argument
142 shiftRight(IntegerValue other) argument
148 unsignedShiftRight(IntegerValue other) argument
153 shiftLeftOf(IntegerValue other) argument
158 shiftRightOf(IntegerValue other) argument
164 unsignedShiftRightOf(IntegerValue other) argument
169 shiftLeftOf(LongValue other) argument
174 shiftRightOf(LongValue other) argument
179 unsignedShiftRightOf(LongValue other) argument
185 and(IntegerValue other) argument
191 or(IntegerValue other) argument
197 xor(IntegerValue other) argument
203 equal(IntegerValue other) argument
209 lessThan(IntegerValue other) argument
216 lessThanOrEqual(IntegerValue other) argument
225 notEqual(IntegerValue other) argument
234 greaterThan(IntegerValue other) argument
243 greaterThanOrEqual(IntegerValue other) argument
255 generalize(UnknownIntegerValue other) argument
264 add(UnknownIntegerValue other) argument
272 subtract(UnknownIntegerValue other) argument
280 subtractFrom(UnknownIntegerValue other) argument
288 multiply(UnknownIntegerValue other) argument
297 divide(UnknownIntegerValue other) argument
306 divideOf(UnknownIntegerValue other) argument
315 remainder(UnknownIntegerValue other) argument
324 remainderOf(UnknownIntegerValue other) argument
332 shiftLeft(UnknownIntegerValue other) argument
340 shiftRight(UnknownIntegerValue other) argument
349 unsignedShiftRight(UnknownIntegerValue other) argument
357 shiftLeftOf(UnknownIntegerValue other) argument
365 shiftRightOf(UnknownIntegerValue other) argument
374 unsignedShiftRightOf(UnknownIntegerValue other) argument
382 shiftLeftOf(UnknownLongValue other) argument
390 shiftRightOf(UnknownLongValue other) argument
399 unsignedShiftRightOf(UnknownLongValue other) argument
408 and(UnknownIntegerValue other) argument
417 or(UnknownIntegerValue other) argument
426 xor(UnknownIntegerValue other) argument
435 equal(UnknownIntegerValue other) argument
445 lessThan(UnknownIntegerValue other) argument
455 lessThanOrEqual(UnknownIntegerValue other) argument
467 notEqual(UnknownIntegerValue other) argument
477 greaterThan(UnknownIntegerValue other) argument
487 greaterThanOrEqual(UnknownIntegerValue other) argument
499 generalize(SpecificIntegerValue other) argument
508 add(SpecificIntegerValue other) argument
516 subtract(SpecificIntegerValue other) argument
524 subtractFrom(SpecificIntegerValue other) argument
532 multiply(SpecificIntegerValue other) argument
541 divide(SpecificIntegerValue other) argument
550 divideOf(SpecificIntegerValue other) argument
559 remainder(SpecificIntegerValue other) argument
568 remainderOf(SpecificIntegerValue other) argument
576 shiftLeft(SpecificIntegerValue other) argument
584 shiftRight(SpecificIntegerValue other) argument
593 unsignedShiftRight(SpecificIntegerValue other) argument
601 shiftLeftOf(SpecificIntegerValue other) argument
609 shiftRightOf(SpecificIntegerValue other) argument
618 unsignedShiftRightOf(SpecificIntegerValue other) argument
626 shiftLeftOf(SpecificLongValue other) argument
634 shiftRightOf(SpecificLongValue other) argument
643 unsignedShiftRightOf(SpecificLongValue other) argument
652 and(SpecificIntegerValue other) argument
661 or(SpecificIntegerValue other) argument
670 xor(SpecificIntegerValue other) argument
679 equal(SpecificIntegerValue other) argument
689 lessThan(SpecificIntegerValue other) argument
699 lessThanOrEqual(SpecificIntegerValue other) argument
711 notEqual(SpecificIntegerValue other) argument
721 greaterThan(SpecificIntegerValue other) argument
731 greaterThanOrEqual(SpecificIntegerValue other) argument
743 generalize(ParticularIntegerValue other) argument
752 add(ParticularIntegerValue other) argument
760 subtract(ParticularIntegerValue other) argument
768 subtractFrom(ParticularIntegerValue other) argument
776 multiply(ParticularIntegerValue other) argument
785 divide(ParticularIntegerValue other) argument
794 divideOf(ParticularIntegerValue other) argument
803 remainder(ParticularIntegerValue other) argument
812 remainderOf(ParticularIntegerValue other) argument
820 shiftLeft(ParticularIntegerValue other) argument
828 shiftRight(ParticularIntegerValue other) argument
837 unsignedShiftRight(ParticularIntegerValue other) argument
845 shiftLeftOf(ParticularIntegerValue other) argument
853 shiftRightOf(ParticularIntegerValue other) argument
862 unsignedShiftRightOf(ParticularIntegerValue other) argument
870 shiftLeftOf(ParticularLongValue other) argument
878 shiftRightOf(ParticularLongValue other) argument
887 unsignedShiftRightOf(ParticularLongValue other) argument
896 and(ParticularIntegerValue other) argument
905 or(ParticularIntegerValue other) argument
914 xor(ParticularIntegerValue other) argument
923 equal(ParticularIntegerValue other) argument
933 lessThan(ParticularIntegerValue other) argument
943 lessThanOrEqual(ParticularIntegerValue other) argument
955 notEqual(ParticularIntegerValue other) argument
965 greaterThan(ParticularIntegerValue other) argument
975 greaterThanOrEqual(ParticularIntegerValue other) argument
988 generalize(Value other) argument
[all...]
H A DSpecificLongValue.java55 public LongValue generalize(LongValue other) argument
57 return other.generalize(this);
60 public LongValue add(LongValue other) argument
62 return other.add(this);
65 public LongValue subtract(LongValue other) argument
67 return other.subtractFrom(this);
70 public LongValue subtractFrom(LongValue other) argument
72 return other.subtract(this);
75 public LongValue multiply(LongValue other) argument
77 return other
80 divide(LongValue other) argument
86 divideOf(LongValue other) argument
92 remainder(LongValue other) argument
98 remainderOf(LongValue other) argument
104 shiftLeft(IntegerValue other) argument
109 shiftRight(IntegerValue other) argument
114 unsignedShiftRight(IntegerValue other) argument
119 and(LongValue other) argument
124 or(LongValue other) argument
129 xor(LongValue other) argument
134 compare(LongValue other) argument
143 generalize(SpecificLongValue other) argument
148 add(SpecificLongValue other) argument
153 subtract(SpecificLongValue other) argument
160 subtractFrom(SpecificLongValue other) argument
167 multiply(SpecificLongValue other) argument
172 divide(SpecificLongValue other) argument
178 divideOf(SpecificLongValue other) argument
184 remainder(SpecificLongValue other) argument
190 remainderOf(SpecificLongValue other) argument
196 shiftLeft(SpecificLongValue other) argument
201 shiftRight(SpecificLongValue other) argument
206 unsignedShiftRight(SpecificLongValue other) argument
211 and(SpecificLongValue other) argument
218 or(SpecificLongValue other) argument
225 xor(SpecificLongValue other) argument
232 compare(SpecificLongValue other) argument
[all...]
H A DSpecificIntegerValue.java70 public IntegerValue generalize(IntegerValue other) argument
72 return other.generalize(this);
75 public IntegerValue add(IntegerValue other) argument
77 return other.add(this);
80 public IntegerValue subtract(IntegerValue other) argument
82 return other.subtractFrom(this);
85 public IntegerValue subtractFrom(IntegerValue other) argument
87 return other.subtract(this);
90 public IntegerValue multiply(IntegerValue other) argument
92 return other
95 divide(IntegerValue other) argument
101 divideOf(IntegerValue other) argument
107 remainder(IntegerValue other) argument
113 remainderOf(IntegerValue other) argument
119 shiftLeft(IntegerValue other) argument
124 shiftLeftOf(IntegerValue other) argument
129 shiftRight(IntegerValue other) argument
134 shiftRightOf(IntegerValue other) argument
139 unsignedShiftRight(IntegerValue other) argument
144 unsignedShiftRightOf(IntegerValue other) argument
149 shiftLeftOf(LongValue other) argument
154 shiftRightOf(LongValue other) argument
159 unsignedShiftRightOf(LongValue other) argument
164 and(IntegerValue other) argument
169 or(IntegerValue other) argument
174 xor(IntegerValue other) argument
179 equal(IntegerValue other) argument
184 lessThan(IntegerValue other) argument
189 lessThanOrEqual(IntegerValue other) argument
198 generalize(SpecificIntegerValue other) argument
203 add(SpecificIntegerValue other) argument
208 subtract(SpecificIntegerValue other) argument
215 subtractFrom(SpecificIntegerValue other) argument
222 multiply(SpecificIntegerValue other) argument
227 divide(SpecificIntegerValue other) argument
233 divideOf(SpecificIntegerValue other) argument
239 remainder(SpecificIntegerValue other) argument
245 remainderOf(SpecificIntegerValue other) argument
251 shiftLeft(SpecificIntegerValue other) argument
256 shiftRight(SpecificIntegerValue other) argument
261 unsignedShiftRight(SpecificIntegerValue other) argument
266 shiftLeftOf(SpecificIntegerValue other) argument
271 shiftRightOf(SpecificIntegerValue other) argument
276 unsignedShiftRightOf(SpecificIntegerValue other) argument
281 shiftLeftOf(SpecificLongValue other) argument
286 shiftRightOf(SpecificLongValue other) argument
291 unsignedShiftRightOf(SpecificLongValue other) argument
296 and(SpecificIntegerValue other) argument
303 or(SpecificIntegerValue other) argument
310 xor(SpecificIntegerValue other) argument
317 equal(SpecificIntegerValue other) argument
322 lessThan(SpecificIntegerValue other) argument
327 lessThanOrEqual(SpecificIntegerValue other) argument
[all...]
H A DParticularLongValue.java75 public LongValue generalize(LongValue other) argument
77 return other.generalize(this);
80 public LongValue add(LongValue other) argument
82 return other.add(this);
85 public LongValue subtract(LongValue other) argument
87 return other.subtractFrom(this);
90 public LongValue subtractFrom(LongValue other) argument
92 return other.subtract(this);
95 public LongValue multiply(LongValue other) argument
97 return other
100 divide(LongValue other) argument
106 divideOf(LongValue other) argument
112 remainder(LongValue other) argument
118 remainderOf(LongValue other) argument
124 shiftLeft(IntegerValue other) argument
129 shiftRight(IntegerValue other) argument
134 unsignedShiftRight(IntegerValue other) argument
139 and(LongValue other) argument
144 or(LongValue other) argument
149 xor(LongValue other) argument
154 compare(LongValue other) argument
163 generalize(ParticularLongValue other) argument
168 add(ParticularLongValue other) argument
173 subtract(ParticularLongValue other) argument
178 subtractFrom(ParticularLongValue other) argument
183 multiply(ParticularLongValue other) argument
188 divide(ParticularLongValue other) argument
194 divideOf(ParticularLongValue other) argument
200 remainder(ParticularLongValue other) argument
206 remainderOf(ParticularLongValue other) argument
212 shiftLeft(ParticularIntegerValue other) argument
217 shiftRight(ParticularIntegerValue other) argument
222 unsignedShiftRight(ParticularIntegerValue other) argument
227 and(ParticularLongValue other) argument
232 or(ParticularLongValue other) argument
237 xor(ParticularLongValue other) argument
[all...]
H A DParticularIntegerValue.java102 public IntegerValue generalize(IntegerValue other) argument
104 return other.generalize(this);
107 public IntegerValue add(IntegerValue other) argument
109 return other.add(this);
112 public IntegerValue subtract(IntegerValue other) argument
114 return other.subtractFrom(this);
117 public IntegerValue subtractFrom(IntegerValue other) argument
119 return other.subtract(this);
122 public IntegerValue multiply(IntegerValue other) argument
124 return other
127 divide(IntegerValue other) argument
133 divideOf(IntegerValue other) argument
139 remainder(IntegerValue other) argument
145 remainderOf(IntegerValue other) argument
151 shiftLeft(IntegerValue other) argument
156 shiftLeftOf(IntegerValue other) argument
161 shiftRight(IntegerValue other) argument
166 shiftRightOf(IntegerValue other) argument
171 unsignedShiftRight(IntegerValue other) argument
176 unsignedShiftRightOf(IntegerValue other) argument
181 shiftLeftOf(LongValue other) argument
186 shiftRightOf(LongValue other) argument
191 unsignedShiftRightOf(LongValue other) argument
196 and(IntegerValue other) argument
201 or(IntegerValue other) argument
206 xor(IntegerValue other) argument
211 equal(IntegerValue other) argument
216 lessThan(IntegerValue other) argument
221 lessThanOrEqual(IntegerValue other) argument
230 generalize(ParticularIntegerValue other) argument
235 add(ParticularIntegerValue other) argument
240 subtract(ParticularIntegerValue other) argument
245 subtractFrom(ParticularIntegerValue other) argument
250 multiply(ParticularIntegerValue other) argument
255 divide(ParticularIntegerValue other) argument
261 divideOf(ParticularIntegerValue other) argument
267 remainder(ParticularIntegerValue other) argument
273 remainderOf(ParticularIntegerValue other) argument
279 shiftLeft(ParticularIntegerValue other) argument
284 shiftRight(ParticularIntegerValue other) argument
289 unsignedShiftRight(ParticularIntegerValue other) argument
294 shiftLeftOf(ParticularIntegerValue other) argument
299 shiftRightOf(ParticularIntegerValue other) argument
304 unsignedShiftRightOf(ParticularIntegerValue other) argument
309 shiftLeftOf(ParticularLongValue other) argument
314 shiftRightOf(ParticularLongValue other) argument
319 unsignedShiftRightOf(ParticularLongValue other) argument
324 and(ParticularIntegerValue other) argument
329 or(ParticularIntegerValue other) argument
334 xor(ParticularIntegerValue other) argument
339 equal(ParticularIntegerValue other) argument
344 lessThan(ParticularIntegerValue other) argument
349 lessThanOrEqual(ParticularIntegerValue 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 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 DLongValue.java68 * Returns the generalization of this LongValue and the given other
71 public LongValue generalize(LongValue other) argument
73 return other.generalize(this);
79 public LongValue add(LongValue other) argument
81 return other.add(this);
87 public LongValue subtract(LongValue other) argument
89 return other.subtractFrom(this);
95 public LongValue subtractFrom(LongValue other) argument
97 return other.subtract(this);
103 public LongValue multiply(LongValue other) argument
112 divide(LongValue other) argument
121 divideOf(LongValue other) argument
131 remainder(LongValue other) argument
141 remainderOf(LongValue other) argument
150 shiftLeft(IntegerValue other) argument
158 shiftRight(IntegerValue other) argument
167 unsignedShiftRight(IntegerValue other) argument
176 and(LongValue other) argument
185 or(LongValue other) argument
194 xor(LongValue other) argument
203 compare(LongValue other) argument
215 compareReverse(LongValue other) argument
227 generalize(SpecificLongValue other) argument
236 add(SpecificLongValue other) argument
244 subtract(SpecificLongValue other) argument
252 subtractFrom(SpecificLongValue other) argument
260 multiply(SpecificLongValue other) argument
269 divide(SpecificLongValue other) argument
278 divideOf(SpecificLongValue other) argument
287 remainder(SpecificLongValue other) argument
296 remainderOf(SpecificLongValue other) argument
304 shiftLeft(SpecificLongValue other) argument
312 shiftRight(SpecificLongValue other) argument
321 unsignedShiftRight(SpecificLongValue other) argument
330 and(SpecificLongValue other) argument
339 or(SpecificLongValue other) argument
348 xor(SpecificLongValue other) argument
358 compare(SpecificLongValue other) argument
371 compareReverse(SpecificLongValue other) argument
383 generalize(ParticularLongValue other) argument
392 add(ParticularLongValue other) argument
400 subtract(ParticularLongValue other) argument
408 subtractFrom(ParticularLongValue other) argument
416 multiply(ParticularLongValue other) argument
425 divide(ParticularLongValue other) argument
434 divideOf(ParticularLongValue other) argument
443 remainder(ParticularLongValue other) argument
452 remainderOf(ParticularLongValue other) argument
460 shiftLeft(ParticularIntegerValue other) argument
468 shiftRight(ParticularIntegerValue other) argument
477 unsignedShiftRight(ParticularIntegerValue other) argument
486 and(ParticularLongValue other) argument
495 or(ParticularLongValue other) argument
504 xor(ParticularLongValue other) argument
514 compare(ParticularLongValue other) argument
527 compareReverse(ParticularLongValue other) argument
540 generalize(Value other) argument
[all...]
/external/chromium_org/content/public/browser/
H A Dnavigation_controller.cc28 const NavigationController::LoadURLParams& other)
29 : url(other.url),
30 load_type(other.load_type),
31 transition_type(other.transition_type),
32 frame_tree_node_id(other.frame_tree_node_id),
33 referrer(other.referrer),
34 extra_headers(other.extra_headers),
35 is_renderer_initiated(other.is_renderer_initiated),
36 override_user_agent(other.override_user_agent),
37 transferred_global_request_id(other
27 LoadURLParams( const NavigationController::LoadURLParams& other) argument
46 operator =( const NavigationController::LoadURLParams& other) argument
[all...]
H A Dglobal_request_id.h26 bool operator<(const GlobalRequestID& other) const {
27 if (child_id == other.child_id)
28 return request_id < other.request_id;
29 return child_id < other.child_id;
31 bool operator==(const GlobalRequestID& other) const {
32 return child_id == other.child_id &&
33 request_id == other.request_id;
35 bool operator!=(const GlobalRequestID& other) const {
36 return child_id != other.child_id ||
37 request_id != other
[all...]
/external/chromium_org/tools/idl_parser/test_parser/
H A Denum_ppapi.idl36 * EnumItem(other)
43 /* BUILD EnumItem(other) */
44 other
52 other,
59 * EnumItem(other)
66 /* BUILD EnumItem(other) */
67 other
75 other
83 other,
91 ,other,
[all...]
/external/chromium_org/cc/layers/
H A Dlayer_position_constraint.cc16 const LayerPositionConstraint& other) const {
17 if (!is_fixed_position_ && !other.is_fixed_position_)
19 return is_fixed_position_ == other.is_fixed_position_ &&
20 is_fixed_to_right_edge_ == other.is_fixed_to_right_edge_ &&
21 is_fixed_to_bottom_edge_ == other.is_fixed_to_bottom_edge_;
25 const LayerPositionConstraint& other) const {
26 return !(*this == other);
/external/chromium_org/chrome/common/importer/
H A Dimported_bookmark_entry.cc14 const ImportedBookmarkEntry& other) const {
15 return (in_toolbar == other.in_toolbar &&
16 is_folder == other.is_folder &&
17 url == other.url &&
18 path == other.path &&
19 title == other.title &&
20 creation_time == other.creation_time);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextInputInfo.cpp12 * in the documentation and/or other materials provided with the
36 bool WebTextInputInfo::equals(const WebTextInputInfo& other) const
38 return type == other.type
39 && value == other.value
40 && selectionStart == other.selectionStart
41 && selectionEnd == other.selectionEnd
42 && compositionStart == other.compositionStart
43 && compositionEnd == other.compositionEnd;
/external/chromium_org/ui/base/ime/
H A Dinfolist_entry.cc13 bool InfolistEntry::operator==(const InfolistEntry& other) const {
14 return title == other.title && body == other.body &&
15 highlighted == other.highlighted;
18 bool InfolistEntry::operator!=(const InfolistEntry& other) const {
19 return !(*this == other);
/external/chromium_org/components/policy/core/common/
H A Dpolicy_namespace.cc16 PolicyNamespace::PolicyNamespace(const PolicyNamespace& other) argument
17 : domain(other.domain),
18 component_id(other.component_id) {}
22 PolicyNamespace& PolicyNamespace::operator=(const PolicyNamespace& other) { argument
23 domain = other.domain;
24 component_id = other.component_id;
28 bool PolicyNamespace::operator<(const PolicyNamespace& other) const {
29 return domain < other.domain ||
30 (domain == other.domain && component_id < other
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DShaderVars.cpp32 ShaderVariable::ShaderVariable(const ShaderVariable &other) argument
33 : type(other.type),
34 precision(other.precision),
35 name(other.name),
36 mappedName(other.mappedName),
37 arraySize(other.arraySize),
38 staticUse(other.staticUse),
39 fields(other.fields),
40 structName(other.structName)
43 ShaderVariable &ShaderVariable::operator=(const ShaderVariable &other) argument
62 Uniform(const Uniform &other) argument
66 operator =(const Uniform &other) argument
79 Attribute(const Attribute &other) argument
84 operator =(const Attribute &other) argument
98 InterfaceBlockField(const InterfaceBlockField &other) argument
103 operator =(const InterfaceBlockField &other) argument
118 Varying(const Varying &other) argument
124 operator =(const Varying &other) argument
142 InterfaceBlock(const InterfaceBlock &other) argument
153 operator =(const InterfaceBlock &other) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Ddtintrv.cpp32 DateInterval::DateInterval(const DateInterval& other) argument
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) { argument
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other
[all...]
/external/icu/icu4c/source/common/
H A Ddtintrv.cpp32 DateInterval::DateInterval(const DateInterval& other) argument
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) { argument
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other
[all...]

Completed in 862 milliseconds

1234567891011>>