/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/v8/test/mjsunit/third_party/ |
D | string-trim.js | 48 {s : '\u0009', t : 'HORIZONTAL TAB'}, property 49 {s : '\u000A', t : 'LINE FEED OR NEW LINE'}, property 50 {s : '\u000B', t : 'VERTICAL TAB'}, property 51 {s : '\u000C', t : 'FORMFEED'}, property 52 {s : '\u000D', t : 'CARRIAGE RETURN'}, property 53 {s : '\u0020', t : 'SPACE'}, property 54 {s : '\u00A0', t : 'NO-BREAK SPACE'}, property 55 {s : '\u2000', t : 'EN QUAD'}, property 56 {s : '\u2001', t : 'EM QUAD'}, property 57 {s : '\u2002', t : 'EN SPACE'}, property [all …]
|
/external/chromium_org/v8/test/mjsunit/third_party/ |
D | string-trim.js | 48 {s : '\u0009', t : 'HORIZONTAL TAB'}, property 49 {s : '\u000A', t : 'LINE FEED OR NEW LINE'}, property 50 {s : '\u000B', t : 'VERTICAL TAB'}, property 51 {s : '\u000C', t : 'FORMFEED'}, property 52 {s : '\u000D', t : 'CARRIAGE RETURN'}, property 53 {s : '\u0020', t : 'SPACE'}, property 54 {s : '\u00A0', t : 'NO-BREAK SPACE'}, property 55 {s : '\u2000', t : 'EN QUAD'}, property 56 {s : '\u2001', t : 'EM QUAD'}, property 57 {s : '\u2002', t : 'EN SPACE'}, property [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 | 38 MySignature1 s = new MySignature1("ABC"); in testClone() local 47 MySignature1 s = new MySignature1("ABC"); in testGetProvider() local 54 MySignature1 s = new MySignature1("ABC"); in testGetAlgorithm() local 64 MySignature1 s = new MySignature1("ABC"); in testInitVerifyPublicKey() local 75 MySignature1 s = new MySignature1("ABC"); in testInitVerifyCertificate() local 86 MySignature1 s = new MySignature1("ABC"); in testInitSignPrivateKey() local 97 MySignature1 s = new MySignature1("ABC"); in testInitSignPrivateKeySecureRandom() local 108 MySignature1 s = new MySignature1("ABC"); in testSign() local 133 MySignature1 s = new MySignature1("ABC"); in testVerifybyteArray() local 158 MySignature1 s = new MySignature1("ABC"); in testVerifybyteArrayintint() local [all …]
|
/external/chromium_org/url/ |
D | url_canon_stdstring.h | 59 void SetSchemeStr(const STR& s) { in SetSchemeStr() 63 void SetUsernameStr(const STR& s) { in SetUsernameStr() 67 void SetPasswordStr(const STR& s) { in SetPasswordStr() 71 void SetHostStr(const STR& s) { in SetHostStr() 75 void SetPortStr(const STR& s) { in SetPortStr() 79 void SetPathStr(const STR& s) { in SetPathStr() 83 void SetQueryStr(const STR& s) { in SetQueryStr() 87 void SetRefStr(const STR& s) { in SetRefStr()
|
/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/clang/test/Analysis/ |
D | array-struct-region.cpp | 23 const struct S *operator -(const struct S &s) { return &s; } in operator -() 24 bool operator ~(const struct S &s) { return &s != &s; } in operator ~() 30 struct S s = { 42 }; in getS() local 39 struct S s = getS(); in testAssignment() local 78 int getConstrainedField(struct S s) { in getConstrainedField() 83 int getAssignedField(struct S s) { in getAssignedField() 116 const S &s = getS(); in testReferenceAssignment() local 132 int getConstrainedFieldRef(const S &s) { in getConstrainedFieldRef() 137 bool checkThis(const S &s) { in checkThis() 141 bool checkThisOp(const S &s) { in checkThisOp() [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/chromium_org/third_party/icu/source/common/unicode/ |
D | utf_old.h | 336 #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 …]
|
D | utf8.h | 197 #define U8_GET_UNSAFE(s, i, c) { \ argument 221 #define U8_GET(s, start, i, length, c) { \ argument 246 #define U8_NEXT_UNSAFE(s, i, c) { \ argument 283 #define U8_NEXT(s, i, length, c) { \ argument 325 #define U8_APPEND_UNSAFE(s, i, c) { \ argument 361 #define U8_APPEND(s, i, capacity, c, isError) { \ argument 386 #define U8_FWD_1_UNSAFE(s, i) { \ argument 401 #define U8_FWD_1(s, i, length) { \ argument 427 #define U8_FWD_N_UNSAFE(s, i, n) { \ argument 448 #define U8_FWD_N(s, i, length, n) { \ argument [all …]
|
D | utf16.h | 166 #define U16_GET_UNSAFE(s, i, c) { \ argument 197 #define U16_GET(s, start, i, length, c) { \ argument 234 #define U16_NEXT_UNSAFE(s, i, c) { \ argument 261 #define U16_NEXT(s, i, length, c) { \ argument 285 #define U16_APPEND_UNSAFE(s, i, c) { \ argument 311 #define U16_APPEND(s, i, capacity, c, isError) { \ argument 332 #define U16_FWD_1_UNSAFE(s, i) { \ argument 349 #define U16_FWD_1(s, i, length) { \ argument 367 #define U16_FWD_N_UNSAFE(s, i, n) { \ argument 388 #define U16_FWD_N(s, i, length, n) { \ argument [all …]
|
/external/icu4c/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 …]
|
D | utf8.h | 223 #define U8_GET_UNSAFE(s, i, c) { \ argument 250 #define U8_GET(s, start, i, length, c) { \ argument 282 #define U8_GET_OR_FFFD(s, start, i, length, c) { \ argument 308 #define U8_NEXT_UNSAFE(s, i, c) { \ argument 344 #define U8_NEXT(s, i, length, c) { \ argument 396 #define U8_NEXT_OR_FFFD(s, i, length, c) { \ argument 437 #define U8_APPEND_UNSAFE(s, i, c) { \ argument 473 #define U8_APPEND(s, i, capacity, c, isError) { \ argument 498 #define U8_FWD_1_UNSAFE(s, i) { \ argument 515 #define U8_FWD_1(s, i, length) { \ argument [all …]
|
D | utf16.h | 164 #define U16_GET_UNSAFE(s, i, c) { \ argument 198 #define U16_GET(s, start, i, length, c) { \ argument 235 #define U16_NEXT_UNSAFE(s, i, c) { \ argument 264 #define U16_NEXT(s, i, length, c) { \ argument 288 #define U16_APPEND_UNSAFE(s, i, c) { \ argument 314 #define U16_APPEND(s, i, capacity, c, isError) { \ argument 335 #define U16_FWD_1_UNSAFE(s, i) { \ argument 354 #define U16_FWD_1(s, i, length) { \ argument 372 #define U16_FWD_N_UNSAFE(s, i, n) { \ argument 395 #define U16_FWD_N(s, i, length, n) { \ argument [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 …]
|
/external/mesa3d/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 …]
|
/external/chromium/googleurl/src/ |
D | url_canon_stdstring.h | 97 void SetSchemeStr(const STR& s) { in SetSchemeStr() 101 void SetUsernameStr(const STR& s) { in SetUsernameStr() 105 void SetPasswordStr(const STR& s) { in SetPasswordStr() 109 void SetHostStr(const STR& s) { in SetHostStr() 113 void SetPortStr(const STR& s) { in SetPortStr() 117 void SetPathStr(const STR& s) { in SetPathStr() 121 void SetQueryStr(const STR& s) { in SetQueryStr() 125 void SetRefStr(const STR& s) { in SetRefStr()
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | sigslotrepeater.h | 51 repeater0(const this_type& s) : base_type(s) { } in repeater0() 54 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } in repeat() 55 void stop(base_type &s) { s.disconnect(this); } in stop() 67 repeater1(const this_type& s) : base_type(s) { } in repeater1() 70 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat() 71 void stop(base_type &s) { s.disconnect(this); } in stop() 83 repeater2(const this_type& s) : base_type(s) { } in repeater2() 86 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat() 87 void stop(base_type &s) { s.disconnect(this); } in stop() 100 repeater3(const this_type& s) : base_type(s) { } in repeater3() [all …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
D | StringTest.java | 72 String s = new String(new byte[] { 65, 66, 67, 68, 69 }, 0); in test_Constructor$BI() local 98 String s = new String(new byte[] { 65, 66, 67, 68, 69 }, 0, 1, 3); in test_Constructor$BIII() local 108 String s = new String(new byte[] { 65, 66, 67, 68, 69 }, 0, 5, "8859_1"); in test_Constructor$BIILjava_lang_String() local 123 String s = new String(new byte[] { 65, 66, 67, 68, 69 }, "8859_1"); in test_Constructor$BLjava_lang_String() local 140 String s = new String(buf, 0, buf.length); in test_Constructor$CII() local 154 String s = new String("Hello World"); in test_ConstructorLjava_lang_String() local 234 String s = "abc"; in test_contentEqualsLjava_lang_CharSequence() local 256 String s = "abc"; in test_boolean_contentEquals_StringBuffer() local 279 String s = "abcdefghijklmnopqrstuvwxyz"; in test_containsLjava_lang_CharSequence() local 356 String s = "abc"; in test_offsetByCodePoints_II() local [all …]
|
/external/qemu/android/utils/ |
D | stralloc.c | 54 stralloc_reset( stralloc_t* s ) in stralloc_reset() 63 stralloc_ready( stralloc_t* s, unsigned int len ) in stralloc_ready() 85 stralloc_readyplus( stralloc_t* s, unsigned int len ) in stralloc_readyplus() 98 stralloc_copy( stralloc_t* s, stralloc_t* from ) in stralloc_copy() 106 stralloc_append( stralloc_t* s, stralloc_t* from ) in stralloc_append() 114 stralloc_add_c( stralloc_t* s, int c ) in stralloc_add_c() 120 stralloc_add_str( stralloc_t* s, const char* str ) in stralloc_add_str() 126 stralloc_add_bytes( stralloc_t* s, const void* from, unsigned len ) in stralloc_add_bytes() 134 stralloc_cstr( stralloc_t* s ) in stralloc_cstr() 142 stralloc_lstrip( stralloc_t* s ) in stralloc_lstrip() [all …]
|
/external/clang/utils/analyzer/ |
D | SumTimerInfo.py | 39 s = line.split() variable 45 s = line.split() variable 48 s = line.split() variable 51 s = line.split() variable 54 s = line.split() variable 57 s = line.split() variable 61 s = line.split() variable 64 s = line.split() variable 67 s = line.split() variable 70 s = line.split() variable
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
D | d1_lib.c | 95 int dtls1_new(SSL *s) in dtls1_new() 133 static void dtls1_clear_queues(SSL *s) in dtls1_clear_queues() 186 void dtls1_free(SSL *s) in dtls1_free() 201 void dtls1_clear(SSL *s) in dtls1_clear() 247 long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg) in dtls1_ctrl() 293 void dtls1_start_timer(SSL *s) in dtls1_start_timer() 318 struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft) in dtls1_get_timeout() 363 int dtls1_is_timer_expired(SSL *s) in dtls1_is_timer_expired() 383 void dtls1_double_timeout(SSL *s) in dtls1_double_timeout() 391 void dtls1_stop_timer(SSL *s) in dtls1_stop_timer() [all …]
|
/external/openssl/ssl/ |
D | d1_lib.c | 95 int dtls1_new(SSL *s) in dtls1_new() 133 static void dtls1_clear_queues(SSL *s) in dtls1_clear_queues() 186 void dtls1_free(SSL *s) in dtls1_free() 201 void dtls1_clear(SSL *s) in dtls1_clear() 247 long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg) in dtls1_ctrl() 293 void dtls1_start_timer(SSL *s) in dtls1_start_timer() 318 struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft) in dtls1_get_timeout() 363 int dtls1_is_timer_expired(SSL *s) in dtls1_is_timer_expired() 383 void dtls1_double_timeout(SSL *s) in dtls1_double_timeout() 391 void dtls1_stop_timer(SSL *s) in dtls1_stop_timer() [all …]
|
/external/qemu/ |
D | migration.c | 53 MigrationState *s = NULL; in do_migrate() local 77 MigrationState *s = current_migration; in do_migrate_cancel() local 87 FdMigrationState *s; in do_migrate_set_speed() local 142 MigrationState *s = current_migration; in do_info_migrate() local 168 void migrate_fd_monitor_suspend(FdMigrationState *s) in migrate_fd_monitor_suspend() 178 void migrate_fd_error(FdMigrationState *s) in migrate_fd_error() 185 void migrate_fd_cleanup(FdMigrationState *s) in migrate_fd_cleanup() 206 FdMigrationState *s = opaque; in migrate_fd_put_notify() local 214 FdMigrationState *s = opaque; in migrate_fd_put_buffer() local 230 void migrate_fd_connect(FdMigrationState *s) in migrate_fd_connect() [all …]
|