Home
last modified time | relevance | path

Searched full:m (Results 1 – 25 of 10716) sorted by relevance

12345678910>>...429

/external/libcxx/test/std/re/re.alg/re.alg.search/
Decma.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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()
43 assert(m.prefix().first == s); in main()
44 assert(m.prefix().second == m[0].first); in main()
45 assert(!m.suffix().matched); in main()
46 assert(m.suffix().first == m[0].second); in main()
[all …]
Dextended.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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()
43 assert(m.prefix().first == s); in main()
44 assert(m.prefix().second == m[0].first); in main()
45 assert(!m.suffix().matched); in main()
46 assert(m.suffix().first == m[0].second); in main()
[all …]
Dbasic.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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
45 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::basic))); in main()
46 assert(m.size() == 1); in main()
47 assert(!m.empty()); in main()
48 assert(!m.prefix().matched); in main()
[all …]
Dawk.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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()
43 assert(m.prefix().first == s); in main()
44 assert(m.prefix().second == m[0].first); in main()
45 assert(!m.suffix().matched); in main()
46 assert(m.suffix().first == m[0].second); in main()
[all …]
/external/tensorflow/tensorflow/core/framework/
Dregister_types.h37 // Each of these TF_CALL_XXX_TYPES(m) macros invokes the macro "m" multiple
41 // TF_CALL_ALL_TYPES(m) applied "m" to all types supported by TensorFlow.
62 #define TF_CALL_float(m) m(float) argument
63 #define TF_CALL_double(m) m(double) argument
64 #define TF_CALL_int32(m) m(::tensorflow::int32) argument
65 #define TF_CALL_uint32(m) m(::tensorflow::uint32) argument
66 #define TF_CALL_uint8(m) m(::tensorflow::uint8) argument
67 #define TF_CALL_int16(m) m(::tensorflow::int16) argument
69 #define TF_CALL_int8(m) m(::tensorflow::int8) argument
70 #define TF_CALL_string(m) m(string) argument
[all …]
/external/libcxx/test/std/re/re.alg/re.alg.match/
Decma.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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()
43 assert(m.prefix().first == s); in main()
44 assert(m.prefix().second == m[0].first); in main()
45 assert(!m.suffix().matched); in main()
46 assert(m.suffix().first == m[0].second); in main()
[all …]
Dextended.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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()
43 assert(m.prefix().first == s); in main()
44 assert(m.prefix().second == m[0].first); in main()
45 assert(!m.suffix().matched); in main()
46 assert(m.suffix().first == m[0].second); in main()
[all …]
Dawk.pass.cpp15 // 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()
39 assert(!m.suffix().matched); in main()
40 assert(m.suffix().first == m[0].second); in main()
[all …]
Dbasic.pass.cpp20 // match_results<BidirectionalIterator, Allocator>& m,
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
45 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::basic))); in main()
46 assert(m.size() == 1); in main()
47 assert(!m.empty()); in main()
48 assert(!m.prefix().matched); in main()
[all …]
/external/swiftshader/src/Renderer/
DMatrix.cpp42 const Matrix &M = *this; in operator -() local
44 return Matrix(-M(1, 1), -M(1, 2), -M(1, 3), -M(1, 4), in operator -()
45 -M(2, 1), -M(2, 2), -M(2, 3), -M(2, 4), in operator -()
46 -M(3, 1), -M(3, 2), -M(3, 3), -M(3, 4), in operator -()
47 -M(4, 1), -M(4, 2), -M(4, 3), -M(4, 4)); in operator -()
52 const Matrix &M = *this; in operator !() local
55 float M3344 = M(3, 3) * M(4, 4) - M(4, 3) * M(3, 4); in operator !()
56 float M2344 = M(2, 3) * M(4, 4) - M(4, 3) * M(2, 4); in operator !()
57 float M2334 = M(2, 3) * M(3, 4) - M(3, 3) * M(2, 4); in operator !()
58 float M3244 = M(3, 2) * M(4, 4) - M(4, 2) * M(3, 4); in operator !()
[all …]
DMatrix.hpp28 Matrix(const float m[16]);
29 Matrix(const float m[4][4]);
42 float m[4][4]; member
66 friend bool operator==(const Matrix &M, const Matrix &N);
67 friend bool operator!=(const Matrix &M, const Matrix &N);
69 friend Matrix operator+(const Matrix &M, const Matrix &N);
70 friend Matrix operator-(const Matrix &M, const Matrix &N);
71 friend Matrix operator*(float s, const Matrix &M);
72 friend Matrix operator*(const Matrix &M, const Matrix &N);
73 friend Matrix operator/(const Matrix &M, float s);
[all …]
/external/swiftshader/src/Device/
DMatrix.cpp42 const Matrix &M = *this; in operator -() local
44 return Matrix(-M(1, 1), -M(1, 2), -M(1, 3), -M(1, 4), in operator -()
45 -M(2, 1), -M(2, 2), -M(2, 3), -M(2, 4), in operator -()
46 -M(3, 1), -M(3, 2), -M(3, 3), -M(3, 4), in operator -()
47 -M(4, 1), -M(4, 2), -M(4, 3), -M(4, 4)); in operator -()
52 const Matrix &M = *this; in operator !() local
55 float M3344 = M(3, 3) * M(4, 4) - M(4, 3) * M(3, 4); in operator !()
56 float M2344 = M(2, 3) * M(4, 4) - M(4, 3) * M(2, 4); in operator !()
57 float M2334 = M(2, 3) * M(3, 4) - M(3, 3) * M(2, 4); in operator !()
58 float M3244 = M(3, 2) * M(4, 4) - M(4, 2) * M(3, 4); in operator !()
[all …]
/external/skia/src/gpu/gl/egl/
DGrGLMakeNativeInterface_egl.cpp21 #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) X; } in egl_get_gl_proc() macro
22 M(eglGetCurrentDisplay) in egl_get_gl_proc()
23 M(eglQueryString) in egl_get_gl_proc()
24 M(glActiveTexture) in egl_get_gl_proc()
25 M(glAttachShader) in egl_get_gl_proc()
26 M(glBindAttribLocation) in egl_get_gl_proc()
27 M(glBindBuffer) in egl_get_gl_proc()
28 M(glBindFramebuffer) in egl_get_gl_proc()
29 M(glBindRenderbuffer) in egl_get_gl_proc()
30 M(glBindTexture) in egl_get_gl_proc()
[all …]
/external/skqp/src/gpu/gl/egl/
DGrGLMakeNativeInterface_egl.cpp21 #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) X; } in egl_get_gl_proc() macro
22 M(eglGetCurrentDisplay) in egl_get_gl_proc()
23 M(eglQueryString) in egl_get_gl_proc()
24 M(glActiveTexture) in egl_get_gl_proc()
25 M(glAttachShader) in egl_get_gl_proc()
26 M(glBindAttribLocation) in egl_get_gl_proc()
27 M(glBindBuffer) in egl_get_gl_proc()
28 M(glBindFramebuffer) in egl_get_gl_proc()
29 M(glBindRenderbuffer) in egl_get_gl_proc()
30 M(glBindTexture) in egl_get_gl_proc()
[all …]
/external/python/cpython2/Tools/pybench/
DTuples.py18 m = t[50:]
19 m = t[:25]
20 m = t[50:55]
21 m = t[:-1]
22 m = t[1:]
23 m = t[-10:]
24 m = t[:10]
26 m = t[50:]
27 m = t[:25]
28 m = t[50:55]
[all …]
/external/antlr/runtime/ObjC/Framework/
Dfilelist.objc1 ANTLRBaseMapElement.m
2 ANTLRBaseRecognizer.m
3 ANTLRBaseStack.m
4 ANTLRBaseTree.m
5 ANTLRBaseTreeAdaptor.m
6 ANTLRBitSet.m
7 ANTLRBufferedTokenStream.m
8 ANTLRBufferedTreeNodeStream.m
10 ANTLRCharStreamState.m
11 ANTLRCommonErrorNode.m
[all …]
/external/syzkaller/vendor/google.golang.org/appengine/internal/log/
Dlog_service.pb.go78 func (m *LogServiceError) Reset() { *m = LogServiceError{} }
79 func (m *LogServiceError) String() string { return proto.CompactTextString(m) }
89 func (m *UserAppLogLine) Reset() { *m = UserAppLogLine{} }
90 func (m *UserAppLogLine) String() string { return proto.CompactTextString(m) }
93 func (m *UserAppLogLine) GetTimestampUsec() int64 {
94 if m != nil && m.TimestampUsec != nil {
95 return *m.TimestampUsec
100 func (m *UserAppLogLine) GetLevel() int64 {
101 if m != nil && m.Level != nil {
102 return *m.Level
[all …]
/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/
Ddatastore_v3.pb.go537 func (m *Action) Reset() { *m = Action{} }
538 func (m *Action) String() string { return proto.CompactTextString(m) }
552 func (m *PropertyValue) Reset() { *m = PropertyValue{} }
553 func (m *PropertyValue) String() string { return proto.CompactTextString(m) }
556 func (m *PropertyValue) GetInt64Value() int64 {
557 if m != nil && m.Int64Value != nil {
558 return *m.Int64Value
563 func (m *PropertyValue) GetBooleanValue() bool {
564 if m != nil && m.BooleanValue != nil {
565 return *m.BooleanValue
[all …]
/external/skqp/src/core/
DSkRasterPipeline.h24 * combinatoric: {N dst formats} x {M source formats} x {K mask formats} x {C transfer modes} ...
35 #define SK_RASTER_PIPELINE_STAGES(M) \ argument
36 M(callback) \
37 M(move_src_dst) M(move_dst_src) \
38 M(clamp_0) M(clamp_1) M(clamp_a) M(clamp_a_dst) M(clamp_gamut) \
39 M(unpremul) M(premul) M(premul_dst) \
40 M(force_opaque) M(force_opaque_dst) \
41 M(set_rgb) M(unbounded_set_rgb) M(swap_rb) M(swap_rb_dst) \
42 M(from_srgb) M(to_srgb) \
43 M(black_color) M(white_color) M(uniform_color) M(unbounded_uniform_color) \
[all …]
/external/libcxx/test/std/containers/associative/map/map.ops/
Dlower_bound.pass.cpp29 typedef std::map<int, double> M; in main() typedef
31 typedef M::iterator R; in main()
43 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
44 R r = m.lower_bound(5); in main()
45 assert(r == m.begin()); in main()
46 r = m.lower_bound(7); in main()
47 assert(r == next(m.begin())); in main()
48 r = m.lower_bound(9); in main()
49 assert(r == next(m.begin(), 2)); in main()
50 r = m.lower_bound(11); in main()
[all …]
Dequal_range.pass.cpp29 typedef std::map<int, double> M; in main() typedef
31 typedef std::pair<M::iterator, M::iterator> R; in main()
43 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
44 R r = m.equal_range(5); in main()
45 assert(r.first == next(m.begin(), 0)); in main()
46 assert(r.second == next(m.begin(), 1)); in main()
47 r = m.equal_range(7); in main()
48 assert(r.first == next(m.begin(), 1)); in main()
49 assert(r.second == next(m.begin(), 2)); in main()
50 r = m.equal_range(9); in main()
[all …]
/external/skia/src/core/
DSkRasterPipeline.h24 * combinatoric: {N dst formats} x {M source formats} x {K mask formats} x {C transfer modes} ...
35 #define SK_RASTER_PIPELINE_STAGES(M) \ argument
36 M(callback) \
37 M(move_src_dst) M(move_dst_src) \
38 M(clamp_0) M(clamp_1) M(clamp_a) M(clamp_a_dst) M(clamp_gamut) \
39 M(unpremul) M(premul) M(premul_dst) \
40 M(force_opaque) M(force_opaque_dst) \
41 M(set_rgb) M(unbounded_set_rgb) M(swap_rb) M(swap_rb_dst) \
42 M(from_srgb) M(to_srgb) \
43 M(black_color) M(white_color) M(uniform_color) M(unbounded_uniform_color) \
[all …]
/external/libcxx/test/std/containers/associative/set/
Dlower_bound.pass.cpp28 typedef std::set<int> M; in main() typedef
30 typedef M::iterator R; in main()
42 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
43 R r = m.lower_bound(5); in main()
44 assert(r == m.begin()); in main()
45 r = m.lower_bound(7); in main()
46 assert(r == next(m.begin())); in main()
47 r = m.lower_bound(9); in main()
48 assert(r == next(m.begin(), 2)); in main()
49 r = m.lower_bound(11); in main()
[all …]
Dupper_bound.pass.cpp28 typedef std::set<int> M; in main() typedef
30 typedef M::iterator R; in main()
42 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
43 R r = m.upper_bound(5); in main()
44 assert(r == next(m.begin(), 1)); in main()
45 r = m.upper_bound(7); in main()
46 assert(r == next(m.begin(), 2)); in main()
47 r = m.upper_bound(9); in main()
48 assert(r == next(m.begin(), 3)); in main()
49 r = m.upper_bound(11); in main()
[all …]
Dequal_range.pass.cpp28 typedef std::set<int> M; in main() typedef
30 typedef std::pair<M::iterator, M::iterator> R; in main()
42 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
43 R r = m.equal_range(5); in main()
44 assert(r.first == next(m.begin(), 0)); in main()
45 assert(r.second == next(m.begin(), 1)); in main()
46 r = m.equal_range(7); in main()
47 assert(r.first == next(m.begin(), 1)); in main()
48 assert(r.second == next(m.begin(), 2)); in main()
49 r = m.equal_range(9); in main()
[all …]

12345678910>>...429