Home
last modified time | relevance | path

Searched refs:haystack (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/static_core/patches/zydis/
D0001-Simplify-Zydis-build.patch6576 + * Searches for the first occurrence of `needle` in the given `haystack` starting from the
6579 + * @param haystack The string to search in.
6589 +ZYCORE_EXPORT ZyanStatus ZyanStringLPos(const ZyanStringView* haystack,
6593 + * Searches for the first occurrence of `needle` in the given `haystack` starting from the
6596 + * @param haystack The string to search in.
6609 +ZYCORE_EXPORT ZyanStatus ZyanStringLPosEx(const ZyanStringView* haystack,
6614 + * `haystack` starting from the left.
6616 + * @param haystack The string to search in.
6626 +ZYCORE_EXPORT ZyanStatus ZyanStringLPosI(const ZyanStringView* haystack,
6631 + * `haystack` starting from the left.
[all …]
/arkcompiler/ets_runtime/ecmascript/
Djs_runtime_options.h1455 static bool StartsWith(const std::string &haystack, const std::string &needle) in StartsWith() argument
1457 return std::equal(needle.begin(), needle.end(), haystack.begin()); in StartsWith()
/arkcompiler/runtime_core/libpandabase/utils/
Dpandargs.h1017 static bool StartsWith(const std::string &haystack, const std::string &needle) in StartsWith() argument
1019 return std::equal(needle.begin(), needle.end(), haystack.begin()); in StartsWith()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dpandargs.h1021 static bool StartsWith(const std::string &haystack, const std::string &needle) in StartsWith() argument
1023 return std::equal(needle.begin(), needle.end(), haystack.begin()); in StartsWith()