Home
last modified time | relevance | path

Searched refs:is_equal (Results 1 – 11 of 11) 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()
233 if (is_equal(this, thrown_type, false)) in can_catch()
288 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
297 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
329 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
354 return is_equal(this, thrown_type, false) || in can_catch()
355 is_equal(thrown_type, &typeid(std::nullptr_t), false); in can_catch()
[all …]
/external/libchrome/base/threading/
Dplatform_thread.h82 bool is_equal(const PlatformThreadHandle& other) const { in is_equal() function
/external/harfbuzz_ng/src/
Dhb-set.cc289 return set->is_equal (other); in hb_set_is_equal()
Dhb-set-private.hh223 inline bool is_equal (const hb_set_t *other) const in is_equal() function
Dhb-ot-shape.cc869 } 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/opencv3/modules/core/src/
Ddatastructs.cpp2326 CvCmpFunc is_equal, void* userdata ) in cvSeqPartition() argument
2341 if( !seq || !is_equal ) in cvSeqPartition()
2397 is_equal( node->element, node2->element, userdata )) in cvSeqPartition()
/external/opencv/cxcore/include/
Dcxcore.h1100 CvSeq** labels, CvCmpFunc is_equal, void* userdata );
/external/opencv3/modules/core/include/opencv2/core/
Dcore_c.h1721 CvSeq** labels, CvCmpFunc is_equal, void* userdata );
/external/v8/src/
Dobjects.cc11795 bool is_equal; in Equals() local
11798 is_equal = Equals<uint8_t, uint8_t>(&state_1_, &state_2_, to_check); in Equals()
11800 is_equal = Equals<uint8_t, uint16_t>(&state_1_, &state_2_, to_check); in Equals()
11804 is_equal = Equals<uint16_t, uint8_t>(&state_1_, &state_2_, to_check); in Equals()
11806 is_equal = Equals<uint16_t, uint16_t>(&state_1_, &state_2_, to_check); in Equals()
11810 if (!is_equal) return false; in Equals()