Home
last modified time | relevance | path

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

/third_party/skia/tests/
DDiscardableMemoryTest.cpp17 constexpr char kTestString[] = "HELLO, WORLD!"; variable
18 constexpr size_t kTestStringLength = sizeof(kTestString);
33 memcpy(ptr, kTestString, sizeof(kTestString)); in test_dm()
47 REPORTER_ASSERT(reporter, 0 == memcmp(ptr, kTestString, kTestStringLength)); in test_dm()
/third_party/node/test/parallel/
Dtest-worker.js6 const kTestString = 'Hello, world!'; constant
11 assert.strictEqual(message, kTestString);
16 parentPort.postMessage(kTestString);
Dtest-worker.mjs5 const kTestString = 'Hello, world!'; constant
10 assert.strictEqual(message, kTestString);
15 parentPort.postMessage(kTestString);
/third_party/lzma/CPP/7zip/UI/Console/
DExtractCallbackConsole.cpp194 static const char * const kTestString = "T"; variable
340 case NArchive::NExtract::NAskMode::kTest: s = kTestString; break; in PrepareOperation()