Home
last modified time | relevance | path

Searched refs:has_prefix (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/asmjs/
Dasm-scanner.cc278 bool has_prefix = false; in ConsumeNumber() local
284 ((ch == '-' || ch == '+') && !has_prefix && in ConsumeNumber()
292 has_prefix = true; in ConsumeNumber()
/third_party/node/deps/v8/src/wasm/
Dfunction-body-decoder.cc198 bool has_prefix = WasmOpcodes::IsPrefixOpcode(opcode); in PrintRawWasmCode() local
199 if (has_prefix) { in PrintRawWasmCode()
217 if (has_prefix) { in PrintRawWasmCode()
/third_party/libphonenumber/cpp/src/phonenumbers/
Dstringutil.cc79 const bool has_prefix = in.compare(0, prefix.length(), prefix) == 0; in TryStripPrefixString() local
80 out->assign(has_prefix ? in.substr(prefix.length()) : in); in TryStripPrefixString()
82 return has_prefix; in TryStripPrefixString()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-subset-cff-common.hh401 bool has_prefix () const { return has_prefix_; } in has_prefix() function
923 if (str.has_prefix () && str.is_hint_dropped ()) in encode_str()
/third_party/rust/crates/regex/src/
Ddfa.rs685 debug_assert!(self.has_prefix()); in exec_at()
1554 fn has_prefix(&self) -> bool { in has_prefix() method
1566 if self.has_prefix() { in start_ptr()
/third_party/rust/crates/aho-corasick/
DDESIGN.md110 fn has_prefix(trie: &Trie, haystack: &[u8]) -> bool {
165 longer just a trie) is not that much different from the `has_prefix` code
/third_party/python/Lib/test/
Dtest_os.py2556 has_prefix = lambda p: p.startswith( function
2558 if has_prefix(left):
2560 if has_prefix(right):