HomeSort by relevance Sort by last modified time
    Searched refs:M1 (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/Preprocessor/
annotate_in_macro_arg.c 2 #define M1() // expected-note{{macro 'M1' defined here}}
4 M1( // expected-error{{unterminated function-like macro invocation}}
6 #if M1() // expected-error{{expected value in expression}}
macro_rescan.c 3 #define M1(a) (a+1)
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
10 // CHECK: {{^}}int ei_2 = (M1)(17);{{$}}
macro_paste_simple.c 9 #define M1(A) A
11 B: M1(M2(##))
  /external/llvm/test/DebugInfo/Inputs/
dwarfdump-macro.h 4 #undef M1
5 #define M1 NewValue1
dwarfdump-macro.cc 1 #define M1 Value1
  /external/clang/test/PCH/
macro-redef.c 11 #define M1 0 // expected-note {{previous}}
12 #define M1 1 // expected-warning {{redefined}}
25 int x = M1; // expected-note {{previous}}
  /external/eigen/doc/snippets/
Tutorial_ReshapeMat2Mat.cpp 1 MatrixXf M1(2,6); // Column-major storage
2 M1 << 1, 2, 3, 4, 5, 6,
5 Map<MatrixXf> M2(M1.data(), 6,2);
Tutorial_ReshapeMat2Vec.cpp 1 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);
Tutorial_SlicingCol.cpp 1 MatrixXf M1 = MatrixXf::Random(3,8);
2 cout << "Column major input:" << endl << M1 << "\n";
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/
macroception.c 4 #define M1 M2
11 int main() M1
32 void func3() M1
46 void func4() M1 M11
  /external/clang/test/CoverageMapping/Inputs/
macros.h 7 #define M1(a, ...) helper2(a, ##__VA_ARGS__);
13 #define M2(a, ...) M1(a, helper1, ##__VA_ARGS__);
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
types.pass.cpp 47 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, M1, M2>
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
types.pass.cpp 47 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, M1, M2>
    [all...]
  /external/clang/test/Driver/Inputs/
gen-response.c 2 #define M1 M M M M M M M M M M
3 #define M2 M1 M1 M1 M1 M1 M1 M1 M1 M1 M
    [all...]
  /external/libcxx/test/std/containers/associative/multimap/
scary.pass.cpp 20 typedef std::map<int, int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/std/containers/associative/multiset/
scary.pass.cpp 20 typedef std::set<int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/std/containers/unord/unord.multimap/
scary.pass.cpp 20 typedef std::unordered_map<int, int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/std/containers/unord/unord.multiset/
scary.pass.cpp 20 typedef std::unordered_set<int> M1;
23 M1::iterator j = i;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
scary.pass.cpp 20 typedef std::map<int, int> M1;
23 M1::iterator j = i;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
scary.pass.cpp 20 typedef std::set<int> M1;
23 M1::iterator j = i;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/
scary.pass.cpp 20 typedef std::unordered_map<int, int> M1;
23 M1::iterator j = i;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multiset/
scary.pass.cpp 20 typedef std::unordered_set<int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
is_equal.pass.cpp 45 memory_resource const& M1 = R1;
51 assert(M1.is_equal(M2) == false);
55 assert(M2.is_equal(M1) == false);
62 memory_resource const& M1 = R1;
68 assert(M1.is_equal(M2) == false);
72 assert(M2.is_equal(M1) == false);
79 memory_resource const& M1 = R1;
85 assert(M1.is_equal(M2) == true);
89 assert(M2.is_equal(M1) == true);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/memory.resource.public/
is_equal.pass.cpp 45 memory_resource const& M1 = R1;
51 assert(M1.is_equal(M2) == false);
55 assert(M2.is_equal(M1) == false);
62 memory_resource const& M1 = R1;
68 assert(M1.is_equal(M2) == false);
72 assert(M2.is_equal(M1) == false);
79 memory_resource const& M1 = R1;
85 assert(M1.is_equal(M2) == true);
89 assert(M2.is_equal(M1) == true);
  /external/clang/unittests/Driver/
MultilibTest.cpp 54 Multilib M1, M2;
55 M1.flag("+foo");
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same";
61 Multilib M1, M2;
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;
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different";
76 Multilib M1, M2
    [all...]

Completed in 526 milliseconds

1 2 3 4 5 6 7 8 910