OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestTable
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/tests/
OpenTypeVerticalDataTest.cpp
38
struct
TestTable
: OpenType::TableBase {
50
RefPtr<SharedBuffer> buffer = SharedBuffer::create(sizeof(
TestTable
));
51
const
TestTable
* table = OpenType::validateTable<
TestTable
>(buffer);
54
buffer = SharedBuffer::create(sizeof(
TestTable
) - 1);
55
table = OpenType::validateTable<
TestTable
>(buffer);
58
buffer = SharedBuffer::create(sizeof(
TestTable
) + 1);
59
table = OpenType::validateTable<
TestTable
>(buffer);
65
RefPtr<SharedBuffer> buffer = SharedBuffer::create(sizeof(
TestTable
));
66
const
TestTable
* table = OpenType::validateTable<TestTable>(buffer)
[
all
...]
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
test_interface.cc
68
class
TestTable
{
71
static
TestTable
* Get() {
72
static
TestTable
table;
82
NACL_DISALLOW_COPY_AND_ASSIGN(
TestTable
);
84
TestTable
() {}
90
void
TestTable
::RunTest(nacl::string test_name) {
104
TestTable
::Get()->AddTest(test_name, test_func);
108
TestTable
::Get()->RunTest(test_name);
Completed in 103 milliseconds