Home
last modified time | relevance | path

Searched defs:s1 (Results 1 – 25 of 1385) sorted by relevance

12345678910>>...56

/external/clang/test/SemaObjC/
Dformat-arg-attribute.m12 struct s1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute … argument
13 …t_arg(1))); // expected-warning {{'format_arg' attribute only applies to non-K&R-style functions}}
14 …at_arg(1))); // expected-warning {{'format_arg' attribute only applies to non-K&R-style functions}}
16 extern NSString *ff3 (const NSString *) __attribute__((format_arg(3-2)));
17 …tring *) __attribute__((format_arg(foo))); // expected-error {{use of undeclared identifier 'foo'}}
20 …*fi0 (int) __attribute__((format_arg(1))); // expected-error {{format argument not a string type}}
21 extern NSString *fi1 (NSString *) __attribute__((format_arg(1)));
23 extern NSString *fi2 (NSString *) __attribute__((format_arg(1)));
25 …SString *) __attribute__((format_arg(1))); // expected-error {{function does not return NSString}}
26 extern NSString *fi4 (const NSString *) __attribute__((format_arg(1)));
[all …]
/external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
Dop_equal.pass.cpp32 std::chrono::seconds s1(3); in main() local
38 std::chrono::seconds s1(3); in main() local
44 std::chrono::milliseconds s1(3); in main() local
50 std::chrono::milliseconds s1(3); in main() local
56 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
62 std::chrono::duration<int, std::ratio<2, 3> > s1(10); in main() local
68 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
75 constexpr std::chrono::seconds s1(3); in main() local
81 constexpr std::chrono::seconds s1(3); in main() local
87 constexpr std::chrono::milliseconds s1(3); in main() local
[all …]
Dop_less.pass.cpp42 std::chrono::seconds s1(3); in main() local
50 std::chrono::seconds s1(3); in main() local
58 std::chrono::milliseconds s1(3); in main() local
66 std::chrono::milliseconds s1(3); in main() local
74 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
82 std::chrono::duration<int, std::ratio<2, 3> > s1(10); in main() local
90 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
99 constexpr std::chrono::seconds s1(3); in main() local
107 constexpr std::chrono::seconds s1(3); in main() local
115 constexpr std::chrono::milliseconds s1(3); in main() local
[all …]
/external/libcxx/test/std/utilities/time/time.duration/time.duration.nonmember/
Dop_-.pass.cpp27 std::chrono::seconds s1(3); in main() local
33 std::chrono::seconds s1(3); in main() local
39 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
45 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
52 constexpr std::chrono::seconds s1(3); in main() local
58 constexpr std::chrono::seconds s1(3); in main() local
64 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
70 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
Dop_+.pass.cpp26 std::chrono::seconds s1(3); in main() local
32 std::chrono::seconds s1(3); in main() local
38 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
44 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
51 constexpr std::chrono::seconds s1(3); in main() local
57 constexpr std::chrono::seconds s1(3); in main() local
63 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
69 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
Dop_divide_duration.pass.cpp38 std::chrono::duration<int, std::ratio<2, 3> > s1(30); in main() local
43 std::chrono::duration<int, std::ratio<2, 3> > s1(30); in main() local
59 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(30); in main() local
64 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(30); in main() local
/external/libcxx/test/std/strings/basic.string/string.cons/
Dstring_view_size_size_deduction.pass.cpp50 std::basic_string s1{sv, 0, 4}; in main() local
61 std::basic_string s1{sv, 0, 4, std::allocator<char>{}}; in main() local
71 std::basic_string s1{sv, 0, 4, test_allocator<wchar_t>{}}; in main() local
82 std::basic_string s1{sv, 0, 4, min_allocator<char8_t>{}}; in main() local
93 std::basic_string s1{sv, 0, 4, min_allocator<char16_t>{}}; in main() local
103 std::basic_string s1{sv, 0, 4, explicit_allocator<char32_t>{}}; in main() local
Dstring_view_deduction.pass.cpp46 std::basic_string s1(sv); in main() local
57 std::basic_string s1{sv, std::allocator<char>{}}; in main() local
67 std::basic_string s1{sv, test_allocator<wchar_t>{}}; in main() local
78 std::basic_string s1{sv, min_allocator<char8_t>{}}; in main() local
89 std::basic_string s1{sv, min_allocator<char16_t>{}}; in main() local
99 std::basic_string s1{sv, explicit_allocator<char32_t>{}}; in main() local
Diter_alloc_deduction.pass.cpp44 std::basic_string s1(s, s+10); // Can't use {} here in main() local
55 std::basic_string s1{s, s+10, std::allocator<char>{}}; in main() local
65 std::basic_string s1{s, s+10, test_allocator<wchar_t>{}}; in main() local
75 std::basic_string s1{s, s+10, min_allocator<char16_t>{}}; in main() local
85 std::basic_string s1{s, s+10, explicit_allocator<char32_t>{}}; in main() local
/external/libcxx/test/std/containers/views/span.cons/
Dstdarray.pass.cpp45 std::span< int> s1{ arr}; // a span< int> pointing at int. in checkCV() local
50 std::span< int,3> s1{ arr}; // a span< int> pointing at int. in checkCV() local
56 std::span<const int> s1{ arr}; // a span<const int> pointing at int. in checkCV() local
64 std::span<const int,3> s1{ arr}; // a span<const int> pointing at int. in checkCV() local
78 std::span<const T> s1{val}; in testConstexprSpan() local
92 std::span<T> s1{val}; in testRuntimeSpan() local
Dspan.pass.cpp42 std::span<const int> s1{ sp}; // a span<const int> pointing at int. in checkCV() local
51 std::span<const int, 0> s1{ sp0}; // a span<const int> pointing at int. in checkCV() local
60 std::span<const int> s1{ sp0}; // a span<const int> pointing at int. in checkCV() local
69 std::span<const int, 0> s1{ sp}; // a span<const int> pointing at int. in checkCV() local
82 std::span<T, 0> s1(s0); // dynamic -> static in testConstexprSpan() local
99 std::span<T, 0> s1(s0); // dynamic -> static in testRuntimeSpan() local
117 std::span<Dest, 0> s1(s0d); // dynamic -> static in testConversionSpan() local
Darray.pass.cpp39 std::span< int> s1{ arr}; // a span< int> pointing at int. in checkCV() local
48 std::span< int,3> s1{ arr}; // a span< int> pointing at int. in checkCV() local
58 std::span<const int> s1{ arr}; // a span<const int> pointing at int. in checkCV() local
69 std::span<const int,3> s1{ arr}; // a span<const int> pointing at int. in checkCV() local
87 std::span<const T> s1{val}; in testConstexprSpan() local
101 std::span<T> s1{val}; in testRuntimeSpan() local
Dptr_len.pass.cpp34 std::span< int> s1{ arr, 3}; // a span< int> pointing at int. in checkCV() local
43 std::span< int,3> s1{ arr, 3}; // a span< int> pointing at int. in checkCV() local
53 std::span<const int> s1{ arr, 3}; // a span<const int> pointing at int. in checkCV() local
64 std::span<const int,3> s1{ arr, 3}; // a span<const int> pointing at int. in checkCV() local
79 std::span<const T> s1{val, 2}; in testConstexprSpan() local
91 std::span<T> s1{val, 2}; in testRuntimeSpan() local
Dcontainer.pass.cpp54 std::span< int> s1{v}; // a span< int> pointing at int. in checkCV() local
59 std::span< int,3> s1{v}; // a span< int> pointing at int. in checkCV() local
64 std::span<const int> s1{v}; // a span<const int> pointing at int. in checkCV() local
72 std::span<const int,3> s1{v}; // a span<const int> pointing at int. in checkCV() local
84 std::span<const T> s1{val}; in testConstexprSpan() local
96 std::span<const T> s1{val}; in testRuntimeSpan() local
Dptr_ptr.pass.cpp34 … std::span< int> s1{ arr, arr + 3}; // a span< int> pointing at int. in checkCV() local
43 …std::span< int,3> s1{ arr, arr + 3}; // a span< int> pointing at … in checkCV() local
53 …std::span<const int> s1{ arr, arr + 3}; // a span<const int> pointing at … in checkCV() local
64 … std::span<const int,3> s1{ arr, arr + 3}; // a span<const int> pointing at int. in checkCV() local
79 std::span<const T> s1{val, val+2}; in testConstexprSpan() local
91 std::span<T> s1{val, val+2}; in testRuntimeSpan() local
Ddefault.pass.cpp26 std::span< int> s1; in checkCV() local
35 std::span< int,0> s1; in checkCV() local
47 std::span<const T> s1; in testConstexprSpan() local
59 std::span<const T> s1; in testRuntimeSpan() local
Darray.fail.cpp42 …std::span<int, 2> s1(arr); // expected-error {{no matching constructor for initialization of 'st… in main() local
47 …std::span<float> s1(arr); // expected-error {{no matching constructor for initialization of '… in main() local
53 …std::span< int> s1{ carr}; // expected-error {{no matching constructor for initia… in main() local
64 …std::span< int,3> s1{ carr}; // expected-error {{no matching constructor for initia… in main() local
Dspan.fail.cpp42 …std::span< int> s1{ csp}; // expected-error {{no matching constructor for initializa… in checkCV() local
55 …std::span< int, 0> s1{ csp0}; // expected-error {{no matching constructor for initia… in checkCV() local
68 …std::span< int> s1{ csp0}; // expected-error {{no matching constructor for initializ… in checkCV() local
81 …std::span< int, 0> s1{ csp}; // expected-error {{no matching constructor for initial… in checkCV() local
98 …std::span<float> s1{sp}; // expected-error {{no matching constructor for initialization of 'std… in main() local
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerInterceptors.cpp61 static int internal_strcmp_strncmp(const char *s1, const char *s2, bool strncmp, in internal_strcmp_strncmp()
82 static int internal_strncmp(const char *s1, const char *s2, size_t n) { in internal_strncmp()
86 static int internal_strcmp(const char *s1, const char *s2) { in internal_strcmp()
90 static int internal_memcmp(const void *s1, const void *s2, size_t n) { in internal_memcmp()
158 ATTRIBUTE_INTERFACE int memcmp(const void *s1, const void *s2, size_t n) { in memcmp()
166 ATTRIBUTE_INTERFACE int strncmp(const char *s1, const char *s2, size_t n) { in strncmp()
174 ATTRIBUTE_INTERFACE int strcmp(const char *s1, const char *s2) { in strcmp()
182 ATTRIBUTE_INTERFACE int strncasecmp(const char *s1, const char *s2, size_t n) { in strncasecmp()
189 ATTRIBUTE_INTERFACE int strcasecmp(const char *s1, const char *s2) { in strcasecmp()
196 ATTRIBUTE_INTERFACE char *strstr(const char *s1, const char *s2) { in strstr()
[all …]
/external/libaom/libaom/aom_dsp/arm/
Dmem_neon.h19 const uint8x8_t s1) { in store_row2_u8_8x8()
35 uint8x8_t *const s0, uint8x8_t *const s1, in load_u8_8x8()
57 uint8x16_t *const s0, uint8x16_t *const s1, in load_u8_8x16()
69 uint8x8_t *const s0, uint8x8_t *const s1, in load_u8_8x4()
81 uint16x4_t *const s0, uint16x4_t *const s1, in load_u16_4x4()
94 uint16x8_t *const s0, uint16x8_t *const s1, in load_u16_8x4()
107 int16x4_t *const s0, int16x4_t *const s1, in load_s16_4x8()
129 int16x4_t *const s0, int16x4_t *const s1, in load_s16_4x4()
148 const uint8x8_t s1, const uint8x8_t s2, in store_u8_8x8()
170 const uint8x8_t s1, const uint8x8_t s2, in store_u8_8x4()
[all …]
/external/clang/test/CodeGen/
Dmms-bitfields.c3 struct s1 { struct
6 } s1; argument
Dms_struct.c4 struct s1 { struct
7 } ATTR s1; variable
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowSpannableStringTest.java31 URLSpan s1 = new URLSpan("http://www.foobar.com"); in testSetSpan() local
41 URLSpan s1 = new URLSpan("http://www.foobar.com"); in testRemoveSpan() local
55 URLSpan s1 = new URLSpan("http://www.foobar.com"); in testGetSpans() local
86 private void assertBothSpans(URLSpan s1, UnderlineSpan s2) { in assertBothSpans()
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowSpannableStringTest.java31 URLSpan s1 = new URLSpan("http://www.foobar.com"); in testSetSpan() local
41 URLSpan s1 = new URLSpan("http://www.foobar.com"); in testRemoveSpan() local
55 URLSpan s1 = new URLSpan("http://www.foobar.com"); in testGetSpans() local
86 private void assertBothSpans(URLSpan s1, UnderlineSpan s2) { in assertBothSpans()
/external/libvpx/libvpx/vpx_dsp/arm/
Dvpx_convolve_copy_neon.c38 uint8x8_t s0, s1; in vpx_convolve_copy_neon() local
52 uint8x16_t s0, s1; in vpx_convolve_copy_neon() local
66 uint8x16_t s0, s1, s2, s3; in vpx_convolve_copy_neon() local
84 uint8x16_t s0, s1, s2, s3; in vpx_convolve_copy_neon() local

12345678910>>...56