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

1 2 3 4 5 6 7 8

  /external/clang/test/CoverageMapping/
include-macros.c 6 M2("a", "b");
macroception.c 3 #define M2 {
4 #define M1 M2
macro-expansion.c 20 #define M2(x) do { if (x) {} } while (0)
25 #define M3(x) do { M2(x); } while (0)
37 // Check for the expansion of M2 within M3.
47 M2(!x);
48 M2(x);
  /external/clang/test/PCH/
macro-redef.c 14 #define M2 3
19 #define M2 4 // expected-warning {{redefined}}
26 int x = M2; // expected-error {{redefinition}}
  /external/clang/test/Preprocessor/
macro_rescan.c 4 #define M2(b) b
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
macro_paste_simple.c 10 #define M2(X) X
11 B: M1(M2(##))
bigoutput.c 9 #define M2 M0 M0 M0 M0
10 #define M4 M2 M2 M2 M2
  /external/eigen/doc/snippets/
Tutorial_ReshapeMat2Mat.cpp 5 Map<MatrixXf> M2(M1.data(), 6,2);
6 cout << "M2:" << endl << M2 << endl
Tutorial_ReshapeMat2Vec.cpp 9 Matrix<float,Dynamic,Dynamic,RowMajor> M2(M1);
10 Map<RowVectorXf> v2(M2.data(), M2.size());
  /external/clang/test/Driver/Inputs/
gen-response.c 3 #define M2 M1 M1 M1 M1 M1 M1 M1 M1 M1 M1
4 #define M3 M2 M2 M2 M2 M2 M2 M2 M2 M2 M
    [all...]
  /external/llvm/test/DebugInfo/Inputs/
dwarfdump-macro.cc 3 #define M2(x, y) ((x)+(y)* Value2)
  /external/libcxx/test/std/containers/associative/multimap/
scary.pass.cpp 21 typedef std::multimap<int, int> M2;
22 M2::iterator i;
  /external/libcxx/test/std/containers/associative/multiset/
scary.pass.cpp 21 typedef std::multiset<int> M2;
22 M2::iterator i;
  /external/libcxx/test/std/containers/unord/unord.multimap/
scary.pass.cpp 21 typedef std::unordered_multimap<int, int> M2;
22 M2::iterator i;
  /external/libcxx/test/std/containers/unord/unord.multiset/
scary.pass.cpp 21 typedef std::unordered_multiset<int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/
scary.pass.cpp 21 typedef std::multimap<int, int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
scary.pass.cpp 21 typedef std::multiset<int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 21 typedef std::unordered_multimap<int, int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
scary.pass.cpp 21 typedef std::unordered_multiset<int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
scary.pass.cpp 21 typedef std::multimap<int, int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
scary.pass.cpp 21 typedef std::multiset<int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/
scary.pass.cpp 21 typedef std::unordered_multimap<int, int> M2;
22 M2::iterator i;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multiset/
scary.pass.cpp 21 typedef std::unordered_multiset<int> M2;
22 M2::iterator i;
  /external/clang/test/CoverageMapping/Inputs/
macros.h 9 // Note: M2 stresses vararg macro functions with macro arguments. The spelling
11 // crashes (region LineEnd < LineStart). The regression test requires M2's line
13 #define M2(a, ...) M1(a, helper1, ##__VA_ARGS__);
  /external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
is_equal.pass.cpp 49 memory_resource const& M2 = R2;
51 assert(M1.is_equal(M2) == false);
55 assert(M2.is_equal(M1) == false);
66 memory_resource const& M2 = R2;
68 assert(M1.is_equal(M2) == false);
72 assert(M2.is_equal(M1) == false);
83 memory_resource const& M2 = R2;
85 assert(M1.is_equal(M2) == true);
89 assert(M2.is_equal(M1) == true);

Completed in 4631 milliseconds

1 2 3 4 5 6 7 8