/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/clang/test/Preprocessor/ |
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 | macro_paste_simple.c | 9 #define M1(A) A macro 11 B: M1(M2(##))
|
H A D | pp-record.c | 25 #define M1 c macro 28 FM2(M1, M2);
|
/external/libcxx/test/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/containers/associative/multiset/ |
H A D | scary.pass.cpp | 20 typedef std::set<int> M1; typedef 23 M1::iterator j = i;
|
/external/libcxx/test/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/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/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...] |
/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/llvm/unittests/ExecutionEngine/JIT/ |
H A D | MultiJITTest.cpp | 38 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) { argument 39 M1 = new Module("test1", Context1); 40 LoadAssemblyInto(M1, 52 FooF1 = M1->getFunction("foo1"); 74 Module *M1 = nullptr; local 76 createModule1(Context1, M1, FooF1); 84 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1).create()); 104 Module *M1 = nullptr; local 106 createModule1(Context1, M1, FooF1); 114 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1) 138 Module *M1 = nullptr; local [all...] |
/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/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);
|
H A D | copy-assign-synthesis-1.cpp | 25 M() : M1(10), M2(11) , auM1(12) {} 26 int M1; member in struct:M 29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
|
/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/chromium_org/v8/test/mjsunit/harmony/ |
H A D | module-linking.js | 238 export module M1 { 243 export module A1 = M1; 276 assertEquals("object", typeof M1); 278 assertTrue('A2' in M1); 280 assertEquals("object", typeof M1.A2); 282 assertTrue('A1' in M1.A2); 284 assertEquals("object", typeof M1.A2.A1); 293 assertSame(M1, M2.A1); 294 assertSame(M2, M1.A2); 295 assertSame(M1, M [all...] |
H A D | module-resolution.js | 110 export module M1 { 114 export module A1 = M1
|
/external/openfst/src/include/fst/ |
H A D | compose-filter.h | 159 // template <class M1, class M2> 162 // typedef typename M1::FST1 FST1; 163 // typedef typename M1::FST2 FST2; 171 // // M1 *matcher1 = 0, M2 *matcher2 = 0); 174 // ComposeFilter(const ComposeFilter<M1, M2> &filter, 206 template <class M1, class M2> 209 typedef typename M1::FST FST1; 213 typedef M1 Matcher1; 221 M1 *matcher1 = 0, M2 *matcher2 = 0) 222 : matcher1_(matcher1 ? matcher1 : new M1(fst [all...] |
H A D | lookahead-filter.h | 37 template <class M1, class M2> 38 MatchType LookAheadMatchType(const M1 &m1, const M2 &m2) { 76 template <class M1, class M2, MatchType MT> 123 template <class M1, class M2> 124 class LookAheadSelector<M1, M2, MATCH_INPUT> { 126 typedef typename M1::FST F1; 128 LookAheadSelector(M1 *lmatcher1, M2 *lmatcher2, MatchType) 132 LookAheadSelector(const LookAheadSelector<M1, M2, MATCH_INPUT> &selector) 149 void operator=(const LookAheadSelector<M1, M2, MATCH_INPUT> &); // disallow 155 template <class M1, clas [all...] |
H A D | compose.h | 79 template <class M1, class M2, 80 class F = SequenceComposeFilter<M1, M2>, 81 class T = GenericComposeStateTable<typename M1::Arc, 84 M1 *matcher1; // FST1 matcher (see matcher.h) 90 M1 *mat1 = 0, M2 *mat2 = 0, 203 template <class M1, class M2, class F, class T> 204 class ComposeFstImpl : public ComposeFstImplBase<typename M1::Arc> { 205 typedef typename M1::FST FST1; 207 typedef typename M1::Arc Arc; 223 const ComposeFstImplOptions<M1, M [all...] |
/external/clang/test/Sema/ |
H A D | unused-expr.c | 130 #define M1(a, b) (long)foo((a), (b)) 138 M1(i, j); // no warning 152 #undef M1
|
H A D | warn-duplicate-enum.c | 81 M1, enumerator in enum:__anon19187
|
/external/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 1217 opt(const M0t &M0, const M1t &M1) : Option(Optional, NotHidden) { argument 1218 apply(M0, this); apply(M1, this); 1224 opt(const M0t &M0, const M1t &M1, argument 1226 apply(M0, this); apply(M1, this); apply(M2, this); 1231 opt(const M0t &M0, const M1t &M1, const M2t &M2, argument 1233 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this); 1238 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, argument 1240 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this); 1247 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, argument 1249 apply(M0, this); apply(M1, thi 1256 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, const M4t &M4, const M5t &M5, const M6t &M6) argument 1266 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, const M4t &M4, const M5t &M5, const M6t &M6, const M7t &M7) argument 1385 list(const M0t &M0, const M1t &M1) argument 1391 list(const M0t &M0, const M1t &M1, const M2t &M2) argument 1398 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3) argument 1405 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, const M4t &M4) argument 1414 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, const M4t &M4, const M5t &M5) argument 1423 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, const M4t &M4, const M5t &M5, const M6t &M6) argument 1433 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, const M4t &M4, const M5t &M5, const M6t &M6, const M7t &M7) argument [all...] |
/external/clang/include/clang/Driver/ |
H A D | Multilib.h | 116 MultilibSet &Either(const Multilib &M1, const Multilib &M2); 117 MultilibSet &Either(const Multilib &M1, const Multilib &M2, 119 MultilibSet &Either(const Multilib &M1, const Multilib &M2, 121 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
|
/external/clang/lib/Driver/ |
H A D | Multilib.cpp | 153 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2) { argument 155 Ms.push_back(M1); 160 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument 163 Ms.push_back(M1); 169 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument 172 Ms.push_back(M1); 179 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument 183 Ms.push_back(M1);
|