Home | History | Annotate | Download | only in tests

Lines Matching refs:strs

65   WTF::Vector<WTF::String> strs(4);
66 // strs[0] is null.
67 // strs[1] is empty.
68 strs[1] = "";
69 strs[2] = kHelloWorld;
70 strs[3] = WTF::String::fromUTF8(kUTF8HelloWorld);
72 return strs;
110 WTFArray<WTF::String> strs = ConstructStringArray();
111 auto cloned_strs = strs.Clone();
127 EXPECT_TRUE(strs.Equals(strs2));
131 WTF::Vector<WTF::String> strs = ConstructStringArray();
132 auto cloned_strs = strs;
148 EXPECT_EQ(strs, strs2);
152 WTFArray<WTF::String> strs = ConstructStringArray();
156 mojo::internal::PrepareToSerialize<Array<mojo::String>>(strs, &context);
162 mojo::internal::Serialize<Array<mojo::String>>(strs, &buf, &data,
253 WTF::Vector<WTF::String> strs = ConstructStringArray();
255 for (size_t i = 0; i < strs.size(); ++i) {
262 ptr->EchoString(strs[i],
263 base::Bind(&ExpectString, strs[i], loop.QuitClosure()));