Home
last modified time | relevance | path

Searched +full:- +full:m (Results 1 – 25 of 1902) sorted by relevance

12345678910>>...77

/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/types/internal/
H A Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
58 #define ABSL_INTERNAL_TRANSFORM_ARGS(m, ...) \ argument
61 (m, __VA_ARGS__)
63 #define ABSL_INTERNAL_TRANSFORM_ARGS1(m, a0) m(a0) argument
65 #define ABSL_INTERNAL_TRANSFORM_ARGS2(m, a0, a1) m(a0), m(a1) argument
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/types/internal/
Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
58 #define ABSL_INTERNAL_TRANSFORM_ARGS(m, ...) \ argument
61 (m, __VA_ARGS__)
63 #define ABSL_INTERNAL_TRANSFORM_ARGS1(m, a0) m(a0) argument
65 #define ABSL_INTERNAL_TRANSFORM_ARGS2(m, a0, a1) m(a0), m(a1) argument
[all …]
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/types/internal/
H A Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
58 #define ABSL_INTERNAL_TRANSFORM_ARGS(m, ...) \ argument
61 (m, __VA_ARGS__)
63 #define ABSL_INTERNAL_TRANSFORM_ARGS1(m, a0) m(a0) argument
65 #define ABSL_INTERNAL_TRANSFORM_ARGS2(m, a0, a1) m(a0), m(a1) argument
[all …]
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/types/internal/
H A Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
58 #define ABSL_INTERNAL_TRANSFORM_ARGS(m, ...) \ argument
61 (m, __VA_ARGS__)
63 #define ABSL_INTERNAL_TRANSFORM_ARGS1(m, a0) m(a0) argument
65 #define ABSL_INTERNAL_TRANSFORM_ARGS2(m, a0, a1) m(a0), m(a1) argument
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testdata/src/test/assets/media/ts/
H A Dsample_h263.ts2-C���Lavc58.54.100�������`��������mm�����mm�����mm�����mm�����mm�����mm��…
4 ֍�+�8�����i**QC��ɆBq���G��mm�����mm�����mm�����mm�����mm�����mm�����mm��…
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testdata/src/test/assets/media/ts/
H A Dsample_h263.ts2-C���Lavc58.54.100�������`��������mm�����mm�����mm�����mm�����mm�����mm��…
4 ֍�+�8�����i**QC��ɆBq���G��mm�����mm�����mm�����mm�����mm�����mm�����mm��…
/aosp_15_r20/external/libcxx/test/std/re/re.alg/re.alg.search/
H A Decma.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_search(s, m, std::regex("a"))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
H A Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::extended))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
H A Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
38 assert(!std::regex_search("a", m, std::regex())); in main()
39 assert(m.size() == 0); in main()
40 assert(m.empty()); in main()
43 std::cmatch m; in main() local
[all …]
H A Dawk.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::awk))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
/aosp_15_r20/external/libcxx/test/std/re/re.alg/re.alg.match/
H A Decma.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_match(s, m, std::regex("a"))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
H A Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
H A Dawk.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
31 std::cmatch m; in main()
33 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk))); in main()
34 assert(m.size() == 1); in main()
35 assert(!m.empty()); in main()
36 assert(!m.prefix().matched); in main()
37 assert(m.prefix().first == s); in main()
38 assert(m.prefix().second == m[0].first); in main()
[all …]
H A Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
38 assert(!std::regex_match("a", m, std::regex())); in main()
39 assert(m.size() == 0); in main()
40 assert(m.empty()); in main()
43 std::cmatch m; in main() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/re/re.alg/re.alg.search/
H A Decma.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
29 assert(std::regex_search(s, m, std::regex("a"))); in main()
30 assert(m.size() == 1); in main()
31 assert(!m.empty()); in main()
32 assert(!m.prefix().matched); in main()
33 assert(m.prefix().first == s); in main()
[all …]
H A Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
29 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::extended))); in main()
30 assert(m.size() == 1); in main()
31 assert(!m.empty()); in main()
32 assert(!m.prefix().matched); in main()
33 assert(m.prefix().first == s); in main()
[all …]
H A Dawk.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
29 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::awk))); in main()
30 assert(m.size() == 1); in main()
31 assert(!m.empty()); in main()
32 assert(!m.prefix().matched); in main()
33 assert(m.prefix().first == s); in main()
[all …]
H A Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
28 assert(!std::regex_search("a", m, std::regex())); in main()
29 assert(m.size() == 0); in main()
30 assert(m.empty()); in main()
33 std::cmatch m; in main() local
35 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::basic))); in main()
[all …]
/aosp_15_r20/frameworks/rs/driver/runtime/
H A Drs_matrix.c16 rsMatrixLoadIdentity(rs_matrix4x4 *m) { in rsMatrixLoadIdentity() argument
17 m->m[0] = 1.f; in rsMatrixLoadIdentity()
18 m->m[1] = 0.f; in rsMatrixLoadIdentity()
19 m->m[2] = 0.f; in rsMatrixLoadIdentity()
20 m->m[3] = 0.f; in rsMatrixLoadIdentity()
21 m->m[4] = 0.f; in rsMatrixLoadIdentity()
22 m->m[5] = 1.f; in rsMatrixLoadIdentity()
23 m->m[6] = 0.f; in rsMatrixLoadIdentity()
24 m->m[7] = 0.f; in rsMatrixLoadIdentity()
25 m->m[8] = 0.f; in rsMatrixLoadIdentity()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/re/re.alg/re.alg.match/
H A Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
28 assert(!std::regex_match("a", m, std::regex())); in main()
29 assert(m.size() == 0); in main()
30 assert(m.empty()); in main()
33 std::cmatch m; in main() local
35 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::basic))); in main()
[all …]
H A Decma.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
29 assert(std::regex_match(s, m, std::regex("a"))); in main()
30 assert(m.size() == 1); in main()
31 assert(!m.empty()); in main()
32 assert(!m.prefix().matched); in main()
33 assert(m.prefix().first == s); in main()
[all …]
H A Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 // match_results<BidirectionalIterator, Allocator>& m,
26 std::cmatch m; in main() local
28 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended))); in main()
29 assert(m.size() == 1); in main()
30 assert(!m.empty()); in main()
31 assert(!m.prefix().matched); in main()
32 assert(m.prefix().first == s); in main()
[all …]
H A Dawk.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 // match_results<BidirectionalIterator, Allocator>& m,
27 std::cmatch m; in main() local
29 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk))); in main()
30 assert(m.size() == 1); in main()
31 assert(!m.empty()); in main()
32 assert(!m.prefix().matched); in main()
33 assert(m.prefix().first == s); in main()
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/php/tests/
H A DGeneratedClassTest.php42 $m = new TestMessage();
43 $m->setOptionalInt32(1);
44 $this->assertSame(1, $m->getOptionalInt32());
53 $m = new TestMessage();
56 $m->setOptionalInt32(MAX_INT32);
57 $this->assertSame(MAX_INT32, $m->getOptionalInt32());
58 $m->setOptionalInt32(MIN_INT32);
59 $this->assertSame(MIN_INT32, $m->getOptionalInt32());
62 $m->setOptionalInt32(1.1);
63 $this->assertSame(1, $m->getOptionalInt32());
[all …]
/aosp_15_r20/external/protobuf/php/tests/
H A DGeneratedClassTest.php42 $m = new TestMessage();
43 $m->setOptionalInt32(1);
44 $this->assertSame(1, $m->getOptionalInt32());
53 $m = new TestMessage();
56 $m->setOptionalInt32(MAX_INT32);
57 $this->assertSame(MAX_INT32, $m->getOptionalInt32());
58 $m->setOptionalInt32(MIN_INT32);
59 $this->assertSame(MIN_INT32, $m->getOptionalInt32());
62 $m->setOptionalInt32(1.1);
63 $this->assertSame(1, $m->getOptionalInt32());
[all …]

12345678910>>...77