/external/clang/test/Preprocessor/ |
H A D | annotate_in_macro_arg.c | 2 #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 D | macro_paste_simple.c | 9 #define M1(A) A macro 11 B: M1(M2(##))
|
H A D | macro_rescan.c | 3 #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 D | pp-record.c | 25 #define M1 c macro 28 FM2(M1, M2);
|
/external/llvm/test/DebugInfo/Inputs/ |
H A D | dwarfdump-macro.h | 4 #undef M1
macro 5 #define M1 NewValue1
macro
|
H A D | dwarfdump-macro.cc | 1 #define M1 Value1
macro
|
/external/clang/test/CoverageMapping/ |
H A D | macroception.c | 4 #define M1 M2 macro 11 int main() M1 32 void func3() M1 46 void func4() M1 M11
|
H A D | macro-expansion.c | 9 #define M1 do { if (0) {} } while (0) macro 46 M1;
|
/external/clang/test/PCH/ |
H A D | macro-redef.c | 11 #define M1 0 // expected-note {{previous}} macro 12 #define M1 1 // expected-warning {{redefined}} macro 25 int x = M1; // expected-note {{previous}}
|
/external/libcxx/test/std/containers/associative/multimap/ |
H A D | scary.pass.cpp | 20 typedef std::map<int, int> M1; typedef 23 M1::iterator j = i;
|
/external/libcxx/test/std/containers/associative/multiset/ |
H A D | scary.pass.cpp | 20 typedef std::set<int> M1; typedef 23 M1::iterator j = i;
|
/external/libcxx/test/std/containers/unord/unord.multimap/ |
H A D | scary.pass.cpp | 20 typedef std::unordered_map<int, int> M1; typedef 23 M1::iterator j = i;
|
/external/libcxx/test/std/containers/unord/unord.multiset/ |
H A D | scary.pass.cpp | 20 typedef std::unordered_set<int> M1; typedef 23 M1::iterator j = i;
|
/external/clang/test/Driver/Inputs/ |
H A D | gen-response.c | 2 #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/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
H A D | Well1024a.java | 44 private static final int M1 = 3; field in class:Well1024a 57 super(K, M1, M2, M3); 64 super(K, M1, M2, M3, seed); 72 super(K, M1, M2, M3, seed); 79 super(K, M1, M2, M3, seed);
|
H A D | Well19937a.java | 44 private static final int M1 = 70; field in class:Well19937a 57 super(K, M1, M2, M3); 64 super(K, M1, M2, M3, seed); 72 super(K, M1, M2, M3, seed); 79 super(K, M1, M2, M3, seed);
|
H A D | Well19937c.java | 44 private static final int M1 = 70; field in class:Well19937c 57 super(K, M1, M2, M3); 64 super(K, M1, M2, M3, seed); 72 super(K, M1, M2, M3, seed); 79 super(K, M1, M2, M3, seed);
|
H A D | Well44497a.java | 44 private static final int M1 = 23; field in class:Well44497a 57 super(K, M1, M2, M3); 64 super(K, M1, M2, M3, seed); 72 super(K, M1, M2, M3, seed); 79 super(K, M1, M2, M3, seed);
|
H A D | Well44497b.java | 44 private static final int M1 = 23; field in class:Well44497b 57 super(K, M1, M2, M3); 64 super(K, M1, M2, M3, seed); 72 super(K, M1, M2, M3, seed); 79 super(K, M1, M2, M3, seed);
|
H A D | Well512a.java | 44 private static final int M1 = 13; field in class:Well512a 57 super(K, M1, M2, M3); 64 super(K, M1, M2, M3, seed); 72 super(K, M1, M2, M3, seed); 79 super(K, M1, M2, M3, seed);
|
/external/clang/test/Misc/ |
H A D | macro-backtrace.c | 4 #define M1(A, B) ((A) < (B)) macro 5 #define M2(A, B) M1(A, B) 31 // CHECK-LIMIT: #define M2(A, B) M1(A, B) 32 // CHECK-LIMIT: macro-backtrace.c:4:23: note: expanded from macro 'M1' 33 // CHECK-LIMIT: #define M1(A, B) ((A) < (B)) 44 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:4:23: note: expanded from macro 'M1'
|
/external/clang/test/SemaCXX/ |
H A D | switch-implicit-fallthrough-macro.cpp | 35 #define M1 [[clang::fallthrough]] macro 37 #define M2 M1 51 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'M1;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}} 58 #undef M1 macro
|
/external/llvm/unittests/Support/ |
H A D | MemoryTest.cpp | 45 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...] |
/external/clang/test/CodeGenCXX/ |
H A D | copy-assign-synthesis.cpp | 21 M() : M1(10), M2(11) , auM1(12) {} 22 int M1; member in struct:M 25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
|
/external/clang/unittests/Driver/ |
H A D | MultilibTest.cpp | 54 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...] |