Home
last modified time | relevance | path

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

/external/googletest/googletest/test/
Dgoogletest-list-tests-unittest_.cc78 class MyType { class
80 explicit MyType(const std::string& a_value) : value_(a_value) {} in MyType() function in MyType
89 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo()
93 class ValueParamTest : public testing::TestWithParam<MyType> {
104 testing::Values(MyType("one line"),
105 MyType("two\nlines"),
106MyType("a very\nlooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo…
Dgtest_unittest.cc559 struct MyType {}; struct
560 inline bool operator==(MyType const&, MyType const&) { return true; } in operator ==()
568 EXPECT_EQ(ConvertToAll{}, MyType{}); in TEST()
569 EXPECT_EQ(ConvertToAllButNoPointers{}, MyType{}); in TEST()
/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/libcxx/test/libcxx/algorithms/
Ddebug_less.pass.cpp27 struct MyType { struct
29 explicit MyType(int xvalue = 0) : value(xvalue) {} in MyType() function
33 bool operator<(MyType<ID1> const& LHS, MyType<ID2> const& RHS) { in operator <()
85 typedef MyType<0> MT0;
86 typedef MyType<1> MT1;
/external/libcxx/test/support/test.support/
Dtest_demangle.pass.cpp14 struct MyType {}; struct
24 {typeid(MyType).name(), "MyType"}, in main()
25 {typeid(ArgumentListID<int, MyType>).name(), "ArgumentListID<int, MyType>"} in main()
/external/clang/test/CodeGen/
Ddebug-info-typedef.c5 typedef int MyType; typedef
8 MyType a;
/external/llvm/include/llvm/DebugInfo/PDB/
DIPDBEnumChildren.h22 typedef IPDBEnumChildren<ChildType> MyType; typedef
30 virtual MyType *clone() const = 0;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
DIPDBEnumChildren.h22 using MyType = IPDBEnumChildren<ChildType>; variable
30 virtual MyType *clone() const = 0;
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dformat_types.h542 static const SWR_TYPE MyType = type;
553 static const SWR_TYPE MyType = SWR_TYPE_UINT;
564 static const SWR_TYPE MyType = SWR_TYPE_SINT;
575 static const SWR_TYPE MyType = SWR_TYPE_UINT;
586 static const SWR_TYPE MyType = SWR_TYPE_SINT;
597 static const SWR_TYPE MyType = SWR_TYPE_UINT;
608 static const SWR_TYPE MyType = SWR_TYPE_SINT;
619 static const SWR_TYPE MyType = SWR_TYPE_UNORM;
630 static const SWR_TYPE MyType = SWR_TYPE_UNORM;
641 static const SWR_TYPE MyType = SWR_TYPE_UNORM;
[all …]
/external/googletest/googlemock/docs/
DFrequentlyAskedQuestions.md35 class MyWonderfulMatcher : public MatcherInterface<MyType> {
38 virtual bool Matches(MyType value) const {
52 class MyWonderfulMatcher : public MatcherInterface<MyType> {
55 virtual bool MatchAndExplain(MyType value,
73 class MyWonderfulMatcher : public MatcherInterface<MyType> {
76 virtual bool Matches(MyType value) const {
81 virtual void ExplainMatchResultTo(MyType value,
99 class MyWonderfulMatcher : public MatcherInterface<MyType> {
102 virtual bool MatchAndExplain(MyType value,
121 bool Matches(MyType value) const {
[all …]
/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/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DTypeBuilderTest.cpp202 struct MyType { struct
217 template<bool cross> class TypeBuilder<MyType, cross> {
271 (TypeBuilder<MyType *, false>::get(Context))); in TEST()
/external/swiftshader/third_party/LLVM/unittests/Support/
DTypeBuilderTest.cpp170 class MyType { class
185 template<bool cross> class TypeBuilder<MyType, cross> {
239 (TypeBuilder<MyType*, false>::get(getGlobalContext()))); in TEST()
/external/llvm/unittests/IR/
DTypeBuilderTest.cpp202 struct MyType { struct
217 template<bool cross> class TypeBuilder<MyType, cross> {
271 (TypeBuilder<MyType *, false>::get(Context))); in TEST()
/external/swiftshader/third_party/llvm-7.0/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/lib/DebugInfo/PDB/
DPDBSymbolTypeFunctionSig.cpp58 MyType *clone() const override { in clone()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
DPDBSymbolTypeFunctionSig.cpp59 MyType *clone() const override { in clone()
/external/catch2/docs/
Dtostring.md64 CATCH_TRANSLATE_EXCEPTION( MyType& ex ) {
/external/python/cpython2/Lib/test/
Dtest_argparse.py1588 class MyType(TestCase): class in TestTypeUserDefined
1599 Sig('-x', type=MyType),
1600 Sig('spam', type=MyType),
1604 ('a -x b', NS(x=MyType('b'), spam=MyType('a'))),
1605 ('-xf g', NS(x=MyType('f'), spam=MyType('g'))),
/external/python/cpython3/Lib/test/
Dtest_argparse.py1644 class MyType(TestCase): class in TestTypeUserDefined
1653 Sig('-x', type=MyType),
1654 Sig('spam', type=MyType),
1658 ('a -x b', NS(x=MyType('b'), spam=MyType('a'))),
1659 ('-xf g', NS(x=MyType('f'), spam=MyType('g'))),
Dclinic.test127 j: object(subclass_of="&MyType")
163 …e, &PyDict_Type, &f, &PyUnicode_Type, &g, &PyBytes_Type, &h, &PyByteArray_Type, &i, &MyType, &j)) {
/external/python/cpython3/Doc/extending/
Dnewtypes.rst609 if (!PyObject_TypeCheck(some_object, &MyType)) {
/external/python/cpython2/Doc/extending/
Dnewtypes.rst1567 if (! PyObject_TypeCheck(some_object, &MyType)) {