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

1 2 3 4 5

  /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_paste_simple.c 9 #define M1(A) A
11 B: M1(M2(##))
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);{{$}}
  /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/CoverageMapping/Inputs/
macros.h 7 #define M1(a, ...) helper2(a, ##__VA_ARGS__);
13 #define M2(a, ...) M1(a, helper1, ##__VA_ARGS__);
  /external/clang/test/CoverageMapping/
macroception.c 4 #define M1 M2
11 int main() M1
32 void func3() M1
46 void func4() M1 M11
macro-expansion.c 9 #define M1 do { if (0) {} } while (0)
46 M1;
  /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_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/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/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/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/go/darwin-x86/test/fixedbugs/bug404.dir/
one.go 14 func (p *T1) M1() T3 {
  /prebuilts/go/darwin-x86/test/uintptrescapes.dir/
main.go 30 func M1() int {
32 t.M1(uintptr(unsafe.Pointer(&buf[0])))
68 b := M1()
70 fmt.Printf("M1: got %d, expected 42\n", b)
  /prebuilts/go/linux-x86/test/fixedbugs/bug404.dir/
one.go 14 func (p *T1) M1() T3 {
  /prebuilts/go/linux-x86/test/uintptrescapes.dir/
main.go 30 func M1() int {
32 t.M1(uintptr(unsafe.Pointer(&buf[0])))
68 b := M1()
70 fmt.Printf("M1: got %d, expected 42\n", b)
  /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);

Completed in 288 milliseconds

1 2 3 4 5