Home
last modified time | relevance | path

Searched defs:got (Results 1 – 25 of 551) sorted by relevance

12345678910>>...23

/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/tests/memchr/
Dprop.rs26 let got = match $mod::One::$cons(n1) { localVariable
35 let got = match $mod::One::$cons(n1) { localVariable
44 let got = match $mod::Two::$cons(n1, n2) { localVariable
53 let got = match $mod::Two::$cons(n1, n2) { localVariable
65 let got = match $mod::Three::$cons(n1, n2, n3) { localVariable
77 let got = match $mod::Three::$cons(n1, n2, n3) { localVariable
96 let got = double_ended_take( localVariable
117 let got = double_ended_take( localVariable
139 let got = double_ended_take( localVariable
154 let got = finder.iter(&data); localVariable
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/memchr-2.7.2/src/tests/memchr/
H A Dprop.rs26 let got = match $mod::One::$cons(n1) { localVariable
35 let got = match $mod::One::$cons(n1) { localVariable
44 let got = match $mod::Two::$cons(n1, n2) { localVariable
53 let got = match $mod::Two::$cons(n1, n2) { localVariable
65 let got = match $mod::Three::$cons(n1, n2, n3) { localVariable
77 let got = match $mod::Three::$cons(n1, n2, n3) { localVariable
96 let got = double_ended_take( localVariable
117 let got = double_ended_take( localVariable
139 let got = double_ended_take( localVariable
154 let got = finder.iter(&data); localVariable
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/key/
Dtests.rs210 let got = key.clone().to_vec().unwrap(); in test_cose_key_encode() localVariable
213 let got = CoseKey::from_slice(&got).unwrap(); in test_cose_key_encode() localVariable
226 let got = CoseKeySet::from_slice(&got_data).unwrap(); in test_cose_key_encode() localVariable
295 let got = key.clone().to_vec().unwrap(); in test_rfc8152_public_cose_key_decode() localVariable
298 let got = CoseKey::from_slice(&got).unwrap(); in test_rfc8152_public_cose_key_decode() localVariable
308 let got = keyset.to_vec().unwrap(); in test_rfc8152_public_cose_key_decode() localVariable
432 let got = key.clone().to_vec().unwrap(); in test_rfc8152_private_cose_key_decode() localVariable
435 let got = CoseKey::from_slice(&got).unwrap(); in test_rfc8152_private_cose_key_decode() localVariable
445 let got = keyset.to_vec().unwrap(); in test_rfc8152_private_cose_key_decode() localVariable
858 let got = testcase.rfc7049_key.to_vec().unwrap(); in test_key_canonicalize() localVariable
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/sign/
Dtests.rs100 let got = sig.clone().to_vec().unwrap(); in test_cose_signature_encode() localVariable
103 let mut got = CoseSignature::from_slice(&got).unwrap(); in test_cose_signature_encode() localVariable
121 let mut got = CoseSignature::from_slice(&sig_data).unwrap(); in test_cose_signature_decode_noncanonical() localVariable
379 let got = sign.clone().to_vec().unwrap(); in test_cose_sign_encode() localVariable
382 let mut got = CoseSign::from_slice(&got).unwrap(); in test_cose_sign_encode() localVariable
390 let got = sign.clone().to_tagged_vec().unwrap(); in test_cose_sign_encode() localVariable
394 let mut got = CoseSign::from_tagged_slice(&got).unwrap(); in test_cose_sign_encode() localVariable
747 let got = sign.clone().to_tagged_vec().unwrap(); in test_rfc8152_cose_sign_decode() localVariable
756 let mut got = CoseSign::from_tagged_slice(&got).unwrap(); in test_rfc8152_cose_sign_decode() localVariable
836 let got = sign.clone().to_vec().unwrap(); in test_cose_sign1_encode() localVariable
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/csv/src/
Ddeserializer.rs836 let got: Foo = in with_header() localVariable
877 let got: Foo = de_headers(&["y", "z"], &["42", "1.3"]).unwrap(); in with_header_missing_ok() localVariable
890 let got = de_headers::<Foo>(&["y", "z"], &[]); in with_header_no_fields() localVariable
903 let got = de_headers::<Foo>(&[], &[]); in with_header_empty() localVariable
915 let got = de_headers::<Foo>(&[], &[]); in with_header_empty_ok() localVariable
918 let got = de_headers::<Bar>(&[], &[]); in with_header_empty_ok() localVariable
921 let got = de_headers::<()>(&[], &[]); in with_header_empty_ok() localVariable
934 let got: Foo = de(&["1.3", "42", "hi"]).unwrap(); in without_header() localVariable
945 let got: i32 = de(&["42"]).unwrap(); in one_field() localVariable
952 let got: i128 = de(&["2010223372036854775808"]).unwrap(); localVariable
[all …]
Dserializer.rs867 let got = serialize(true); in bool() localVariable
876 let got = serialize(12345); in integer() localVariable
886 let got = serialize(i128::max_value() as u128 + 1); localVariable
895 let got = serialize(i128::max_value()); localVariable
905 let got = serialize(1.23); in float() localVariable
914 let got = serialize(::std::f64::NAN); in float_nan() localVariable
923 let got = serialize('☃'); in char() localVariable
932 let got = serialize("how\nare\n\"you\"?"); in str() localVariable
941 let got = serialize(b"how\nare\n\"you\"?".as_bstr()); in bytes() localVariable
950 let got = serialize(None::<()>); in option() localVariable
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/encrypt/
Dtests.rs69 let got = recipient.clone().to_vec().unwrap(); in test_cose_recipient_decode() localVariable
72 let mut got = CoseRecipient::from_slice(&got).unwrap(); in test_cose_recipient_decode() localVariable
176 let got = encrypt.clone().to_vec().unwrap(); in test_cose_encrypt_decode() localVariable
179 let mut got = CoseEncrypt::from_slice(&got).unwrap(); in test_cose_encrypt_decode() localVariable
471 let got = encrypt.clone().to_tagged_vec().unwrap(); in test_rfc8152_cose_encrypt_decode() localVariable
474 let mut got = CoseEncrypt::from_tagged_slice(&got).unwrap(); in test_rfc8152_cose_encrypt_decode() localVariable
510 let got = encrypt.clone().to_vec().unwrap(); in test_cose_encrypt0_decode() localVariable
513 let mut got = CoseEncrypt0::from_slice(&got).unwrap(); in test_cose_encrypt0_decode() localVariable
642 let got = encrypt.clone().to_tagged_vec().unwrap(); in test_rfc8152_cose_encrypt0_decode() localVariable
645 let mut got = CoseEncrypt0::from_tagged_slice(&got).unwrap(); in test_rfc8152_cose_encrypt0_decode() localVariable
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/mac/
Dtests.rs55 let got = mac.clone().to_vec().unwrap(); in test_cose_mac_decode() localVariable
58 let mut got = CoseMac::from_slice(&got).unwrap(); in test_cose_mac_decode() localVariable
349 let got = mac.clone().to_tagged_vec().unwrap(); in test_rfc8152_cose_mac_decode() localVariable
352 let mut got = CoseMac::from_tagged_slice(&got).unwrap(); in test_rfc8152_cose_mac_decode() localVariable
389 let got = mac.clone().to_vec().unwrap(); in test_cose_mac0_decode() localVariable
392 let mut got = CoseMac0::from_slice(&got).unwrap(); in test_cose_mac0_decode() localVariable
494 let got = mac.clone().to_tagged_vec().unwrap(); in test_rfc8152_cose_mac0_decode() localVariable
497 let mut got = CoseMac0::from_tagged_slice(&got).unwrap(); in test_rfc8152_cose_mac0_decode() localVariable
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/util/
H A Dalphabet.rs1061 let got: Vec<Unit> = classes.representatives(..).collect(); in representatives() localVariable
1074 let got: Vec<Unit> = classes.representatives(..0).collect(); in representatives() localVariable
1076 let got: Vec<Unit> = classes.representatives(1..1).collect(); in representatives() localVariable
1078 let got: Vec<Unit> = classes.representatives(255..255).collect(); in representatives() localVariable
1083 let got: Vec<Unit> = classes in representatives() localVariable
1092 let got: Vec<Unit> = classes.representatives(..=255).collect(); in representatives() localVariable
1104 let got: Vec<Unit> = classes.representatives(b'b'..=b'd').collect(); in representatives() localVariable
1108 let got: Vec<Unit> = classes.representatives(b'a'..=b'd').collect(); in representatives() localVariable
1112 let got: Vec<Unit> = classes.representatives(b'b'..=b'e').collect(); in representatives() localVariable
1116 let got: Vec<Unit> = classes.representatives(b'A'..=b'Z').collect(); in representatives() localVariable
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/common/
Dtests.rs45 let got = label.clone().to_vec().unwrap(); in test_label_encode() localVariable
48 let got = Label::from_slice(&got).unwrap(); in test_label_encode() localVariable
196 let got = label.clone().to_vec().unwrap(); in test_registered_label_encode() localVariable
199 let got = RegisteredLabel::from_slice(&got).unwrap(); in test_registered_label_encode() localVariable
300 let got = label.clone().to_vec().unwrap(); in test_registered_label_with_private_encode() localVariable
303 let got = RegisteredLabelWithPrivate::from_slice(&got).unwrap(); in test_registered_label_with_private_encode() localVariable
401 let got = Label::from_slice(&data).unwrap(); in test_large_label_decode() localVariable
/aosp_15_r20/external/deqp/modules/egl/
H A DteglApiCase.cpp110 void ApiCase::expectBoolean(EGLBoolean expected, EGLBoolean got) in expectBoolean()
121 void ApiCase::expectNoContext(EGLContext got) in expectNoContext()
132 void ApiCase::expectNoSurface(EGLSurface got) in expectNoSurface()
143 void ApiCase::expectNoDisplay(EGLDisplay got) in expectNoDisplay()
153 void ApiCase::expectNull(const void *got) in expectNull()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/
H A Dtransducer.rs233 let got = search(&set, &aut); in unanchored() localVariable
237 let got = search(&set, &aut); in unanchored() localVariable
241 let got = search(&set, &aut); in unanchored() localVariable
254 let got = search(&set, &aut); in anchored() localVariable
258 let got = search(&set, &aut); in anchored() localVariable
267 let got = search(&set, &aut); in anchored() localVariable
/aosp_15_r20/libcore/ojluni/src/test/java/nio/Buffer/
H A DBasic.java86 String got, char gotChar) in fail()
109 static void fail(Buffer b, long expected, long got) { in fail()
120 static void ck(Buffer b, long got, long expected) { in ck()
125 static void ck(Buffer b, float got, float expected) { in ck()
132 static void ck(Buffer b, double got, double expected) { in ck()
/aosp_15_r20/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DNetdEventListenerServiceTest.java130 String got = events2[i + 2]; in testWakeupEventLogging() local
150 String got = events3[i]; in testWakeupEventLogging() local
204 String got = flushStatistics(); in testWakeupStatsLogging() local
300 String got = flushStatistics(); in testDnsLogging() local
416 String got = flushStatistics(); in testConnectLogging() local
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/header/
Dtests.rs152 let got = header.clone().to_vec().unwrap(); in test_header_encode() localVariable
155 let mut got = Header::from_slice(&got).unwrap(); in test_header_encode() localVariable
170 let mut got = ProtectedHeader::from_slice(&protected_data).unwrap(); in test_header_encode() localVariable
179 let mut got = ProtectedHeader::from_cbor_bstr(prot_bstr_val).unwrap(); in test_header_encode() localVariable
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/
Dtransducer.rs69 let got = search(&set, &dfa); in dense_anywhere() localVariable
79 let got = search(&set, &dfa); in dense_anchored() localVariable
89 let got = search(&set, &dfa); in sparse_anywhere() localVariable
104 let got = search(&set, &dfa); in sparse_anchored() localVariable
/aosp_15_r20/system/tools/aidl/tests/
Daidl_test_client_ndk_primitives_test.cpp44 std::shared_ptr<INamedCallback> got; in TEST_F() local
51 std::vector<std::shared_ptr<INamedCallback>> got; in TEST_F() local
66 std::optional<std::vector<std::shared_ptr<INamedCallback>>> got; in TEST_F() local
85 std::optional<std::vector<std::shared_ptr<INamedCallback>>> got; in TEST_F() local
/aosp_15_r20/external/bazelbuild-rules_rust/crate_universe/src/
H A Dutils.rs67 let got = sanitize_repository_name(name); in test_sanitize_repository_name() localVariable
74 let got = sanitize_repository_name(name); in test_sanitize_repository_name_no_change() localVariable
90 let got = normalize_cargo_file_paths(outputs, outdir.path()); in test_normalize_cargo_file_paths() localVariable
103 let got = normalize_cargo_file_paths(outputs, outdir.path()); in test_normalize_cargo_file_paths_no_rename() localVariable
/aosp_15_r20/external/rust/android-crates-io/crates/regex/tests/
Dmacros.rs29 let got: Vec<Option<_>> = match r.captures(text) { localVariable
62 let got: Vec<_> = localVariable
88 let got: Vec<_> = localVariable
120 let got: Vec<_> = matches.into_iter().collect(); localVariable
/aosp_15_r20/system/security/keystore2/src/sw_keyblob/
H A Dtests.rs338 let got = KeyBlob::new_from_serialized(&input, &hidden).expect("invalid keyblob!"); in test_key_new_from_serialized() localVariable
366 let mut got = Vec::new(); in test_add_der_len() localVariable
404 let got = pkcs8_wrap_nist_key(&input, EcCurve::P_256).unwrap(); in test_pkcs8_wrap_key_p256() localVariable
447 let got = pkcs8_wrap_nist_key(&input, EcCurve::P_521).unwrap(); in test_pkcs8_wrap_key_p521() localVariable
/aosp_15_r20/external/cronet/net/cookies/
H A Dcookie_partition_key_unittest.cc55 base::expected<std::optional<CookiePartitionKey>, std::string> got = in TEST_P() local
99 base::expected<CookiePartitionKey, std::string> got = in TEST_P() local
183 got = CookiePartitionKey::Serialize(tc.input); in TEST_P() local
250 std::optional<CookiePartitionKey> got = in TEST_P() local
279 auto got = CookiePartitionKey::FromWire( in TEST_P() local
306 std::optional<CookiePartitionKey> got = in TEST_P() local
/aosp_15_r20/frameworks/compile/mclinker/lib/Target/X86/
DX86LDBackend.cpp350 LDSection& got = file_format->getGOT(); in initTargetSections() local
473 X86_32GOTEntry* got = 0; in emitGOTSectionData() local
496 X86_32GOTEntry* got = 0; in emitGOTPLTSectionData() local
617 LDSection& got = file_format->getGOT(); in initTargetSections() local
658 X86_64GOTEntry* got = 0; in emitGOTSectionData() local
681 X86_64GOTEntry* got = 0; in emitGOTPLTSectionData() local
/aosp_15_r20/external/crosvm/devices/src/
H A Dpflash.rs294 let mut got = [0u8; 4]; in read() localVariable
311 let mut got = [0u8; 1]; in write() localVariable
328 let mut got = [0u8; 4]; in write() localVariable
350 let mut got = [0u8; 4]; in erase() localVariable
378 let mut got = [0u8; 4]; in status() localVariable
/aosp_15_r20/cts/tests/tests/graphics/src/android/graphics/cts/
H A DGainmapTest.java489 Color got = gainmapImage.getColor(x, y); in testDecodeGainmapBitmapRegionDecoderWithInSampleSizeDoesNotInset() local
633 Color got = gainmapImage.getColor(x, 0); in testCompress8888() local
658 Color got = gainmapImage.getColor(x, 0); in testISOCompress8888() local
679 Color got = gainmapImage.getColor(x, 0); in testCompressA8ByImageDecoder() local
699 Color got = gainmapImage.getColor(x, 0); in testCompressA8ByBitmapRegionDecoder() local
717 Color got = gainmapImage.getColor(x, 0); in testCompressA8ByBitmapFactory() local
/aosp_15_r20/system/keymint/common/src/tag/info/
H A Dtests.rs27 let got: BTreeSet<Tag> = AUTO_ADDED_CHARACTERISTICS.iter().cloned().collect(); in test_auto_added_const() localVariable
39 let got: BTreeSet<Tag> = KEYSTORE_ENFORCED_CHARACTERISTICS.iter().cloned().collect(); in test_keystore_enforced_const() localVariable
51 let got: BTreeSet<Tag> = KEYMINT_ENFORCED_CHARACTERISTICS.iter().cloned().collect(); in test_keymint_enforced_const() localVariable

12345678910>>...23