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

1 2 3

  /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/clang/test/Preprocessor/
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);{{$}}
macro_paste_simple.c 9 #define M1(A) A
11 B: M1(M2(##))
pp-record.c 25 #define M1 c
28 FM2(M1, M2);
  /external/libcxx/test/containers/associative/multimap/
scary.pass.cpp 20 typedef std::map<int, int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/containers/associative/multiset/
scary.pass.cpp 20 typedef std::set<int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 20 typedef std::unordered_map<int, int> M1;
23 M1::iterator j = i;
  /external/libcxx/test/containers/unord/unord.multiset/
scary.pass.cpp 20 typedef std::unordered_set<int> M1;
23 M1::iterator j = i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/
scary.pass.cpp 20 typedef std::map<int, int> M1;
23 M1::iterator j = i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
scary.pass.cpp 20 typedef std::set<int> M1;
23 M1::iterator j = i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 20 typedef std::unordered_map<int, int> M1;
23 M1::iterator j = i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
scary.pass.cpp 20 typedef std::unordered_set<int> M1;
23 M1::iterator j = i;
  /external/clang/unittests/Driver/
MultilibTest.cpp 54 Multilib M1, M2;
55 M1.flag("+foo");
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same";
61 Multilib M1, M2;
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;
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different";
76 Multilib M1, M2
    [all...]
  /external/llvm/unittests/Support/
MemoryTest.cpp 45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) {
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);
64 EXPECT_NE((void*)nullptr, M1.base());
65 EXPECT_LE(sizeof(int), M1.size());
67 EXPECT_FALSE(Memory::releaseMappedMemory(M1));
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 38 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) {
39 M1 = new Module("test1", Context1);
40 LoadAssemblyInto(M1,
52 FooF1 = M1->getFunction("foo1");
74 Module *M1 = nullptr;
76 createModule1(Context1, M1, FooF1);
84 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1).create());
104 Module *M1 = nullptr;
106 createModule1(Context1, M1, FooF1);
114 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1).create())
    [all...]
  /external/openfst/src/include/fst/
fst-decl.h 118 template <class M1, class M2 = M1> class SequenceComposeFilter;
119 template <class M1, class M2 = M1> class AltSequenceComposeFilter;
120 template <class M1, class M2 = M1> class MatchComposeFilter;
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(fst1, MATCH_OUTPUT))
    [all...]
lookahead-filter.h 37 template <class M1, class M2>
38 MatchType LookAheadMatchType(const M1 &m1, const M2 &m2) {
39 MatchType type1 = m1.Type(false);
42 m1.Flags() & kOutputLookAheadMatcher)
47 else if (m1.Flags() & kOutputLookAheadMatcher &&
48 m1.Type(true) == MATCH_OUTPUT)
76 template <class M1, class M2, MatchType MT>
123 template <class M1, class M2>
124 class LookAheadSelector<M1, M2, MATCH_INPUT>
    [all...]
  /external/clang/test/Misc/
macro-backtrace.c 4 #define M1(A, B) ((A) < (B))
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'
  /hardware/intel/img/psb_video/src/hwdefs/
coreflags.h 179 #define RC_MODES_POSSIBLE2(M1, M2) \
180 (RC_MODE_POSSIBLE(M1) || RC_MODE_POSSIBLE(M2))
182 #define RC_MODES_POSSIBLE3(M1, M2, M3) \
183 (RC_MODES_POSSIBLE2(M1, M2) || RC_MODE_POSSIBLE(M3))
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 21 M() : M1(10), M2(11) , auM1(12) {}
22 int M1;
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
copy-assign-synthesis-1.cpp 25 M() : M1(10), M2(11) , auM1(12) {}
26 int M1;
29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-macro.cpp 35 #define M1 [[clang::fallthrough]]
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
  /external/llvm/include/llvm/Support/
CommandLine.h     [all...]
  /external/clang/test/Sema/
unused-expr.c 130 #define M1(a, b) (long)foo((a), (b))
138 M1(i, j); // no warning
152 #undef M1

Completed in 997 milliseconds

1 2 3