Home
last modified time | relevance | path

Searched refs:is_special (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/lldb/examples/python/
Ddiagnose_nsstring.py119 is_special = (
125 …has_explicit_length else "no", "yes" if is_unicode else "no", "yes" if is_special else "no", "yes"…
128 if not has_null and has_explicit_length and not is_special:
151 elif is_inline and has_explicit_length and not is_unicode and not is_special and not is_mutable:
162 elif is_special:
/external/rust/crates/url/src/
Dparser.rs165 pub fn is_special(&self) -> bool { in is_special() method
810 && (SchemeType::from(base_url.scheme()).is_special() || !input.is_empty()) in parse_relative()
895 '\\' if scheme_type.is_special() => break, in parse_userinfo()
908 if c == '/' || c == '?' || c == '#' || (scheme_type.is_special() && c == '\\') { in parse_userinfo()
965 if scheme_type.is_special() { in parse_host_and_port()
1000 '\\' if scheme_type.is_special() => break, in parse_host()
1032 if !scheme_type.is_special() { in parse_host()
1148 if scheme_type.is_special() { in parse_path_start()
1203 && scheme_type.is_special() => in parse_path()
1217 if scheme_type.is_special() { in parse_path()
[all …]
Dlib.rs630 if SchemeType::from(self.scheme()).is_special() { in check_invariants()
1796 if host.is_empty() && SchemeType::from(self.scheme()).is_special() { in set_host()
1814 if SchemeType::from(self.scheme()).is_special() { in set_host()
1821 if scheme_type.is_special() { in set_host()
2229 if (new_scheme_type.is_special() && !old_scheme_type.is_special()) || in set_scheme()
2231 (!new_scheme_type.is_special() && old_scheme_type.is_special()) || in set_scheme()
2239 if !remaining.is_empty() || (!self.has_host() && new_scheme_type.is_special()) { in set_scheme()
Dpath_segments.rs49 if SchemeType::from(url.scheme()).is_special() { in new()
Dquirks.rs238 || (SchemeType::from(url.scheme()).is_special() in set_pathname()
/external/mesa3d/src/panfrost/midgard/
Dmidgard_ra.c833 bool is_special = spill_class != REG_CLASS_WORK; in mir_spill_register() local
837 unsigned spill_slot = !is_special ? (*spill_count)++ : 0; in mir_spill_register()
843 if (!is_special || is_special_w) { in mir_spill_register()
876 if (!is_special) in mir_spill_register()
916 if (is_special) { in mir_spill_register()
941 if (!is_special) in mir_spill_register()
Dmidgard_emit.c638 bool is_special = is_discard || is_tilebuf_wait; in emit_branch() local
703 if (is_conditional || is_special) { in emit_branch()
/external/autotest/server/lib/
Dstatus_history.py217 def is_special(self): member in _JobEvent
327 def is_special(self): member in _SpecialTaskEvent
405 def is_special(self): member in _TestJobEvent
Dsuite_report.py167 entry['is_special'] = hqe.is_special
/external/rust/crates/serde_json/src/lexical/
Dparse.rs30 if b.is_special() { in parse_concise_float()
Dnum.rs261 fn is_special(self) -> bool { in is_special() method
268 self.is_special() && (self.to_bits() & Self::MANTISSA_MASK) == Self::Unsigned::ZERO in is_inf()
Dalgorithm.rs187 if b.is_special() { in fallback_path()
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dbugprone-forwarding-reference-overload.rst29 template<typename T, typename X = enable_if_t<is_special<T>,void>>
/external/autotest/site_utils/
Dlab_inventory.py1054 if not task.is_special:
/external/rust/crates/hashbrown/src/raw/
Dmod.rs127 fn is_special(ctrl: u8) -> bool { in is_special() function
134 debug_assert!(is_special(ctrl)); in special_is_empty()