OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:kteststring2
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/base/win/
scoped_bstr_unittest.cc
14
static const wchar_t
kTestString2
[] = L"456789";
16
size_t test2_len = arraysize(
kTestString2
) - 1;
60
b2.SetByteLen(lstrlen(b2) * sizeof(
kTestString2
[0]));
63
EXPECT_TRUE(b1.Allocate(
kTestString2
) != NULL);
65
b1.SetByteLen((test2_len - 1) * sizeof(
kTestString2
[0]));
scoped_variant_unittest.cc
14
static const wchar_t
kTestString2
[] = L"Also used to create BSTRs";
82
var_bstr.Set(
kTestString2
);
88
EXPECT_EQ(0, lstrcmp(V_BSTR(&tmp),
kTestString2
));
92
EXPECT_EQ(0, lstrcmpW(V_BSTR(&var),
kTestString2
));
97
EXPECT_EQ(0, lstrcmpW(V_BSTR(&var_bstr),
kTestString2
));
/external/chromium_org/third_party/libjingle/source/talk/base/
optionsfile_unittest.cc
38
static const std::string
kTestString2
= "different string";
82
EXPECT_TRUE(store_->SetStringValue(kTestOptionB,
kTestString2
));
88
EXPECT_EQ(
kTestString2
, out2);
173
EXPECT_TRUE(store_->SetStringValue(kEmptyString,
kTestString2
));
177
EXPECT_EQ(
kTestString2
, out);
/external/chromium_org/third_party/webrtc/base/
optionsfile_unittest.cc
21
static const std::string
kTestString2
= "different string";
65
EXPECT_TRUE(store_->SetStringValue(kTestOptionB,
kTestString2
));
71
EXPECT_EQ(
kTestString2
, out2);
156
EXPECT_TRUE(store_->SetStringValue(kEmptyString,
kTestString2
));
160
EXPECT_EQ(
kTestString2
, out);
Completed in 352 milliseconds