Home
last modified time | relevance | path

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

12345678910>>...49

/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.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_-.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_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
Diter_alloc_deduction.fail.cpp42 …std::basic_string s1{NotAnItertor{}, NotAnItertor{}, std::allocator<char>{}}; // expected-error {{… in main() local
47 …std::basic_string s1{std::back_insert_iterator(s0), // expected-error {{no viable constructor or … in main() local
53 …std::basic_string s1{s, s+10, NotAnAllocator<wchar_t>{}}; // expected-error {{no viable constructo… 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
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
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
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
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
/external/webrtc/webrtc/base/
Dstringutils.h78 inline int strcmp(const wchar_t* s1, const wchar_t* s2) { in strcmp()
81 inline int stricmp(const wchar_t* s1, const wchar_t* s2) { in stricmp()
84 inline int strncmp(const wchar_t* s1, const wchar_t* s2, size_t n) { in strncmp()
87 inline int strnicmp(const wchar_t* s1, const wchar_t* s2, size_t n) { in strnicmp()
112 inline int _stricmp(const char* s1, const char* s2) { in _stricmp()
115 inline int _strnicmp(const char* s1, const char* s2, size_t n) { in _strnicmp()
235 inline int asccmp(const char* s1, const char* s2) { in asccmp()
238 inline int ascicmp(const char* s1, const char* s2) { in ascicmp()
241 inline int ascncmp(const char* s1, const char* s2, size_t n) { in ascncmp()
244 inline int ascnicmp(const char* s1, const char* s2, size_t n) { in ascnicmp()
[all …]
/external/honggfuzz/libhfuzz/
Dmemorycmp.c15 static inline int HF_strcmp(const char* s1, const char* s2, uintptr_t addr) { in HF_strcmp()
26 static inline int HF_strcasecmp(const char* s1, const char* s2, uintptr_t addr) { in HF_strcasecmp()
37 static inline int HF_strncmp(const char* s1, const char* s2, size_t n, uintptr_t addr) { in HF_strncmp()
52 static inline int HF_strncasecmp(const char* s1, const char* s2, size_t n, uintptr_t addr) { in HF_strncasecmp()
94 const unsigned char* s1 = (const unsigned char*)m1; in HF_memcmp() local
145 HF_WEAK_WRAP(int, strcmp, const char* s1, const char* s2) { in HF_WEAK_WRAP()
148 HF_WEAK_WRAP(int, strcasecmp, const char* s1, const char* s2) { in HF_WEAK_WRAP()
151 HF_WEAK_WRAP(int, strncmp, const char* s1, const char* s2, size_t n) { in HF_WEAK_WRAP()
154 HF_WEAK_WRAP(int, strncasecmp, const char* s1, const char* s2, size_t n) { in HF_WEAK_WRAP()
180 HF_WEAK_WRAP(int, ap_cstr_casecmp, const char* s1, const char* s2) { in HF_WEAK_WRAP()
[all …]
/external/clang/test/CodeGen/
Dmms-bitfields.c3 struct s1 { struct
6 } s1; variable
Dms_struct.c4 struct s1 { struct
7 } ATTR s1; argument
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DSmallSetTest.cpp22 SmallSet<int, 4> s1; in TEST() local
39 SmallSet<int, 4> s1; in TEST() local
53 SmallSet<int, 4> s1; in TEST() local
74 SmallSet<int, 4> s1; in TEST() local
101 SmallSet<std::string, 2> s1; in TEST() local
130 SmallSet<std::string, 2> s1; in TEST() local
/external/libaom/libaom/av1/common/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/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()

12345678910>>...49