HomeSort by relevance Sort by last modified time
    Searched refs:equal (Results 76 - 100 of 2040) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/intel/common/libmix/mix_common/src/
mixdrmparams.c 53 mixparams_class->equal = (MixParamsEqualFunction)mix_drmparams_equal;
137 * @returns: boolean indicates if instance are equal.
151 // members within this scope equal. chaining up.
153 if (klass->equal)
154 ret = parent_class->equal(first, second);
  /external/llvm/test/MC/AsmParser/
ifc.s 69 .ifnc equal, equal ; .byte 0 ; .else ; .byte 1 ; .endif
  /hardware/qcom/gps/msm8084/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/msm8909/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/msm8909w_3100/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/msm8960/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/msm8994/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/msm8996/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/msm8998/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /hardware/qcom/gps/utils/
linked_list.h 194 equal: Function ptr takes in a list element, and returns
210 bool (*equal)(void* data_0, void* data),
  /packages/apps/Settings/src/com/android/settings/datetime/timezone/
BaseTimeZonePreferenceController.java 40 if (mOnClickListener == null || !Objects.equal(getPreferenceKey(), preference.getKey())) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18595.go 40 panic("interfaces not equal")
51 panic("interfaces not equal")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18595.go 40 panic("interfaces not equal")
51 panic("interfaces not equal")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
util.py 37 def match_set(obj, criteria, equal):
44 equal If set equality should be used. Otherwise
48 if equal:
92 def match_regex_or_set(obj, criteria, equal, regex):
102 equal If set equality should be used. Otherwise
111 return match_set(obj, set(criteria), equal)
  /tools/tradefederation/core/src/com/android/tradefed/result/
TestResult.java 145 return equal(mMetrics, other.mMetrics)
146 && equal(mStackTrace, other.mStackTrace)
147 && equal(mStatus, other.mStatus);
150 private static boolean equal(Object a, Object b) { method in class:TestResult
  /external/proguard/src/proguard/evaluation/value/
TypedReferenceValue.java 149 // If this type is equal to the other type, or if the other type is
205 public int equal(ReferenceValue other) method in class:TypedReferenceValue
207 return other.equal(this);
245 // If the two types are equal, the generalization remains the same, maybe null.
493 public int equal(TypedReferenceValue other) method in class:TypedReferenceValue
508 public int equal(IdentifiedReferenceValue other) method in class:TypedReferenceValue
510 return equal((TypedReferenceValue)other);
523 public int equal(ArrayReferenceValue other) method in class:TypedReferenceValue
525 return equal((TypedReferenceValue)other);
538 public int equal(IdentifiedArrayReferenceValue other method in class:TypedReferenceValue
553 public int equal(DetailedArrayReferenceValue other) method in class:TypedReferenceValue
    [all...]
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java 353 boolean equal = this.targetHost.equals(that.targetHost);
354 equal &=
358 equal &=
364 equal &=
370 if (equal && (this.proxyChain != null)) {
371 for (int i=0; equal && (i<this.proxyChain.length); i++)
372 equal = this.proxyChain[i].equals(that.proxyChain[i]);
375 return equal;
RouteTracker.java 340 boolean equal = this.targetHost.equals(that.targetHost);
341 equal &=
345 equal &=
351 equal &=
358 if (equal && (this.proxyChain != null)) {
359 for (int i=0; equal && (i<this.proxyChain.length); i++)
360 equal = this.proxyChain[i].equals(that.proxyChain[i]);
363 return equal;
  /external/guava/guava/src/com/google/common/collect/
AbstractMapEntry.java 49 return Objects.equal(this.getKey(), that.getKey())
50 && Objects.equal(this.getValue(), that.getValue());
ForwardingMapEntry.java 42 * Objects#equal} to test equality for both keys and values. This may not be
98 return Objects.equal(this.getKey(), that.getKey())
99 && Objects.equal(this.getValue(), that.getValue());
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
InstanceNode.java 51 return super.equals(other) && Objects.equal(instance, other.instance)
52 && Objects.equal(members, other.members);
NodeId.java 76 return Objects.equal(key, other.key) && Objects.equal(nodeType, other.nodeType);
  /external/libcxx/test/libcxx/experimental/containers/sequences/dynarray/dynarray.data/
default.pass.cpp 33 assert ( std::equal ( dyn.begin(), dyn.end(), data ));
42 assert ( std::equal ( dyn.begin(), dyn.end(), data ));
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
push_back_exception_safety.pass.cpp 27 bool equal(const CMyClass &rhs) const function in class:CMyClass
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); }
push_front_exception_safety.pass.cpp 28 bool equal(const CMyClass &rhs) const function in class:CMyClass
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); }

Completed in 348 milliseconds

1 2 34 5 6 7 8 91011>>