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

  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 664 // The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time
668 // GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
673 // GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
683 #define GTEST_COMPILE_ASSERT_(expr, msg) \
687 // Implementation details of GTEST_COMPILE_ASSERT_:
689 // - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1
694 // #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1]
702 // GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
716 // GTEST_COMPILE_ASSERT_(5 > 0, some_message);
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 685 // The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time
689 // GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
694 // GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
704 #define GTEST_COMPILE_ASSERT_(expr, msg) \
708 // Implementation details of GTEST_COMPILE_ASSERT_:
710 // - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1
715 // #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1]
723 // GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
737 // GTEST_COMPILE_ASSERT_(5 > 0, some_message);
    [all...]

Completed in 264 milliseconds