Searched refs:M2 (Results 1 - 25 of 61) sorted by relevance

123

/external/clang/test/PCH/
H A Dmacro-redef.c14 #define M2 3 macro
19 #define M2 4 // expected-warning {{redefined}} macro
26 int x = M2; // expected-error {{redefinition}}
/external/clang/test/Preprocessor/
H A Dmacro_rescan.c4 #define M2(b) b macro
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
H A Dmacro_paste_simple.c10 #define M2(X) X macro
11 B: M1(M2(##))
H A Dpp-record.c26 #define M2 int macro
28 FM2(M1, M2);
H A Dmicrosoft-ext.c4 # define M2(x, y) x + y macro
6 # define M(x, y) M2(x, P(x, y))
/external/llvm/unittests/ExecutionEngine/JIT/
H A DMultiJITTest.cpp54 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) { argument
55 M2 = new Module("test2", Context2);
56 LoadAssemblyInto(M2,
68 FooF2 = M2->getFunction("foo2");
78 Module *M2 = 0; local
80 createModule2(Context2, M2, FooF2);
85 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create());
108 Module *M2 = 0; local
110 createModule2(Context2, M2, FooF2);
115 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2)
142 Module *M2 = 0; local
[all...]
/external/llvm/unittests/Support/
H A DMemoryTest.cpp45 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();
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, 0, Flags, EC); local
81 EXPECT_NE((void*)0, M2.base());
82 EXPECT_LE(64U, M2.size());
86 EXPECT_FALSE(doesOverlap(M1, M2));
128 MemoryBlock M2 = Memory::allocateMappedMemory(8 * sizeof(int), 0, Flags, EC); local
182 MemoryBlock M2 = Memory::allocateMappedMemory(8 * sizeof(int), 0, Flags, EC); local
235 MemoryBlock M2 = Memory::allocateMappedMemory(64, &M1, Flags, EC); local
261 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC); local
283 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC); local
309 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC); local
[all...]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp14.cpp56 namespace M2 { namespace
70 void M2::MInner::Bar::bar() {
/external/clang/test/Misc/
H A Dmacro-backtrace.c5 #define M2(A, B) M1(A, B) macro
6 #define M3(A, B) M2(A, B)
29 // CHECK-LIMIT: #define M3(A, B) M2(A, B)
30 // CHECK-LIMIT: macro-backtrace.c:5:18: note: expanded from macro 'M2'
31 // CHECK-LIMIT: #define M2(A, B) M1(A, B)
43 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:5:18: note: expanded from macro 'M2'
H A Dcaret-diags-macros.c4 #define M2 1; macro
7 M2);
9 // CHECK: {{.*}}:4:{{[0-9]+}}: note: expanded from macro 'M2'
64 M2,
67 // CHECK: {{.*}}:4:12: note: expanded from macro 'M2'
/external/clang/test/Parser/
H A Dms-inline-asm.c5 #define M2 int macro
9 void t3(void) { __asm M2 0x2c }
/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis.cpp21 M() : M1(10), M2(11) , auM1(12) {}
23 int M2; member in struct:M
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
H A Dcopy-assign-synthesis-1.cpp26 M() : M1(10), M2(11) , auM1(12) {}
28 int M2; member in struct:M
30 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
/external/llvm/lib/AsmParser/
H A DParser.cpp37 OwningPtr<Module> M2(new Module(F->getBufferIdentifier(), Context));
38 if (LLParser(F, SM, Err, M2.get()).Run())
40 return M2.take();
/external/clang/test/SemaCXX/
H A Dswitch-implicit-fallthrough-macro.cpp37 #define M2 M1 macro
39 #define M2 macro
52 // there was an idea that this ^ should be M2
59 #undef M2 macro
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dmodule-linking.js239 export module A2 = M2;
242 export module M2 {
277 assertEquals("object", typeof M2);
279 assertTrue('A1' in M2);
281 assertEquals("object", typeof M2.A1);
283 assertTrue('A2' in M2.A1);
285 assertEquals("object", typeof M2.A1.A2);
293 assertSame(M1, M2.A1);
294 assertSame(M2, M1.A2);
296 assertSame(M2, M
[all...]
H A Dmodule-resolution.js111 export module A2 = M2
113 export module M2 {
/external/openfst/src/include/fst/
H A Dcompose-filter.h159 // template <class M1, class M2>
171 // // M1 *matcher1 = 0, M2 *matcher2 = 0);
174 // ComposeFilter(const ComposeFilter<M1, M2> &filter,
206 template <class M1, class M2>
210 typedef typename M2::FST FST2;
214 typedef M2 Matcher2;
221 M1 *matcher1 = 0, M2 *matcher2 = 0)
223 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)),
229 SequenceComposeFilter(const SequenceComposeFilter<M1, M2> &filter,
286 void operator=(const SequenceComposeFilter<M1, M2>
[all...]
H A Dlookahead-filter.h37 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> {
128 LookAheadSelector(M1 *lmatcher1, M2 *lmatcher2, MatchType)
132 LookAheadSelector(const LookAheadSelector<M1, M2, MATCH_INPUT> &selector)
143 M2 *GetMatcher() const { return lmatcher_; }
147 M2 *lmatcher_;
149 void operator=(const LookAheadSelector<M1, M2, MATCH_INPU
[all...]
H A Dcompose.h79 template <class M1, class M2,
80 class F = SequenceComposeFilter<M1, M2>,
85 M2 *matcher2; // FST2 matcher
90 M1 *mat1 = 0, M2 *mat2 = 0,
203 template <class M1, class M2, class F, class T>
206 typedef typename M2::FST FST2;
223 const ComposeFstImplOptions<M1, M2, F, T> &opts);
225 ComposeFstImpl(const ComposeFstImpl<M1, M2, F, T> &impl)
243 virtual ComposeFstImpl<M1, M2, F, T> *Copy() {
244 return new ComposeFstImpl<M1, M2,
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/sparc/
H A Dsparc_matrix.h37 #define M2 %f18 macro
54 ldd [BASE + ( 2 * 0x4)], M2; \
68 ld [BASE + ( 2 * 0x4)], M2; \
83 ldd [BASE + ( 2 * 0x4)], M2; \
96 ldd [BASE + ( 2 * 0x4)], M2; \
115 ldd [BASE + ( 2 * 0x4)], M2; \
135 ld [BASE + ( 2 * 0x4)], M2; \
143 ld [BASE + ( 2 * 0x4)], M2; \
/external/mesa3d/src/mesa/sparc/
H A Dsparc_matrix.h37 #define M2 %f18 macro
54 ldd [BASE + ( 2 * 0x4)], M2; \
68 ld [BASE + ( 2 * 0x4)], M2; \
83 ldd [BASE + ( 2 * 0x4)], M2; \
96 ldd [BASE + ( 2 * 0x4)], M2; \
115 ldd [BASE + ( 2 * 0x4)], M2; \
135 ld [BASE + ( 2 * 0x4)], M2; \
143 ld [BASE + ( 2 * 0x4)], M2; \
/external/clang/test/Sema/
H A Dunused-expr.c131 #define M2 (long)0;
140 M2; // no warning
153 #undef M2
H A Dwarn-duplicate-enum.c82 M2, enumerator in enum:__anon16370
/external/v8/test/mjsunit/harmony/
H A Dmodule-resolution.js98 export module A2 = M2
100 export module M2 {

Completed in 1336 milliseconds

123