Searched refs:M1 (Results 1 - 25 of 103) sorted by relevance

12345

/external/clang/test/Preprocessor/
H A Dannotate_in_macro_arg.c2 #define M1() // expected-note{{macro 'M1' defined here}} macro
4 M1( // expected-error{{unterminated function-like macro invocation}}
6 #if M1() // expected-error{{expected value in expression}}
H A Dmacro_rescan.c3 #define M1(a) (a+1) macro
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
10 // CHECK: {{^}}int ei_2 = (M1)(17);{{$}}
H A Dmacro_paste_simple.c9 #define M1(A) A macro
11 B: M1(M2(##))
H A Dpp-record.c25 #define M1 c macro
28 FM2(M1, M2);
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-macro.h4 #undef M1 macro
5 #define M1 NewValue1 macro
H A Ddwarfdump-macro.cc1 #define M1 Value1 macro
/external/clang/test/PCH/
H A Dmacro-redef.c11 #define M1 0 // expected-note {{previous}} macro
12 #define M1 1 // expected-warning {{redefined}} macro
25 int x = M1; // expected-note {{previous}}
/external/eigen/doc/snippets/
H A DTutorial_ReshapeMat2Mat.cpp1 MatrixXf M1(2,6); // Column-major storage
2 M1 << 1, 2, 3, 4, 5, 6,
5 Map<MatrixXf> M2(M1.data(), 6,2);
H A DTutorial_ReshapeMat2Vec.cpp1 MatrixXf M1(3,3); // Column-major storage
2 M1 << 1, 2, 3,
6 Map<RowVectorXf> v1(M1.data(), M1.size());
9 Matrix<float,Dynamic,Dynamic,RowMajor> M2(M1);
H A DTutorial_SlicingCol.cpp1 MatrixXf M1 = MatrixXf::Random(3,8); variable
2 cout << "Column major input:" << endl << M1 << "\n"; variable
3 Map<MatrixXf,0,OuterStride<> > M2(M1.data(), M1.rows(), (M1.cols()+2)/3, OuterStride<>(M1.outerStride()*3));
7 RowMajorMatrixXf M3(M1);
/external/clang/test/CoverageMapping/
H A Dmacroception.c4 #define M1 M2 macro
11 int main() M1
32 void func3() M1
46 void func4() M1 M11
/external/clang/test/CoverageMapping/Inputs/
H A Dmacros.h7 #define M1(a, ...) helper2(a, ##__VA_ARGS__); macro
13 #define M2(a, ...) M1(a, helper1, ##__VA_ARGS__);
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
H A Dtypes.pass.cpp47 using M1 = std::mutex;
48 using T = std::scoped_lock<M1>;
49 static_assert(std::is_same<T::mutex_type, M1>::value, "");
52 using M1 = std::recursive_mutex;
53 using T = std::scoped_lock<M1>;
54 static_assert(std::is_same<T::mutex_type, M1>::value, "");
57 using M1 = std::mutex;
59 using T = std::scoped_lock<M1, M2>;
63 using M1 = std::mutex;
65 using T = std::scoped_lock<M1, M
[all...]
/external/clang/test/Driver/Inputs/
H A Dgen-response.c2 #define M1 M M M M M M M M M M macro
3 #define M2 M1 M1 M1 M1 M1 M1 M1 M1 M1 M
[all...]
/external/libcxx/test/std/containers/associative/multimap/
H A Dscary.pass.cpp20 typedef std::map<int, int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/std/containers/associative/multiset/
H A Dscary.pass.cpp20 typedef std::set<int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/std/containers/unord/unord.multimap/
H A Dscary.pass.cpp20 typedef std::unordered_map<int, int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/std/containers/unord/unord.multiset/
H A Dscary.pass.cpp20 typedef std::unordered_set<int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
H A Dis_equal.pass.cpp45 memory_resource const& M1 = R1; local
51 assert(M1.is_equal(M2) == false);
55 assert(M2.is_equal(M1) == false);
62 memory_resource const& M1 = R1; local
68 assert(M1.is_equal(M2) == false);
72 assert(M2.is_equal(M1) == false);
79 memory_resource const& M1 = R1; local
85 assert(M1.is_equal(M2) == true);
89 assert(M2.is_equal(M1) == true);
/external/clang/unittests/Driver/
H A DMultilibTest.cpp54 Multilib M1, M2; local
55 M1.flag("+foo");
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same";
61 Multilib M1, M2; local
62 M1.flag("+foo");
64 ASSERT_FALSE(M1 == M2) << "Multilibs with conflicting flags are not the same";
65 ASSERT_FALSE(M2 == M1)
70 Multilib M1, M2; local
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different";
76 Multilib M1, M local
146 Multilib M1; local
[all...]
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
H A DTestChildComponentWithBuilderAbstractClass.java30 abstract class SharedBuilder<B, C, M1, M2> {
32 abstract B setM1(M1 m1); // Test resolving return type & param of setter
33 abstract SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 abstract SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test returning supertype.
H A DTestChildComponentWithBuilderInterface.java30 interface SharedBuilder<B, C, M1, M2> {
32 B setM1(M1 m1); // Test resolving return type & param of setter
33 SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype.
H A DTestComponentWithGenericBuilderAbstractClass.java30 static abstract class SharedBuilder<B, C, M1, M2> {
32 abstract B setM1(M1 m1); // Test resolving return type & param of setter
33 abstract SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 abstract SharedBuilder<B, C, M1, M2> depComponent(FloatModule floatModule); // Test return type
H A DTestComponentWithGenericBuilderInterface.java30 interface SharedBuilder<B, C, M1, M2> {
32 B setM1(M1 m1); // Test resolving return type & param of setter
33 SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype.
/external/llvm/unittests/Support/
H A DMemoryTest.cpp45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) { argument
46 if (M1.base() == M2.base())
49 if (M1.base() > M2.base())
50 return (unsigned char *)M2.base() + M2.size() > M1.base();
52 return (unsigned char *)M1.base() + M1.size() > M2.base();
61 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC); local
64 EXPECT_NE((void*)nullptr, M1.base());
65 EXPECT_LE(sizeof(int), M1.size());
67 EXPECT_FALSE(Memory::releaseMappedMemory(M1));
72 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); local
107 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC); local
126 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags, local
184 MemoryBlock M1 = Memory::allocateMappedMemory(2 * sizeof(int), nullptr, Flags, local
241 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); local
267 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC); local
289 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC); local
315 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC); local
341 MemoryBlock M1 = Memory::allocateMappedMemory(15, &Near, Flags, EC); local
[all...]

Completed in 1541 milliseconds

12345