/aosp_15_r20/tools/netsim/rust/common/src/util/ |
H A D | ini_file.rs | 8 // http://www.apache.org/licenses/LICENSE-2.0 26 /// external/qemu/android/android-emu-base/android/base/files/IniFile.h 39 /// * `filepath` - The path to the ini file. 40 pub fn new(filepath: PathBuf) -> IniFile { in new() 50 pub fn read(&mut self) -> Result<(), Box<dyn Error>> { in read() 62 let key = parts.unwrap().0.trim(); in read() localVariable 64 self.data.insert(key.to_owned(), value.to_owned()); in read() 75 pub fn write(&self) -> Result<(), Box<dyn Error>> { in write() 77 for (key, value) in &self.data { in write() 78 writeln!(&mut f, "{}={}", key, value)?; in write() [all …]
|
/aosp_15_r20/external/licenseclassifier/stringclassifier/ |
H A D | classifier.go | 7 // http://www.apache.org/licenses/LICENSE-2.0 39 // for _, unknown := range unknownTexts { 40 // m := sc.NearestMatch(unknown.Text) 42 // unknown.Name, m.Name, m.Confidence) 57 "github.com/sergi/go-diff/diffmatchpatch" 113 key string member 120 // for key, an error is returned. 121 func (c *Classifier) AddValue(key, value string) error { 124 if _, ok := c.values[key]; ok { 125 return fmt.Errorf("value already registered with key %q", key) [all …]
|
/aosp_15_r20/packages/apps/Settings/src/com/android/settings/notification/zen/ |
D | ZenPrioritySendersHelper.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 55 * The outer classes govern how those settings are stored -- for instance, where and how they 61 static final int UNKNOWN = -10; field in ZenPrioritySendersHelper 68 private int mNumImportantConversations = UNKNOWN; 138 if (mIsMessages && checkedConversationsSetting != UNKNOWN) { in updateState() 139 // "UNKNOWN" in checkedContactsSetting means this preference doesn't govern in updateState() 141 // the priority senders setting matches or if it's UNKNOWN so only the conversation in updateState() 143 match = (match || checkedContactsSetting == UNKNOWN) in updateState() 157 // Gets the desired end state of the priority senders and conversations for the given key 158 // and whether it is being checked or unchecked. UNKNOWN indicates no change in state. [all …]
|
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
H A D | CertPathReviewerMessages.properties | 94 CertPathReviewer.totalPathLength.text = The total path length without self-signed certificates is {… 95 CertPathReviewer.totalPathLength.summary = The total path length without self-signed certificates i… 96 CertPathReviewer.totalPathLength.details = The total path length without self-signed certificates, … 101 # one unknown critical extension 103 CertPathReviewer.unknownCriticalExt.title = Unknown critical extension 104 CertPathReviewer.unknownCriticalExt.text = The certificate contains the unknown critical extension … 105 CertPathReviewer.unknownCriticalExt.summary = Unknown critical extension: {0}. 106 CertPathReviewer.unknownCriticalExt.details = The certificate contains the unknown critical extensi… 108 # more unknown critical extensions 110 CertPathReviewer.unknownCriticalExts.title = Unknown critical extensions [all …]
|
/aosp_15_r20/external/pytorch/test/functorch/ |
H A D | discover_coverage.py | 33 def get_public_overridable_apis(pytorch_root="/raid/rzou/pt/debug-cpu"): 93 for key in apis.keys(): 94 if not key.startswith("torch.Tensor"): 96 if key in denylist: 98 api = key.split(".")[2] 99 # filter out in-place 113 for key in cpy.keys(): 114 if not key.startswith("torch.Tensor"): 116 api = key.split(".")[2] 118 del results[key] [all …]
|
/aosp_15_r20/tools/netsim/src/util/ |
H A D | ini_file_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 49 EXPECT_FALSE(iniFile.HasKey("unknown-key")); in TEST_P() 52 EXPECT_FALSE(iniFile.Get("unknown-key").has_value()); in TEST_P() 64 EXPECT_FALSE(iniFile.HasKey("unknown-key")); in TEST() 66 EXPECT_FALSE(iniFile.Get("unknown-key").has_value()); in TEST() 70 EXPECT_FALSE(iniFile.HasKey("unknown-key")); in TEST() 72 EXPECT_FALSE(iniFile.Get("unknown-key").has_value()); in TEST() 74 // Update the value of an existing key. in TEST() 77 EXPECT_FALSE(iniFile.HasKey("unknown-key")); in TEST() 79 EXPECT_FALSE(iniFile.Get("unknown-key").has_value()); in TEST() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/ |
D | runtime_types.rs | 59 fn runtime_type_box() -> RuntimeType; in runtime_type_box() 62 fn default_value_ref() -> ReflectValueRef<'static>; in default_value_ref() 69 fn from_value_box(value_box: ReflectValueBox) -> Result<Self::Value, ReflectValueBox>; in from_value_box() 72 fn into_value_box(value: Self::Value) -> ReflectValueBox; in into_value_box() 80 fn into_static_value_ref(value: Self::Value) -> ReflectValueRef<'static> { in into_static_value_ref() 85 fn as_ref(value: &Self::Value) -> ReflectValueRef; in as_ref() 87 fn as_mut(value: &mut Self::Value) -> ReflectValueMut; in as_mut() 89 /// Value is non-default? 90 fn is_non_zero(value: &Self::Value) -> bool; in is_non_zero() 102 fn cast_to_enum_values(values: &[Self::Value]) -> &[i32] { in cast_to_enum_values() [all …]
|
/aosp_15_r20/external/tink/python/tink/jwt/ |
H A D | _jwk_set_converter.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 38 jwt_ecdsa_pb2.ES256: ('ES256', 'P-256'), 39 jwt_ecdsa_pb2.ES384: ('ES384', 'P-384'), 40 jwt_ecdsa_pb2.ES512: ('ES512', 'P-521') 70 def _base64_encode(data: bytes) -> str: 74 def _base64_decode(data: str) -> bytes: 78 def from_public_keyset_handle(keyset_handle: tink.KeysetHandle) -> str: 79 """Converts a Tink KeysetHandle with JWT keys into a Json Web Key (JWK) set. 81 JWK is defined in https://www.rfc-editor.org/rfc/rfc7517.txt. 85 Keys with output prefix type "TINK" will include the encoded key ID as "kid" [all …]
|
/aosp_15_r20/external/golang-protobuf/encoding/prototext/ |
H A D | decode_test.go | 2 // Use of this source code is governed by a BSD-style 129 opt_sint32: -1001 130 opt_sint64: - 0xffff 132 opt_sfixed32: - 32 144 OptSint32: proto.Int32(-1001), 145 OptSint64: proto.Int64(-0xffff), 147 OptSfixed32: proto.Int32(-32), 157 wantErr: "unknown field: S_BOOL", 166 s_sint32: -1001 167 s_sint64: - # [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/core/framework/ |
H A D | model_test.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 69 async_interleave_many->add_input(meta_source); in TEST_P() 71 async_interleave_many->remove_input(meta_source); in TEST_P() 75 async_interleave_many->add_input(source1); in TEST_P() 77 async_interleave_many->remove_input(source1); in TEST_P() 81 async_interleave_many->add_input(source2); in TEST_P() 83 async_interleave_many->remove_input(source2); in TEST_P() 87 EXPECT_EQ(async_interleave_many->TotalBufferedBytes(), 0); in TEST_P() 88 EXPECT_EQ(async_interleave_many->TotalMaximumBufferedBytes(), 0); in TEST_P() 89 async_interleave_many->record_buffer_event(110, 10); in TEST_P() [all …]
|
/aosp_15_r20/external/cpuinfo/test/mock/ |
H A D | galaxy-j1-2016.h | 65 "ro.build.version.security_patch=2017-05-01\n" 66 "ro.build.version.base_os=samsung/j1x3gxx/j1x3g:5.1.1/LMY47V/J120HXXU0AQC1:user/release-keys\n" 72 "ro.build.tags=release-keys\n" 73 "ro.build.flavor=j1x3gxx-user\n" 74 "ro.product.model=SM-J120H\n" 81 "ro.product.cpu.abi=armeabi-v7a\n" 83 "ro.product.cpu.abilist=armeabi-v7a,armeabi\n" 84 "ro.product.cpu.abilist32=armeabi-v7a,armeabi\n" 94 "ro.build.description=j1x3gxx-user 5.1.1 LMY47V J120HXXS0AQE1 release-keys\n" 95 "ro.build.fingerprint=samsung/j1x3gxx/j1x3g:5.1.1/LMY47V/J120HXXS0AQE1:user/release-keys\n" [all …]
|
H A D | galaxy-j7-prime.h | 86 "ro.build.version.security_patch=2017-07-01\n" 93 "ro.build.tags=release-keys\n" 94 "ro.build.flavor=on7xeltedd-user\n" 95 "ro.product.model=SM-G610F\n" 102 "ro.product.cpu.abi=armeabi-v7a\n" 104 "ro.product.cpu.abilist=armeabi-v7a,armeabi\n" 105 "ro.product.cpu.abilist32=armeabi-v7a,armeabi\n" 108 "ro.product.locale=en-GB\n" 114 "ro.build.description=on7xeltedd-user 6.0.1 MMB29K G610FDDU1AQG2 release-keys\n" 115 "ro.build.fingerprint=samsung/on7xeltedd/on7xelte:6.0.1/MMB29K/G610FDDU1AQG2:user/release-keys\n" [all …]
|
H A D | galaxy-j7-uae.h | 39 "ro.build.version.security_patch=2017-03-01\n" 46 "ro.build.tags=release-keys\n" 47 "ro.build.flavor=j7eltexx-user\n" 48 "ro.product.model=SM-J700F\n" 55 "ro.product.cpu.abi=armeabi-v7a\n" 57 "ro.product.cpu.abilist=armeabi-v7a,armeabi\n" 58 "ro.product.cpu.abilist32=armeabi-v7a,armeabi\n" 61 "ro.product.locale=en-GB\n" 67 "ro.build.description=j7eltexx-user 6.0.1 MMB29K J700FXXU4BQC6 release-keys\n" 68 "ro.build.fingerprint=samsung/j7eltexx/j7elte:6.0.1/MMB29K/J700FXXU4BQC6:user/release-keys\n" [all …]
|
/aosp_15_r20/external/openscreen/osp/msgs/ |
H A D | osp_messages.cddl | 1 ; Open Screen protocol spec: https://webscreens.github.io/openscreenprotocol/#appendix-a 2 ; CDDL spec: https://tools.ietf.org/html/draft-ietf-cbor-cddl-08 4 ; type key 10 5 agent-info-request = { 9 ; type key 11 10 agent-info-response = { 12 1: agent-info ; agent-info 15 agent-info = { 16 0: text ; friendly-name 17 1: text ; model-name [all …]
|
/aosp_15_r20/external/google-cloud-java/java-document-ai/proto-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/ |
H A D | FormExtractionParams.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 97 * User can provide pairs of (key text, value type) to improve the parsing 102 * following hints: [ {"key": "Date", value_types: [ "DATE"]}, {"key": 104 * If the value type is unknown, but you want to provide hints for the keys, 105 * you can leave the value_types field blank. e.g. {"key": "Date", 121 * User can provide pairs of (key text, value type) to improve the parsing 126 * following hints: [ {"key": "Date", value_types: [ "DATE"]}, {"key": 128 * If the value type is unknown, but you want to provide hints for the keys, 129 * you can leave the value_types field blank. e.g. {"key": "Date", 145 * User can provide pairs of (key text, value type) to improve the parsing [all …]
|
/aosp_15_r20/prebuilts/vndk/v30/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ip2addr Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo ... |
/aosp_15_r20/prebuilts/vndk/v30/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ip2addr Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo ... |
/aosp_15_r20/prebuilts/vndk/v33/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_alpnid2str Curl_altsvc_init Curl_llist_init Curl_ccalloc Curl_altsvc_load fopen Curl_get_line sscanf Curl_getdate_capped Curl_strcasecompare curlx_ultous Curl_llist_insert_next fclose __stack_chk_fail Curl_cfree __stack_chk_guard Curl_cstrdup Curl_cmalloc ... |
/aosp_15_r20/prebuilts/vndk/v33/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_alpnid2str Curl_altsvc_init Curl_llist_init Curl_ccalloc Curl_altsvc_load fopen Curl_get_line sscanf Curl_getdate_capped Curl_strcasecompare curlx_ultous Curl_llist_insert_next fclose __stack_chk_fail Curl_cfree __stack_chk_guard Curl_cstrdup Curl_cmalloc ... |
/aosp_15_r20/external/google-cloud-java/java-document-ai/proto-google-cloud-document-ai-v1beta2/src/main/java/com/google/cloud/documentai/v1beta2/ |
H A D | FormExtractionParams.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 97 * User can provide pairs of (key text, value type) to improve the parsing 102 * following hints: [ {"key": "Date", value_types: [ "DATE"]}, {"key": 104 * If the value type is unknown, but you want to provide hints for the keys, 105 * you can leave the value_types field blank. e.g. {"key": "Date", 121 * User can provide pairs of (key text, value type) to improve the parsing 126 * following hints: [ {"key": "Date", value_types: [ "DATE"]}, {"key": 128 * If the value type is unknown, but you want to provide hints for the keys, 129 * you can leave the value_types field blank. e.g. {"key": "Date", 145 * User can provide pairs of (key text, value type) to improve the parsing [all …]
|
/aosp_15_r20/prebuilts/vndk/v34/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_alpnid2str Curl_altsvc_init Curl_llist_init Curl_ccalloc Curl_altsvc_load fopen Curl_get_line sscanf Curl_getdate_capped curl_strequal Curl_llist_insert_next fclose __stack_chk_fail Curl_cfree __stack_chk_guard Curl_cstrdup Curl_cmalloc Curl_altsvc_ctrl ... |
/aosp_15_r20/prebuilts/vndk/v34/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_alpnid2str Curl_altsvc_init Curl_llist_init Curl_ccalloc Curl_altsvc_load fopen Curl_get_line sscanf Curl_getdate_capped curl_strequal Curl_llist_insert_next fclose __stack_chk_fail Curl_cfree __stack_chk_guard Curl_cstrdup Curl_cmalloc Curl_altsvc_ctrl ... |
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | AMDGPUMetadata.h | 1 //===--- AMDGPUMetadata.h ---------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 /// AMDGPU metadata definitions and in-memory representations. 13 //===----------------------------------------------------------------------===// 26 //===----------------------------------------------------------------------===// 28 //===----------------------------------------------------------------------===// 47 Unknown = 0xff enumerator 58 Unknown = 0xff enumerator 79 Unknown = 0xff enumerator [all …]
|
/aosp_15_r20/prebuilts/vndk/v31/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo Curl_resolver_getsock ... |
/aosp_15_r20/prebuilts/vndk/v32/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo Curl_resolver_getsock ... |