Home
last modified time | relevance | path

Searched refs:MyType (Results 1 – 10 of 10) sorted by relevance

/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest_list_tests_unittest_.cc79 class MyType { class
81 explicit MyType(const std::string& a_value) : value_(a_value) {} in MyType() function in MyType
90 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo()
94 class ValueParamTest : public testing::TestWithParam<MyType> {
105 testing::Values(MyType("one line"),
106 MyType("two\nlines"),
107MyType("a very\nlooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo…
/external/gtest/test/
Dgtest_list_tests_unittest_.cc79 class MyType { class
81 explicit MyType(const std::string& a_value) : value_(a_value) {} in MyType() function in MyType
90 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo()
94 class ValueParamTest : public testing::TestWithParam<MyType> {
105 testing::Values(MyType("one line"),
106 MyType("two\nlines"),
107MyType("a very\nlooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo…
/external/clang/test/Analysis/
DDynamicTypePropagation.m19 @interface MyType : NSObject <NSCopying> interface
36 @implementation MyType implementation
43 void testReturnType(NSArray<MyType *> *arr) {
47 // MyType instead!
51 void testArgument(NSArray<MyType *> *arr, id element) {
54 // TODO: myFunction currently is not dispatched to MyType. Make it dispatch to
55 // MyType!
Ddynamic_type_check.m29 @class MyType;
39 // Do not warn, since no information is available wether MyType is a sub or
41 MyType *num = obj; // no warning
/external/clang/test/CodeGen/
Ddebug-info-typedef.c5 typedef int MyType; typedef
8 MyType a;
/external/llvm/include/llvm/DebugInfo/PDB/
DIPDBEnumChildren.h21 typedef IPDBEnumChildren<ChildType> MyType; typedef
29 virtual MyType *clone() const = 0;
/external/libcxx/test/libcxx/selftest/
Dtest_macros.pass.cpp43 typedef TEST_DECLTYPE(foo()) MyType; in test_decltype() typedef
44 TEST_STATIC_ASSERT((is_same<MyType, int>::value), "is same"); in test_decltype()
/external/llvm/test/Assembler/
Ddebug-info.ll43 ; CHECK-NEXT: !14 = !DICompositeType(tag: DW_TAG_structure_type, name: "MyType", file: !10, line: 2…
54 !16 = !DICompositeType(tag: DW_TAG_structure_type, name: "MyType", file: !12, line: 2, size: 32, al…
/external/llvm/unittests/IR/
DTypeBuilderTest.cpp169 struct MyType { struct
184 template<bool cross> class TypeBuilder<MyType, cross> {
238 (TypeBuilder<MyType*, false>::get(getGlobalContext()))); in TEST()
/external/llvm/lib/DebugInfo/PDB/
DPDBSymbolTypeFunctionSig.cpp57 MyType *clone() const override { in clone()