/external/libcxx/test/re/re.alg/re.alg.search/ |
D | awk.pass.cpp | 28 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 …]
|
D | extended.pass.cpp | 28 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 …]
|
D | basic.pass.cpp | 34 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 …]
|
D | ecma.pass.cpp | 28 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/ |
D | ecma.pass.cpp | 28 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 …]
|
D | extended.pass.cpp | 28 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 …]
|
D | basic.pass.cpp | 34 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 …]
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Parsing.pxd | 10 cpdef p_module(PyrexScanner s, pxd, full_module_name, ctx=*) 11 cpdef p_code(PyrexScanner s, level= *, ctx=*) 15 cdef p_ident(PyrexScanner s, message =*) 16 cdef p_ident_list(PyrexScanner s) 18 cdef tuple p_binop_operator(PyrexScanner s) 19 cdef p_binop_expr(PyrexScanner s, ops, p_sub_expr_func p_sub_expr) 20 cdef p_lambdef(PyrexScanner s, bint allow_conditional=*) 21 cdef p_lambdef_nocond(PyrexScanner s) 22 cdef p_test(PyrexScanner s) 23 cdef p_test_nocond(PyrexScanner s) [all …]
|
D | Parsing.py | 53 def p_ident(s, message = "Expected an identifier"): argument 61 def p_ident_list(s): argument 77 def p_binop_operator(s): argument 83 def p_binop_expr(s, ops, p_sub_expr): argument 98 def p_lambdef(s, allow_conditional=True): argument 120 def p_lambdef_nocond(s): argument 125 def p_test(s): argument 141 def p_test_nocond(s): argument 149 def p_or_test(s): argument 152 def p_rassoc_binop_expr(s, ops, p_subexpr): argument [all …]
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | CharMatcherTest.java | 180 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/ |
D | to_wstring.pass.cpp | 31 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 …]
|
D | to_string.pass.cpp | 31 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/ |
D | string-trim.js | 38 {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/apache-harmony/security/src/test/api/java.injected/java/security/ |
D | SignatureTest.java | 37 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/libcxx/test/utilities/template.bitset/bitset.members/ |
D | to_string.pass.cpp | 47 …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/chromium_org/url/ |
D | url_canon_stdstring.h | 58 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/ |
D | reserve.pass.cpp | 22 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/ |
D | TestIntervalSet.java | 45 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/ |
D | trace-seq.c | 33 #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/guava/guava-tests/test/com/google/common/testing/ |
D | NullPointerTesterTest.java | 60 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/libcxx/test/strings/basic.string/string.nonmembers/string.io/ |
D | stream_insert.pass.cpp | 27 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/chromium_org/third_party/icu/source/common/unicode/ |
D | utf_old.h | 332 #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/icu/icu4c/source/common/unicode/ |
D | utf_old.h | 332 #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/chromium_org/third_party/boringssl/src/ssl/ |
D | d1_lib.c | 119 int dtls1_new(SSL *s) in dtls1_new() 162 static void dtls1_clear_queues(SSL *s) in dtls1_clear_queues() 218 void dtls1_free(SSL *s) in dtls1_free() 234 void dtls1_clear(SSL *s) in dtls1_clear() 280 long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg) in dtls1_ctrl() 326 void dtls1_start_timer(SSL *s) in dtls1_start_timer() 342 static OPENSSL_timeval* dtls1_get_timeout(SSL *s, OPENSSL_timeval* timeleft) in dtls1_get_timeout() 387 int dtls1_is_timer_expired(SSL *s) in dtls1_is_timer_expired() 407 void dtls1_double_timeout(SSL *s) in dtls1_double_timeout() 415 void dtls1_stop_timer(SSL *s) in dtls1_stop_timer() [all …]
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
D | ir_hv_accept.cpp | 56 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 …]
|