Home
last modified time | relevance | path

Searched refs:is_equal (Results 1 – 8 of 8) sorted by relevance

/external/libcxxabi/src/
Dprivate_typeinfo.cpp64 is_equal(const std::type_info* x, const std::type_info* y, bool use_strcmp) in is_equal() function
75 is_equal(const std::type_info* x, const std::type_info* y, bool)
191 return is_equal(this, thrown_type, false); in can_catch()
219 return is_equal(this, thrown_type, false); in can_catch()
231 if (is_equal(this, thrown_type, false)) in can_catch()
284 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
293 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
325 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
350 return is_equal(this, thrown_type, false) || in can_catch()
351 is_equal(thrown_type, &typeid(std::nullptr_t), false); in can_catch()
[all …]
/external/harfbuzz_ng/src/
Dhb-set.cc289 return set->is_equal (other); in hb_set_is_equal()
Dhb-set-private.hh213 inline bool is_equal (const hb_set_t *other) const in is_equal() function
Dhb-ot-shape.cc800 } while (!copy.is_equal (glyphs)); in hb_ot_shape_glyphs_closure()
/external/opencv/cv/src/
Dcvhaar.cpp838 static int is_equal( const void* _r1, const void* _r2, void* ) in is_equal() function
1268 int ncomp = cvSeqPartition( seq, 0, &idx_seq, is_equal, 0 ); in cvHaarDetectObjects()
1428 int ncomp = cvSeqPartition( seq, 0, &idx_seq, is_equal, 0 ); in cvHaarDetectObjects()
/external/opencv/cxcore/src/
Dcxdatastructs.cpp2600 CvCmpFunc is_equal, void* userdata ) in cvSeqPartition() argument
2619 if( !seq || !is_equal ) in cvSeqPartition()
2675 is_equal( node->element, node2->element, userdata )) in cvSeqPartition()
/external/opencv/cxcore/include/
Dcxcore.h1100 CvSeq** labels, CvCmpFunc is_equal, void* userdata );
/external/v8/src/
Dobjects.cc8629 bool is_equal; in Equals() local
8632 is_equal = Equals<uint8_t, uint8_t>(&state_1_, &state_2_, to_check); in Equals()
8634 is_equal = Equals<uint8_t, uint16_t>(&state_1_, &state_2_, to_check); in Equals()
8638 is_equal = Equals<uint16_t, uint8_t>(&state_1_, &state_2_, to_check); in Equals()
8640 is_equal = Equals<uint16_t, uint16_t>(&state_1_, &state_2_, to_check); in Equals()
8644 if (!is_equal) return false; in Equals()