HomeSort by relevance Sort by last modified time
    Searched defs:TestInfo (Results 1 - 13 of 13) sorted by null

  /libcore/dalvik/src/main/java/dalvik/annotation/
TestInfo.java 32 public @interface TestInfo {
  /external/webkit/WebKit/gtk/tests/
testhittestresult.c 30 } TestInfo;
36 TestInfo* info;
39 TestInfo*
42 TestInfo* info;
44 info = g_slice_new(TestInfo);
52 test_info_destroy(TestInfo* info)
55 g_slice_free(TestInfo, info);
63 fixture->info = (TestInfo*)data;
79 TestInfo* info = (TestInfo*)data
    [all...]
testkeyevents.c 31 } TestInfo;
37 TestInfo* info;
40 TestInfo*
43 TestInfo* info;
45 info = g_slice_new(TestInfo);
53 test_info_destroy(TestInfo* info)
56 g_slice_free(TestInfo, info);
130 fixture->info = (TestInfo*)data;
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
run_chromium_webkit_tests.py 89 class TestInfo:
407 """Returns the appropriate TestInfo object for the file. Mostly this
411 return TestInfo(self._port, test_file,
413 return TestInfo(self._port, test_file, self._options.time_out_ms)
425 The Queue of lists of TestInfo objects.
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 318 // A TestInfo object stores the following information about a test:
326 // The constructor of TestInfo registers itself with the UnitTest
329 class TestInfo {
331 // Destructs a TestInfo object. This function is not virtual, so
332 // don't inherit from TestInfo.
333 ~TestInfo();
335 // Creates a TestInfo object and registers it with the UnitTest
349 static TestInfo* MakeAndRegisterInstance(
398 // Constructs a TestInfo object.
399 TestInfo(const char* test_case_name, const char* name
    [all...]
gtest.cc 434 virtual void OnTestStart(const TestInfo*) {}
437 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
  /external/gtest/include/gtest/
gtest.h 350 // A TestInfo object stores the following information about a test:
358 // The constructor of TestInfo registers itself with the UnitTest
361 class TestInfo {
363 // Destructs a TestInfo object. This function is not virtual, so
364 // don't inherit from TestInfo.
365 ~TestInfo();
405 friend TestInfo* internal::MakeAndRegisterTestInfo(
421 // Constructs a TestInfo object. The newly constructed instance assumes
423 TestInfo(const char* test_case_name, const char* name,
431 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
    [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 478 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
499 linked_ptr<TestInfo> test_info = *test_it;
535 struct TestInfo {
536 TestInfo(const char* test_case_base_name,
547 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 487 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
508 linked_ptr<TestInfo> test_info = *test_it;
544 struct TestInfo {
545 TestInfo(const char* test_case_base_name,
556 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
  /external/protobuf/gtest/include/gtest/
gtest.h 451 friend class TestInfo;
517 // A TestInfo object stores the following information about a test:
525 // The constructor of TestInfo registers itself with the UnitTest
528 class TestInfo {
530 // Destructs a TestInfo object. This function is not virtual, so
531 // don't inherit from TestInfo.
532 ~TestInfo();
575 friend TestInfo* internal::MakeAndRegisterTestInfo(
594 // Constructs a TestInfo object. The newly constructed instance assumes
596 TestInfo(const char* test_case_name, const char* name
    [all...]
  /external/gtest/src/
gtest.cc 499 virtual void OnTestStart(const TestInfo*) {}
502 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
  /external/protobuf/gtest/src/
gtest.cc     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewTestProjectCreationPage.java 116 private final TestInfo mInfo = new TestInfo();
176 public class TestInfo {
258 * Returns a {@link TestInfo} structure that collects all externally visible information
261 public TestInfo getTestInfo() {
    [all...]

Completed in 212 milliseconds