Home
last modified time | relevance | path

Searched refs:M1 (Results 1 – 25 of 98) sorted by relevance

1234

/external/chromium_org/third_party/libphonenumber/src/resources/carrier/en/
D65.txt15 65810|M1
22 65817|M1
31 658188|M1
33 658190|M1
34 658191|M1
35 658192|M1
36 658193|M1
37 658194|M1
38 658195|M1
39 658196|M1
[all …]
/external/llvm/unittests/Support/
DMemoryTest.cpp45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) { in doesOverlap() argument
46 if (M1.base() == M2.base()) in doesOverlap()
49 if (M1.base() > M2.base()) in doesOverlap()
50 return (unsigned char *)M2.base() + M2.size() > M1.base(); in doesOverlap()
52 return (unsigned char *)M1.base() + M1.size() > M2.base(); in doesOverlap()
61 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC); in TEST_P() local
64 EXPECT_NE((void*)nullptr, M1.base()); in TEST_P()
65 EXPECT_LE(sizeof(int), M1.size()); in TEST_P()
67 EXPECT_FALSE(Memory::releaseMappedMemory(M1)); in TEST_P()
72 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); in TEST_P() local
[all …]
DCommandLineTest.cpp55 StackOption(const M0t &M0, const M1t &M1) : Base(M0, M1) {} in StackOption() argument
59 StackOption(const M0t &M0, const M1t &M1, const M2t &M2) : Base(M0, M1, M2) {} in StackOption() argument
63 StackOption(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3) in StackOption() argument
64 : Base(M0, M1, M2, M3) {} in StackOption()
/external/clang/unittests/Driver/
DMultilibTest.cpp54 Multilib M1, M2; in TEST() local
55 M1.flag("+foo"); in TEST()
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same"; in TEST()
61 Multilib M1, M2; in TEST() local
62 M1.flag("+foo"); in TEST()
64 ASSERT_FALSE(M1 == M2) << "Multilibs with conflicting flags are not the same"; in TEST()
65 ASSERT_FALSE(M2 == M1) in TEST()
70 Multilib M1, M2; in TEST() local
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different"; in TEST()
76 Multilib M1, M2; in TEST() local
[all …]
/external/llvm/unittests/ExecutionEngine/JIT/
DMultiJITTest.cpp38 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) { in createModule1() argument
39 M1 = new Module("test1", Context1); in createModule1()
40 LoadAssemblyInto(M1, in createModule1()
52 FooF1 = M1->getFunction("foo1"); in createModule1()
74 Module *M1 = nullptr; in TEST() local
76 createModule1(Context1, M1, FooF1); in TEST()
84 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1).create()); in TEST()
104 Module *M1 = nullptr; in TEST() local
106 createModule1(Context1, M1, FooF1); in TEST()
114 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1).create()); in TEST()
[all …]
/external/chromium_org/ui/events/gestures/
Dgestures.dot43 GS_PENDING_PINCH -> GS_PENDING_PINCH [label= "M0\n M1"];
44 GS_PENDING_PINCH -> GS_PENDING_PINCH_NO_PINCH [label= "M0\n M1"];
45 GS_PENDING_PINCH -> GS_PINCH [label= "M0\n M1"];
48 GS_PENDING_PINCH_NO_PINCH -> GS_PENDING_PINCH_NO_PINCH [label= "M0\n M1"];
51 GS_PENDING_TWO_FINGER_TAP -> GS_PENDING_TWO_FINGER_TAP [label= "M0\n M1"];
52 GS_PENDING_TWO_FINGER_TAP -> GS_PENDING_TWO_FINGER_TAP_NO_PINCH [label= "M0\n M1"];
53 GS_PENDING_TWO_FINGER_TAP -> GS_PINCH [label= "M0\n M1"];
58 GS_PENDING_TWO_FINGER_TAP_NO_PINCH -> GS_PENDING_TWO_FINGER_TAP_NO_PINCH [label= "M0\n M1"];
61 GS_PINCH -> GS_PINCH [label= "M0\n M1"];
66 GS_PENDING_THREE_FINGER_SWIPE -> GS_PENDING_THREE_FINGER_SWIPE [label= "M0\n M1\n M2"];
/external/chromium_org/v8/test/mjsunit/harmony/
Dmodule-linking.js238 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, M1.A2.A1);
/external/llvm/include/llvm/Support/
DCommandLine.h1217 opt(const M0t &M0, const M1t &M1) : Option(Optional, NotHidden) {
1218 apply(M0, this); apply(M1, this);
1224 opt(const M0t &M0, const M1t &M1,
1226 apply(M0, this); apply(M1, this); apply(M2, this);
1231 opt(const M0t &M0, const M1t &M1, const M2t &M2,
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,
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,
1249 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
[all …]
/external/clang/test/Preprocessor/
Dmacro_rescan.c3 #define M1(a) (a+1) macro
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
Dmacro_paste_simple.c9 #define M1(A) A macro
11 B: M1(M2(##))
Dpp-record.c25 #define M1 c macro
28 FM2(M1, M2);
/external/clang/test/PCH/
Dmacro-redef.c11 #define M1 0 // expected-note {{previous}} macro
12 #define M1 1 // expected-warning {{redefined}} macro
25 int x = M1; // expected-note {{previous}}
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h1200 template <typename M1>
1201 typename EnableIfValidArity<1, VariadicOperatorMatcher<M1> >::type
1202 operator()(const M1 &P1) const {
1203 return VariadicOperatorMatcher<M1>(Func, P1);
1205 template <typename M1, typename M2>
1206 typename EnableIfValidArity<2, VariadicOperatorMatcher<M1, M2> >::type
1207 operator()(const M1 &P1, const M2 &P2) const {
1208 return VariadicOperatorMatcher<M1, M2>(Func, P1, P2);
1210 template <typename M1, typename M2, typename M3>
1211 typename EnableIfValidArity<3, VariadicOperatorMatcher<M1, M2, M3> >::type
[all …]
/external/clang/test/CodeGenCXX/
Dcopy-assign-synthesis.cpp21 M() : M1(10), M2(11) , auM1(12) {} in M()
22 int M1; member
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr()
Dcopy-assign-synthesis-1.cpp25 M() : M1(10), M2(11) , auM1(12) {} in M()
26 int M1; member
29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr()
/external/clang/lib/Driver/
DMultilib.cpp153 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2) { in Either() argument
155 Ms.push_back(M1); in Either()
160 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, in Either() argument
163 Ms.push_back(M1); in Either()
169 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, in Either() argument
172 Ms.push_back(M1); in Either()
179 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, in Either() argument
183 Ms.push_back(M1); in Either()
/external/libcxx/test/containers/unord/unord.multimap/
Dscary.pass.cpp20 typedef std::unordered_map<int, int> M1; in main() typedef
23 M1::iterator j = i; in main()
/external/libcxx/test/containers/associative/multiset/
Dscary.pass.cpp20 typedef std::set<int> M1; in main() typedef
23 M1::iterator j = i; in main()
/external/libcxx/test/containers/associative/multimap/
Dscary.pass.cpp20 typedef std::map<int, int> M1; in main() typedef
23 M1::iterator j = i; in main()
/external/libcxx/test/containers/unord/unord.multiset/
Dscary.pass.cpp20 typedef std::unordered_set<int> M1; in main() typedef
23 M1::iterator j = i; in main()
/external/clang/include/clang/Driver/
DMultilib.h116 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/test/SemaCXX/
Dswitch-implicit-fallthrough-macro.cpp35 #define M1 [[clang::fallthrough]] macro
37 #define M2 M1
58 #undef M1
/external/llvm/test/CodeGen/X86/
Dvec_zero_cse.ll11 @M1 = external global <1 x i64>
18 store <1 x i64> zeroinitializer, <1 x i64>* @M1
24 store <1 x i64> < i64 -1 >, <1 x i64>* @M1
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
D3d-cube.js96 function MMulti(M1, M2) { argument
102 …for (; j < 4; j++) M[i][j] = M1[i][0] * M2[0][j] + M1[i][1] * M2[1][j] + M1[i][2] * M2[2][j] + M1[…
123 function MAdd(M1, M2) { argument
129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j];
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
D3d-cube.js96 function MMulti(M1, M2) { argument
102 …for (; j < 4; j++) M[i][j] = M1[i][0] * M2[0][j] + M1[i][1] * M2[1][j] + M1[i][2] * M2[2][j] + M1[…
123 function MAdd(M1, M2) { argument
129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j];

1234