Home
last modified time | relevance | path

Searched refs:is_real (Results 1 – 6 of 6) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-map.hh61 bool is_real () const { return key != kINVALID && value != vINVALID; } in is_real() function
136 if (old_items[i].is_real ()) in resize()
155 return items[i].is_real () && items[i] == key ? items[i].value : vINVALID; in get()
195 | hb_filter (&item_t::is_real)
201 | hb_filter (&item_t::is_real)
208 | hb_filter (&item_t::is_real)
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
DStaticSymmetry.h104 constexpr static bool is_real = value && flags_cmp_ == ConjugationFlag;
109 (is_real ? GlobalRealFlag : 0) |
/external/rust/crates/proc-macro2/src/
Dwrapper.rs376 pub fn is_real(&self) -> bool { in is_real() method
378 SourceFile::Compiler(a) => a.is_real(), in is_real()
379 SourceFile::Fallback(a) => a.is_real(), in is_real()
Dlib.rs312 pub fn is_real(&self) -> bool { in is_real() method
313 self.inner.is_real() in is_real()
Dfallback.rs272 pub fn is_real(&self) -> bool { in is_real() method
282 .field("is_real", &self.is_real()) in fmt()
/external/rust/crates/proc-macro2/tests/
Dtest.rs264 assert!(!source_file.is_real()); in default_span()