Home
last modified time | relevance | path

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

/external/executorch/third-party/
Dflatcc_defs.bzl96 "flatcc/external/hash/str_set.c",
151 "flatcc/external/hash/str_set.h",
178 "flatcc/external/hash/str_set.c",
234 "flatcc/external/hash/str_set.h",
/external/cronet/stable/third_party/boringssl/src/pki/
Dtest_helpers.cc61 std::string StrSetToString(const std::set<std::string> &str_set) { in StrSetToString() argument
63 for (const auto &s : str_set) { in StrSetToString()
/external/cronet/tot/third_party/boringssl/src/pki/
Dtest_helpers.cc61 std::string StrSetToString(const std::set<std::string> &str_set) { in StrSetToString() argument
63 for (const auto &s : str_set) { in StrSetToString()
/external/pdfium/core/fxcrt/
Dbytestring_unittest.cpp257 std::set<ByteString, std::less<>> str_set; in TEST() local
258 bool inserted = str_set.insert(ByteString("hello")).second; in TEST()
260 EXPECT_TRUE(pdfium::Contains(str_set, ByteString("hello"))); in TEST()
261 EXPECT_TRUE(pdfium::Contains(str_set, ByteStringView("hello"))); in TEST()
262 EXPECT_TRUE(pdfium::Contains(str_set, "hello")); in TEST()
263 EXPECT_FALSE(pdfium::Contains(str_set, ByteString("goodbye"))); in TEST()
264 EXPECT_FALSE(pdfium::Contains(str_set, ByteStringView("goodbye"))); in TEST()
265 EXPECT_FALSE(pdfium::Contains(str_set, "goodbye")); in TEST()