Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 5245) sorted by relevance

12345678910>>...210

/external/libcxx/test/re/re.alg/re.alg.search/
Dawk.pass.cpp28 const char s[] = "a"; in main() local
44 const char s[] = "ab"; in main() local
59 const char s[] = "ab"; in main() local
66 const char s[] = "aab"; in main() local
81 const char s[] = "aab"; in main() local
88 const char s[] = "abcd"; in main() local
103 const char s[] = "abbc"; in main() local
118 const char s[] = "ababc"; in main() local
136 const char s[] = "abcdefghijk"; in main() local
158 const char s[] = "abc"; in main() local
[all …]
Dextended.pass.cpp28 const char s[] = "a"; in main() local
44 const char s[] = "ab"; in main() local
59 const char s[] = "ab"; in main() local
66 const char s[] = "aab"; in main() local
81 const char s[] = "aab"; in main() local
88 const char s[] = "abcd"; in main() local
103 const char s[] = "abbc"; in main() local
118 const char s[] = "ababc"; in main() local
136 const char s[] = "abcdefghijk"; in main() local
158 const char s[] = "abc"; in main() local
[all …]
Dbasic.pass.cpp34 const char s[] = "a"; in main() local
50 const char s[] = "ab"; in main() local
65 const char s[] = "ab"; in main() local
72 const char s[] = "aab"; in main() local
87 const char s[] = "aab"; in main() local
94 const char s[] = "abcd"; in main() local
109 const char s[] = "abbc"; in main() local
124 const char s[] = "ababc"; in main() local
142 const char s[] = "abcdefghijk"; in main() local
164 const char s[] = "abc"; in main() local
[all …]
Decma.pass.cpp28 const char s[] = "a"; in main() local
44 const char s[] = "ab"; in main() local
59 const char s[] = "ab"; in main() local
66 const char s[] = "aab"; in main() local
81 const char s[] = "aab"; in main() local
88 const char s[] = "abcd"; in main() local
103 const char s[] = "abbc"; in main() local
118 const char s[] = "ababc"; in main() local
136 const char s[] = "abcdefghijk"; in main() local
157 const char s[] = "abc"; in main() local
[all …]
/external/libcxx/test/re/re.alg/re.alg.match/
Decma.pass.cpp28 const char s[] = "a"; in main() local
44 const char s[] = "ab"; in main() local
59 const char s[] = "ab"; in main() local
66 const char s[] = "aab"; in main() local
72 const char s[] = "aab"; in main() local
79 const char s[] = "abcd"; in main() local
85 const char s[] = "abbc"; in main() local
100 const char s[] = "ababc"; in main() local
118 const char s[] = "abcdefghijk"; in main() local
124 const char s[] = "abc"; in main() local
[all …]
Dbasic.pass.cpp34 const char s[] = "a"; in main() local
50 const char s[] = "ab"; in main() local
65 const char s[] = "ab"; in main() local
72 const char s[] = "aab"; in main() local
78 const char s[] = "aab"; in main() local
85 const char s[] = "abcd"; in main() local
91 const char s[] = "abbc"; in main() local
106 const char s[] = "ababc"; in main() local
124 const char s[] = "abcdefghijk"; in main() local
131 const char s[] = "abc"; in main() local
[all …]
Dextended.pass.cpp28 const char s[] = "a"; in main() local
44 const char s[] = "ab"; in main() local
59 const char s[] = "ab"; in main() local
66 const char s[] = "aab"; in main() local
72 const char s[] = "aab"; in main() local
79 const char s[] = "abcd"; in main() local
85 const char s[] = "abbc"; in main() local
100 const char s[] = "ababc"; in main() local
118 const char s[] = "abcdefghijk"; in main() local
125 const char s[] = "abc"; in main() local
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DCharMatcherTest.java180 private void doTestNoMatches(CharMatcher matcher, String s) { in doTestNoMatches()
182 reallyTestAllMatches(matcher.negate(), s); in doTestNoMatches() local
183 reallyTestNoMatches(matcher.precomputed(), s); in doTestNoMatches() local
184 reallyTestAllMatches(matcher.negate().precomputed(), s); in doTestNoMatches() local
185 reallyTestAllMatches(matcher.precomputed().negate(), s); in doTestNoMatches() local
186 reallyTestNoMatches(forPredicate(matcher), s); in doTestNoMatches() local
207 private void doTestAllMatches(CharMatcher matcher, String s) { in doTestAllMatches()
209 reallyTestNoMatches(matcher.negate(), s); in doTestAllMatches() local
210 reallyTestAllMatches(matcher.precomputed(), s); in doTestAllMatches() local
211 reallyTestNoMatches(matcher.negate().precomputed(), s); in doTestAllMatches() local
[all …]
/external/libcxx/test/strings/string.conversions/
Dto_wstring.pass.cpp31 std::wstring s = std::to_wstring(T(0)); in test_signed() local
37 std::wstring s = std::to_wstring(T(12345)); in test_signed() local
43 std::wstring s = std::to_wstring(T(-12345)); in test_signed() local
49 std::wstring s = std::to_wstring(std::numeric_limits<T>::max()); in test_signed() local
57 std::wstring s = std::to_wstring(std::numeric_limits<T>::min()); in test_signed() local
70 std::wstring s = std::to_wstring(T(0)); in test_unsigned() local
76 std::wstring s = std::to_wstring(T(12345)); in test_unsigned() local
82 std::wstring s = std::to_wstring(std::numeric_limits<T>::max()); in test_unsigned() local
96 std::wstring s = std::to_wstring(T(0)); in test_float() local
102 std::wstring s = std::to_wstring(T(12345)); in test_float() local
[all …]
Dto_string.pass.cpp31 std::string s = std::to_string(T(0)); in test_signed() local
37 std::string s = std::to_string(T(12345)); in test_signed() local
43 std::string s = std::to_string(T(-12345)); in test_signed() local
49 std::string s = std::to_string(std::numeric_limits<T>::max()); in test_signed() local
57 std::string s = std::to_string(std::numeric_limits<T>::min()); in test_signed() local
70 std::string s = std::to_string(T(0)); in test_unsigned() local
76 std::string s = std::to_string(T(12345)); in test_unsigned() local
82 std::string s = std::to_string(std::numeric_limits<T>::max()); in test_unsigned() local
96 std::string s = std::to_string(T(0)); in test_float() local
102 std::string s = std::to_string(T(12345)); in test_float() local
[all …]
/external/chromium_org/v8/test/webkit/
Dstring-trim.js38 {s : '\u0009', t : 'HORIZONTAL TAB'}, property
39 {s : '\u000A', t : 'LINE FEED OR NEW LINE'}, property
40 {s : '\u000B', t : 'VERTICAL TAB'}, property
41 {s : '\u000C', t : 'FORMFEED'}, property
42 {s : '\u000D', t : 'CARRIAGE RETURN'}, property
43 {s : '\u0020', t : 'SPACE'}, property
44 {s : '\u00A0', t : 'NO-BREAK SPACE'}, property
45 {s : '\u2000', t : 'EN QUAD'}, property
46 {s : '\u2001', t : 'EM QUAD'}, property
47 {s : '\u2002', t : 'EN SPACE'}, property
[all …]
/external/libcxx/test/utilities/template.bitset/bitset.members/
Dto_string.pass.cpp47 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() local
55 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >(); in test_to_string() local
63 std::string s = v.template to_string<char>(); in test_to_string() local
71 std::string s = v.to_string(); in test_to_string() local
82 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() local
90 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0'); in test_to_string() local
98 std::string s = v.template to_string<char>('0'); in test_to_string() local
106 std::string s = v.to_string('0'); in test_to_string() local
117 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() local
125 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0', '1'); in test_to_string() local
[all …]
/external/apache-harmony/security/src/test/api/java.injected/java/security/
DSignatureTest.java37 MySignature1 s = new MySignature1("ABC"); in testClone() local
46 MySignature1 s = new MySignature1("ABC"); in testGetProvider() local
53 MySignature1 s = new MySignature1("ABC"); in testGetAlgorithm() local
63 MySignature1 s = new MySignature1("ABC"); in testInitVerifyPublicKey() local
74 MySignature1 s = new MySignature1("ABC"); in testInitVerifyCertificate() local
85 MySignature1 s = new MySignature1("ABC"); in testInitSignPrivateKey() local
96 MySignature1 s = new MySignature1("ABC"); in testInitSignPrivateKeySecureRandom() local
107 MySignature1 s = new MySignature1("ABC"); in testSign() local
132 MySignature1 s = new MySignature1("ABC"); in testVerifybyteArray() local
157 MySignature1 s = new MySignature1("ABC"); in testVerifybyteArrayintint() local
[all …]
/external/chromium_org/url/
Durl_canon_stdstring.h58 void SetSchemeStr(const STR& s) { in SetSchemeStr()
61 void SetUsernameStr(const STR& s) { in SetUsernameStr()
64 void SetPasswordStr(const STR& s) { in SetPasswordStr()
67 void SetHostStr(const STR& s) { in SetHostStr()
70 void SetPortStr(const STR& s) { in SetPortStr()
73 void SetPathStr(const STR& s) { in SetPathStr()
76 void SetQueryStr(const STR& s) { in SetQueryStr()
79 void SetRefStr(const STR& s) { in SetRefStr()
/external/libcxx/test/strings/basic.string/string.capacity/
Dreserve.pass.cpp22 test(S s) in test()
35 test(S s, typename S::size_type res_arg) in test()
58 S s; in main() local
70 S s; in main() local
76 S s(100, 'a'); in main() local
89 S s; in main() local
101 S s; in main() local
107 S s(100, 'a'); in main() local
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestIntervalSet.java45 IntervalSet s = IntervalSet.of(99); in testSingleElement() local
51 IntervalSet s = new IntervalSet(); in testIsolatedElements() local
60 IntervalSet s = new IntervalSet(); in testMixedRangesAndElements() local
69 IntervalSet s = IntervalSet.of(10,20); in testSimpleAnd() local
77 IntervalSet s = IntervalSet.of('a','z'); in testRangeAndIsolatedElement() local
85 IntervalSet s = IntervalSet.of('a','z'); in testEmptyIntersection() local
93 IntervalSet s = IntervalSet.of('a'); in testEmptyIntersectionSingleElements() local
103 IntervalSet s = IntervalSet.of(50,50); in testNotSingleElement() local
111 IntervalSet s = IntervalSet.of(50,60); in testNotSet() local
121 IntervalSet s = IntervalSet.of(1,1000); in testNotEqualSet() local
[all …]
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
Dtrace-seq.c33 #define TRACE_SEQ_CHECK(s) \ argument
43 void trace_seq_init(struct trace_seq *s) in trace_seq_init()
55 void trace_seq_reset(struct trace_seq *s) in trace_seq_reset()
70 void trace_seq_destroy(struct trace_seq *s) in trace_seq_destroy()
79 static void expand_buffer(struct trace_seq *s) in expand_buffer()
102 trace_seq_printf(struct trace_seq *s, const char *fmt, ...) in trace_seq_printf()
139 trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args) in trace_seq_vprintf()
171 int trace_seq_puts(struct trace_seq *s, const char *str) in trace_seq_puts()
188 int trace_seq_putc(struct trace_seq *s, unsigned char c) in trace_seq_putc()
200 void trace_seq_terminate(struct trace_seq *s) in trace_seq_terminate()
[all …]
/external/libcxx/test/strings/basic.string/string.nonmembers/string.io/
Dstream_insert.pass.cpp27 std::string s("some text"); in main() local
34 std::string s("some text"); in main() local
42 std::wstring s(L"some text"); in main() local
49 std::wstring s(L"some text"); in main() local
59 S s("some text"); in main() local
67 S s("some text"); in main() local
76 S s(L"some text"); in main() local
84 S s(L"some text"); in main() local
/external/guava/guava-tests/test/com/google/common/testing/
DNullPointerTesterTest.java60 public static void staticOneArgCorrectlyThrowsNpe(String s) { in staticOneArgCorrectlyThrowsNpe()
63 public static void staticOneArgThrowsOtherThanNpe(String s) { in staticOneArgThrowsOtherThanNpe()
66 public static void staticOneArgShouldThrowNpeButDoesnt(String s) { in staticOneArgShouldThrowNpeButDoesnt()
70 staticOneArgNullableCorrectlyDoesNotThrowNPE(@Nullable String s) { in staticOneArgNullableCorrectlyDoesNotThrowNPE()
74 staticOneArgNullableCorrectlyThrowsOtherThanNPE(@Nullable String s) { in staticOneArgNullableCorrectlyThrowsOtherThanNPE()
78 staticOneArgNullableThrowsNPE(@Nullable String s) { in staticOneArgNullableThrowsNPE()
82 public void oneArgCorrectlyThrowsNpe(String s) { in oneArgCorrectlyThrowsNpe()
85 public void oneArgThrowsOtherThanNpe(String s) { in oneArgThrowsOtherThanNpe()
88 public void oneArgShouldThrowNpeButDoesnt(String s) { in oneArgShouldThrowNpeButDoesnt()
91 public void oneArgNullableCorrectlyDoesNotThrowNPE(@Nullable String s) { in oneArgNullableCorrectlyDoesNotThrowNPE()
[all …]
/external/chromium_org/third_party/icu/source/common/unicode/
Dutf_old.h336 #define UTF8_GET_CHAR_UNSAFE(s, i, c) { \ argument
343 #define UTF8_GET_CHAR_SAFE(s, start, i, length, c, strict) { \ argument
350 #define UTF8_NEXT_CHAR_UNSAFE(s, i, c) { \ argument
370 #define UTF8_APPEND_CHAR_UNSAFE(s, i, c) { \ argument
390 #define UTF8_FWD_1_UNSAFE(s, i) { \ argument
395 #define UTF8_FWD_N_UNSAFE(s, i, n) { \ argument
404 #define UTF8_SET_CHAR_START_UNSAFE(s, i) { \ argument
409 #define UTF8_NEXT_CHAR_SAFE(s, i, length, c, strict) { \ argument
421 #define UTF8_APPEND_CHAR_SAFE(s, i, length, c) { \ argument
430 #define UTF8_FWD_1_SAFE(s, i, length) U8_FWD_1(s, i, length) argument
[all …]
/external/icu/icu4c/source/common/unicode/
Dutf_old.h332 #define UTF8_GET_CHAR_UNSAFE(s, i, c) { \ argument
339 #define UTF8_GET_CHAR_SAFE(s, start, i, length, c, strict) { \ argument
346 #define UTF8_NEXT_CHAR_UNSAFE(s, i, c) { \ argument
366 #define UTF8_APPEND_CHAR_UNSAFE(s, i, c) { \ argument
386 #define UTF8_FWD_1_UNSAFE(s, i) { \ argument
391 #define UTF8_FWD_N_UNSAFE(s, i, n) { \ argument
400 #define UTF8_SET_CHAR_START_UNSAFE(s, i) { \ argument
405 #define UTF8_NEXT_CHAR_SAFE(s, i, length, c, strict) { \ argument
417 #define UTF8_APPEND_CHAR_SAFE(s, i, length, c) { \ argument
426 #define UTF8_FWD_1_SAFE(s, i, length) U8_FWD_1(s, i, length) argument
[all …]
/external/mesa3d/src/glsl/
Dir_hv_accept.cpp56 ir_visitor_status s = ir->accept(v); in visit_list_elements() local
85 ir_visitor_status s = v->visit_enter(this); in accept() local
128 ir_visitor_status s = v->visit_enter(this); in accept() local
144 ir_visitor_status s = v->visit_enter(this); in accept() local
156 ir_visitor_status s = v->visit_enter(this); in accept() local
182 ir_visitor_status s = v->visit_enter(this); in accept() local
247 ir_visitor_status s = v->visit_enter(this); in accept() local
266 ir_visitor_status s = v->visit_enter(this); in accept() local
289 ir_visitor_status s = v->visit_enter(this); in accept() local
301 ir_visitor_status s = v->visit_enter(this); in accept() local
[all …]
/external/chromium_org/third_party/mesa/src/src/glsl/
Dir_hv_accept.cpp56 ir_visitor_status s = ir->accept(v); in visit_list_elements() local
85 ir_visitor_status s = v->visit_enter(this); in accept() local
128 ir_visitor_status s = v->visit_enter(this); in accept() local
144 ir_visitor_status s = v->visit_enter(this); in accept() local
156 ir_visitor_status s = v->visit_enter(this); in accept() local
182 ir_visitor_status s = v->visit_enter(this); in accept() local
247 ir_visitor_status s = v->visit_enter(this); in accept() local
266 ir_visitor_status s = v->visit_enter(this); in accept() local
289 ir_visitor_status s = v->visit_enter(this); in accept() local
301 ir_visitor_status s = v->visit_enter(this); in accept() local
[all …]
/external/nanopb-c/tests/decode_unittests/
Ddecode_unittests.c74 pb_istream_t s; in main() local
91 pb_istream_t s; in main() local
101 pb_istream_t s; in main() local
110 pb_istream_t s = S("\x01\xFF\xFF\x03"); in main() local
123 pb_istream_t s; in main() local
135 pb_istream_t s; in main() local
147 pb_istream_t s; in main() local
159 pb_istream_t s; in main() local
170 pb_istream_t s; in main() local
191 pb_istream_t s; in main() local
[all …]
/external/chromium_org/third_party/webrtc/base/
Dsigslotrepeater.h34 repeater0(const this_type& s) : base_type(s) { } in repeater0()
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } in repeat()
38 void stop(base_type &s) { s.disconnect(this); } in stop()
50 repeater1(const this_type& s) : base_type(s) { } in repeater1()
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat()
54 void stop(base_type &s) { s.disconnect(this); } in stop()
66 repeater2(const this_type& s) : base_type(s) { } in repeater2()
69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat()
70 void stop(base_type &s) { s.disconnect(this); } in stop()
83 repeater3(const this_type& s) : base_type(s) { } in repeater3()
[all …]

12345678910>>...210