/third_party/icu/icu4c/source/test/cintltst/ |
H A D | nccbtst.c | 2622 UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, in testConvertFromUnicode() argument 2763 printSeq(expect, expectLen); in testConvertFromUnicode() 2779 printSeqErr(expect, expectLen); in testConvertFromUnicode() 2802 if(!memcmp(junkout, expect, expectLen)) in testConvertFromUnicode() 2815 printSeqErr(expect, expectLen); in testConvertFromUnicode() 2820 UBool testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen, in testConvertToUnicode() argument 2959 printUSeq(expect, expectlen); in testConvertToUnicode() 2995 if(!memcmp(junkout, expect, expectlen*2)) in testConvertToUnicode() 3007 printUSeqErr(expect, expectlen); in testConvertToUnicode() 3013 UBool testConvertFromUnicodeWithContext(const UChar *source, int sourceLen, const uint8_t *expect, in argument 3193 testConvertToUnicodeWithContext( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen, const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets, const char *mySubChar, int8_t len, const void* context, UErrorCode expectedError) testConvertToUnicodeWithContext() argument [all...] |
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | variables.py | 453 self.expect = "" 457 if all([self.through, self.expect, self.actual]): 462 return "{}, expect:{}, actual:{}".format(self.through, self.expect,
|
/test/testfwk/arkxtest/jsunit/src/ |
H A D | service.js | 24 message: 'expect true, actualValue is ' + actualValue 30 let msg = 'expect ' + actualValue + ' equals ' + args[0]; 34 msg = 'expect ' + actualValue + aClassName + ' equals ' + args[0] + bClassName + 'strict mode inspect type'; 64 result.message = `expect to throw ${args[0]} , actual throw ${throwError.message}`; 1020 expect(actualValue) { 1142 expect: function (actualValue) { 1143 return _this.expect(actualValue);
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationServiceTest.java | 423 ULocale expect = new ULocale(DATA[(i*3)+1]); in TestGetFunctionalEquivalent() 426 if(!actual.equals(expect) || (expectAvailable!=isAvailable[0])) { in TestGetFunctionalEquivalent() 428 "expected " + expect + " avail " + new Boolean(expectAvailable)); in TestGetFunctionalEquivalent()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | cpdtrtst.cpp | 358 expect(*ct1, s, s); in TestTransliterate() 397 expect(*ct2, Data[i+1], Data[i+2]); in TestTransliterate() 409 void CompoundTransliteratorTest::expect(const CompoundTransliterator& t, in expect() function in CompoundTransliteratorTest
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/iterator/ |
H A D | TestUCharacterIterator.java | 269 // src and expect strings in TestPreviousNext() 321 int expect[]={ in previousNext() 328 // expected src indexes corresponding to expect indexes in previousNext() 337 // initial indexes into the src and expect strings in previousNext() 349 UCharIterator iter32 = new UCharIterator(expect, expect.length, in previousNext()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/ |
H A D | TestUCharacterIterator.java | 266 // src and expect strings in TestPreviousNext() 318 int expect[]={ in previousNext() 325 // expected src indexes corresponding to expect indexes in previousNext() 334 // initial indexes into the src and expect strings in previousNext() 346 UCharIterator iter32 = new UCharIterator(expect, expect.length, in previousNext()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationServiceTest.java | 424 ULocale expect = new ULocale(DATA[(i*3)+1]); in TestGetFunctionalEquivalent() 427 if(!actual.equals(expect) || (expectAvailable!=isAvailable[0])) { in TestGetFunctionalEquivalent() 429 "expected " + expect + " avail " + new Boolean(expectAvailable)); in TestGetFunctionalEquivalent()
|
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
H A D | fanotify09.c | 334 uint32_t expect, const char *expect_filename) in verify_event() 338 if (event->mask != expect) { in verify_event() 341 (unsigned long long)expect, in verify_event() 333 verify_event(int group, struct fanotify_event_metadata *event, uint32_t expect, const char *expect_filename) verify_event() argument
|
/third_party/rust/crates/clap/clap_complete_fig/src/ |
H A D | fig.rs | 40 .expect("Failed to write to generated file"); in generate() 356 if !arg.get_num_args().expect("built").takes_values() { in gen_args() 371 let num_args = arg.get_num_args().expect("built"); in gen_args()
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | subcommands.rs | 407 assert!(*m.get_one::<bool>("global").expect("defaulted by clap")); in issue_2494_subcommand_is_present() 414 assert!(*m.get_one::<bool>("global").expect("defaulted by clap")); in issue_2494_subcommand_is_present() 418 assert!(!*m.get_one::<bool>("global").expect("defaulted by clap")); in issue_2494_subcommand_is_present()
|
H A D | env.rs | 64 assert!(*m.get_one::<bool>("present").expect("defaulted by clap")); in env_bool_literal() 65 assert!(!*m.get_one::<bool>("negated").expect("defaulted by clap")); in env_bool_literal() 66 assert!(!*m.get_one::<bool>("absent").expect("defaulted by clap")); in env_bool_literal()
|
/third_party/python/Lib/test/ |
H A D | test_platform.py | 289 expect = platform._unknown_as_blank(proc_res) 291 expect = '' 292 self.assertEqual(platform.uname().processor, expect)
|
/third_party/rust/crates/regex/regex-capi/ctest/ |
H A D | test.c | 211 bool test_iter_capture_name(char *expect, char *given) { in test_iter_capture_name() argument 213 if (strcmp(expect, given)) { in test_iter_capture_name() 218 expect, given); in test_iter_capture_name()
|
/commonlibrary/rust/ylong_http/ylong_http_client/tests/ |
H A D | sdv_async_http_body_io.rs | 102 .expect("server send order failed !"); in sdv_body_chunk_and_trailer()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/benches/bin/ |
H A D | ylong_tokio_spawn.rs | 31 .expect("fail to execute"); in get_memory_info()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/ |
H A D | spawn.rs | 41 let func = self.0.take().expect("blocking tasks cannot be polled after finished"); in poll()
|
/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/test/unittest/pasteboardperf/ |
H A D | PasteBoardDelayPerfJsunit.test.js | 16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
|
/test/xts/hats/ai/nnrt/hdi/v1_0/common/ |
H A D | hdi_nnrt_test_utils.h | 59 bool CheckExpectOutput(const std::vector<float> &output, const std::vector<float> &expect);
|
/test/xts/hats/ai/nnrt/hdi/v2_0/common/ |
H A D | hdi_nnrt_test_utils.h | 59 bool CheckExpectOutput(const std::vector<float> &output, const std::vector<float> &expect);
|
/third_party/node/test/parallel/ |
H A D | test-inspector-tracing-domain.js | 70 assert.ok(category === value, `${category} is out of order, expect ${value}`);
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | parse.h | 143 struct token *expect(struct token *, int, const char *);
|
/third_party/node/deps/openssl/openssl/crypto/store/ |
H A D | store_local.h | 90 OSSL_STORE_expect_fn expect; member
|
/third_party/rust/crates/clap/examples/ |
H A D | find.rs | 43 .expect("id came from matches"); in from_matches() 69 .expect("id came from matches"), in extract()
|
/third_party/openssl/crypto/store/ |
H A D | store_local.h | 90 OSSL_STORE_expect_fn expect; member
|