/aosp_15_r20/libcore/ojluni/src/test/java/util/SequencedCollection/ |
H A D | BasicMap.java | 64 M load(M map, List<Map.Entry<String, Integer>> mappings) { in load() 70 static NavigableMap<String, Integer> cknav(NavigableMap<String, Integer> map) { in cknav() 74 static SortedMap<String, Integer> cksorted(SortedMap<String, Integer> map) { in cksorted() 78 static SequencedMap<String, Integer> umap(SequencedMap<String, Integer> map) { in umap() 82 static SortedMap<String, Integer> usorted(SortedMap<String, Integer> map) { in usorted() 86 static NavigableMap<String, Integer> unav(NavigableMap<String, Integer> map) { in unav() 282 …public void checkContents1(SequencedMap<String, Integer> map, List<Map.Entry<String, Integer>> ref… in checkContents1() 297 …public void checkContents(SequencedMap<String, Integer> map, List<Map.Entry<String, Integer>> ref)… in checkContents() 385 …public void checkKeySet(SequencedMap<String, Integer> map, List<Map.Entry<String, Integer>> refEnt… in checkKeySet() 424 …public void checkValues(SequencedMap<String, Integer> map, List<Map.Entry<String, Integer>> refEnt… in checkValues() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/configparser/src/ |
D | ini.rs | 394 pub fn sections(&self) -> Vec<String> { in sections() 414 ) -> Result<Map<String, Map<String, Option<String>>>, String> { in load() 457 ) -> Result<Map<String, Map<String, Option<String>>>, String> { in load_and_append() 508 input: String, in read() 509 ) -> Result<Map<String, Map<String, Option<String>>>, String> { in read() 546 input: String, in read_and_append() 547 ) -> Result<Map<String, Map<String, Option<String>>>, String> { in read_and_append() 623 pub fn writes(&self) -> String { in writes() 645 pub fn pretty_writes(&self, write_options: &WriteOptions) -> String { in pretty_writes() 650 fn unparse(&self, write_options: &WriteOptions) -> String { in unparse() [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/permission/services.permission-pre-jarjar/android_common/kapt/gen/stubs/com/android/server/permission/access/ |
D | MutableUserState.java | 13 …com.android.server.permission.access.immutable.MutableReference<com.android.server.permission.acce… in MutableUserState()
|
D | UserState.java | 26 …com.android.server.permission.access.immutable.MutableReference<com.android.server.permission.acce… in UserState()
|
/aosp_15_r20/system/tools/aidl/tests/golden_output/frozen/aidl-test-extras-java-source/gen/android/aidl/tests/map/ |
D | IMapTest.java | 15 …@Override public java.util.Map<java.lang.String,int[]> repeatIntEnumArrayMap(java.util.Map<java.la… in repeatIntEnumArrayMap() 19 …@Override public java.util.Map<java.lang.String,int[]> repeatIntArrayMap(java.util.Map<java.lang.S… in repeatIntArrayMap() 23 …@Override public java.util.Map<java.lang.String,android.aidl.tests.map.Bar> repeatBarMap(java.util… in repeatBarMap() 27 …@Override public java.util.Map<java.lang.String,android.aidl.tests.map.Bar[]> repeatBarArrayMap(ja… in repeatBarArrayMap() 31 …@Override public java.util.Map<java.lang.String,java.lang.String> repeatStringMap(java.util.Map<ja… in repeatStringMap() 35 …@Override public java.util.Map<java.lang.String,java.lang.String[]> repeatStringArrayMap(java.util… in repeatStringArrayMap() 39 …@Override public java.util.Map<java.lang.String,android.aidl.tests.map.IEmpty> repeatInterfaceMap(… in repeatInterfaceMap() 43 …@Override public java.util.Map<java.lang.String,android.os.IBinder> repeatIbinderMap(java.util.Map… in repeatIbinderMap() 466 …@Override public java.util.Map<java.lang.String,int[]> repeatIntEnumArrayMap(java.util.Map<java.la… in repeatIntEnumArrayMap() 508 …@Override public java.util.Map<java.lang.String,int[]> repeatIntArrayMap(java.util.Map<java.lang.S… in repeatIntArrayMap() [all …]
|
/aosp_15_r20/system/tools/aidl/tests/golden_output/aidl-test-extras-java-source/gen/android/aidl/tests/map/ |
D | IMapTest.java | 15 …@Override public java.util.Map<java.lang.String,int[]> repeatIntEnumArrayMap(java.util.Map<java.la… in repeatIntEnumArrayMap() 19 …@Override public java.util.Map<java.lang.String,int[]> repeatIntArrayMap(java.util.Map<java.lang.S… in repeatIntArrayMap() 23 …@Override public java.util.Map<java.lang.String,android.aidl.tests.map.Bar> repeatBarMap(java.util… in repeatBarMap() 27 …@Override public java.util.Map<java.lang.String,android.aidl.tests.map.Bar[]> repeatBarArrayMap(ja… in repeatBarArrayMap() 31 …@Override public java.util.Map<java.lang.String,java.lang.String> repeatStringMap(java.util.Map<ja… in repeatStringMap() 35 …@Override public java.util.Map<java.lang.String,java.lang.String[]> repeatStringArrayMap(java.util… in repeatStringArrayMap() 39 …@Override public java.util.Map<java.lang.String,android.aidl.tests.map.IEmpty> repeatInterfaceMap(… in repeatInterfaceMap() 43 …@Override public java.util.Map<java.lang.String,android.os.IBinder> repeatIbinderMap(java.util.Map… in repeatIbinderMap() 466 …@Override public java.util.Map<java.lang.String,int[]> repeatIntEnumArrayMap(java.util.Map<java.la… in repeatIntEnumArrayMap() 508 …@Override public java.util.Map<java.lang.String,int[]> repeatIntArrayMap(java.util.Map<java.lang.S… in repeatIntArrayMap() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/ |
H A D | string.rs | 365 pub struct String { struct 369 /// A possible error value when converting a `String` from a UTF-8 byte vector. argument 427 impl String { impl 491 pub fn with_capacity(capacity: usize) -> String { in with_capacity() 504 pub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError> { in try_with_capacity() 514 pub fn from_str(_: &str) -> String { in from_str() 576 pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error> { in from_utf8() 684 pub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error> { in from_utf16() 724 pub fn from_utf16_lossy(v: &[u16]) -> String { in from_utf16_lossy() 752 pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error> { in from_utf16le() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/ |
H A D | string.rs | 365 pub struct String { struct 369 /// A possible error value when converting a `String` from a UTF-8 byte vector. argument 427 impl String { implementation 491 pub fn with_capacity(capacity: usize) -> String { in with_capacity() 504 pub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError> { in try_with_capacity() 514 pub fn from_str(_: &str) -> String { in from_str() 576 pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error> { in from_utf8() 684 pub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error> { in from_utf16() 724 pub fn from_utf16_lossy(v: &[u16]) -> String { in from_utf16_lossy() 752 pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error> { in from_utf16le() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/alloc/src/ |
H A D | string.rs | 365 pub struct String { struct 369 /// A possible error value when converting a `String` from a UTF-8 byte vector. argument 427 impl String { implementation 491 pub fn with_capacity(capacity: usize) -> String { in with_capacity() 504 pub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError> { in try_with_capacity() 514 pub fn from_str(_: &str) -> String { in from_str() 576 pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error> { in from_utf8() 684 pub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error> { in from_utf16() 724 pub fn from_utf16_lossy(v: &[u16]) -> String { in from_utf16_lossy() 752 pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error> { in from_utf16le() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/ |
H A D | string.rs | 365 pub struct String { struct 369 /// A possible error value when converting a `String` from a UTF-8 byte vector. argument 427 impl String { implementation 491 pub fn with_capacity(capacity: usize) -> String { in with_capacity() 504 pub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError> { in try_with_capacity() 514 pub fn from_str(_: &str) -> String { in from_str() 576 pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error> { in from_utf8() 684 pub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error> { in from_utf16() 724 pub fn from_utf16_lossy(v: &[u16]) -> String { in from_utf16_lossy() 752 pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error> { in from_utf16le() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/ |
H A D | string.rs | 365 pub struct String { struct 369 /// A possible error value when converting a `String` from a UTF-8 byte vector. argument 427 impl String { implementation 491 pub fn with_capacity(capacity: usize) -> String { in with_capacity() 504 pub fn try_with_capacity(capacity: usize) -> Result<String, TryReserveError> { in try_with_capacity() 514 pub fn from_str(_: &str) -> String { in from_str() 576 pub fn from_utf8(vec: Vec<u8>) -> Result<String, FromUtf8Error> { in from_utf8() 684 pub fn from_utf16(v: &[u16]) -> Result<String, FromUtf16Error> { in from_utf16() 724 pub fn from_utf16_lossy(v: &[u16]) -> String { in from_utf16_lossy() 752 pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error> { in from_utf16le() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/ |
H A D | main.rs | 257 fn type_to_dup_suffix(t: &str) -> String { in type_to_dup_suffix() 263 fn type_to_lane_suffix(t: &str) -> String { in type_to_lane_suffix() 339 fn type_to_lane_suffixes<'a>(out_t: &'a str, in_t: &'a str, re_to_out: bool) -> String { in type_to_lane_suffixes() 358 fn type_to_rot_suffix(c_name: &str, suf: &str) -> String { in type_to_rot_suffix() 368 fn type_to_signed(t: &str) -> String { in type_to_signed() 372 fn type_to_unsigned(t: &str) -> String { in type_to_unsigned() 379 fn type_to_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_suffixes() 393 fn type_to_double_n_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_n_suffixes() 408 fn type_to_noq_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_noq_double_suffixes() 575 fn attr(name: &str, value: impl fmt::Display) -> String { in attr() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/ |
H A D | main.rs | 257 fn type_to_dup_suffix(t: &str) -> String { in type_to_dup_suffix() 263 fn type_to_lane_suffix(t: &str) -> String { in type_to_lane_suffix() 339 fn type_to_lane_suffixes<'a>(out_t: &'a str, in_t: &'a str, re_to_out: bool) -> String { in type_to_lane_suffixes() 358 fn type_to_rot_suffix(c_name: &str, suf: &str) -> String { in type_to_rot_suffix() 368 fn type_to_signed(t: &str) -> String { in type_to_signed() 372 fn type_to_unsigned(t: &str) -> String { in type_to_unsigned() 379 fn type_to_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_suffixes() 393 fn type_to_double_n_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_n_suffixes() 408 fn type_to_noq_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_noq_double_suffixes() 575 fn attr(name: &str, value: impl fmt::Display) -> String { in attr() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/ |
H A D | main.rs | 257 fn type_to_dup_suffix(t: &str) -> String { in type_to_dup_suffix() 263 fn type_to_lane_suffix(t: &str) -> String { in type_to_lane_suffix() 339 fn type_to_lane_suffixes<'a>(out_t: &'a str, in_t: &'a str, re_to_out: bool) -> String { in type_to_lane_suffixes() 358 fn type_to_rot_suffix(c_name: &str, suf: &str) -> String { in type_to_rot_suffix() 368 fn type_to_signed(t: &str) -> String { in type_to_signed() 372 fn type_to_unsigned(t: &str) -> String { in type_to_unsigned() 379 fn type_to_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_suffixes() 393 fn type_to_double_n_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_n_suffixes() 408 fn type_to_noq_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_noq_double_suffixes() 575 fn attr(name: &str, value: impl fmt::Display) -> String { in attr() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/ |
H A D | main.rs | 257 fn type_to_dup_suffix(t: &str) -> String { in type_to_dup_suffix() 263 fn type_to_lane_suffix(t: &str) -> String { in type_to_lane_suffix() 339 fn type_to_lane_suffixes<'a>(out_t: &'a str, in_t: &'a str, re_to_out: bool) -> String { in type_to_lane_suffixes() 358 fn type_to_rot_suffix(c_name: &str, suf: &str) -> String { in type_to_rot_suffix() 368 fn type_to_signed(t: &str) -> String { in type_to_signed() 372 fn type_to_unsigned(t: &str) -> String { in type_to_unsigned() 379 fn type_to_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_suffixes() 393 fn type_to_double_n_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_n_suffixes() 408 fn type_to_noq_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_noq_double_suffixes() 575 fn attr(name: &str, value: impl fmt::Display) -> String { in attr() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/ |
H A D | main.rs | 257 fn type_to_dup_suffix(t: &str) -> String { in type_to_dup_suffix() 263 fn type_to_lane_suffix(t: &str) -> String { in type_to_lane_suffix() 339 fn type_to_lane_suffixes<'a>(out_t: &'a str, in_t: &'a str, re_to_out: bool) -> String { in type_to_lane_suffixes() 358 fn type_to_rot_suffix(c_name: &str, suf: &str) -> String { in type_to_rot_suffix() 368 fn type_to_signed(t: &str) -> String { in type_to_signed() 372 fn type_to_unsigned(t: &str) -> String { in type_to_unsigned() 379 fn type_to_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_suffixes() 393 fn type_to_double_n_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_double_n_suffixes() 408 fn type_to_noq_double_suffixes<'a>(out_t: &'a str, in_t: &'a str) -> String { in type_to_noq_double_suffixes() 575 fn attr(name: &str, value: impl fmt::Display) -> String { in attr() [all …]
|
/aosp_15_r20/external/bazelbuild-rules_rust/util/process_wrapper/ |
H A D | options.rs | 218 fn args_from_file(paths: Vec<String>) -> Result<Vec<String>, OptionError> { in args_from_file() 232 fn env_from_files(paths: Vec<String>) -> Result<HashMap<String, String>, OptionError> { in env_from_files() 246 fn prepare_arg(mut arg: String, subst_mappings: &[(String, String)]) -> String { in prepare_arg() argument 257 subst_mappings: &[(String, String)], in prepare_param_file() argument 258 ) -> Result<String, OptionError> { in prepare_param_file() 272 subst_mappings: &[(String, String)], in prepare_param_file() argument 291 args: Vec<String>, in prepare_args() 292 subst_mappings: &[(String, String)], in prepare_args() argument 293 ) -> Result<Vec<String>, OptionError> { in prepare_args() 309 environment_file_block: HashMap<String, String>, in environment_block() argument [all …]
|
/aosp_15_r20/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
H A D | ServiceConfigUtil.java | 56 public static Map<String, ?> getHealthCheckedService(@Nullable Map<String, ?> serviceConfig) { in getHealthCheckedService() 77 public static String getHealthCheckedServiceName( in getHealthCheckedServiceName() 86 static Throttle getThrottlePolicy(@Nullable Map<String, ?> serviceConfig) { in getThrottlePolicy() 124 static Integer getMaxAttemptsFromRetryPolicy(Map<String, ?> retryPolicy) { in getMaxAttemptsFromRetryPolicy() 129 static Long getInitialBackoffNanosFromRetryPolicy(Map<String, ?> retryPolicy) { in getInitialBackoffNanosFromRetryPolicy() 134 static Long getMaxBackoffNanosFromRetryPolicy(Map<String, ?> retryPolicy) { in getMaxBackoffNanosFromRetryPolicy() 139 static Double getBackoffMultiplierFromRetryPolicy(Map<String, ?> retryPolicy) { in getBackoffMultiplierFromRetryPolicy() 144 static Long getPerAttemptRecvTimeoutNanosFromRetryPolicy(Map<String, ?> retryPolicy) { in getPerAttemptRecvTimeoutNanosFromRetryPolicy() 148 private static Set<Status.Code> getListOfStatusCodesAsSet(Map<String, ?> obj, String key) { in getListOfStatusCodesAsSet() 182 static Set<Status.Code> getRetryableStatusCodesFromRetryPolicy(Map<String, ?> retryPolicy) { in getRetryableStatusCodesFromRetryPolicy() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/pdl-compiler/src/ |
D | parser.rs | 188 fn as_string(&self) -> String; in as_string() 189 fn as_usize(&self) -> Result<usize, String>; in as_usize() argument 216 fn as_string(&self) -> String { in as_string() 220 fn as_usize(&self) -> Result<usize, String> { in as_usize() argument 233 fn err_unexpected_rule<T>(expected: Rule, found: Rule) -> Result<T, String> { in err_unexpected_rule() argument 237 fn err_missing_rule<T>(expected: Rule) -> Result<T, String> { in err_missing_rule() argument 241 fn expect<'i>(iter: &mut impl Iterator<Item = Node<'i>>, rule: Rule) -> Result<Node<'i>, String> { in expect() argument 253 fn parse_identifier(iter: &mut NodeIterator<'_>) -> Result<String, String> { in parse_identifier() argument 257 fn parse_integer(iter: &mut NodeIterator<'_>) -> Result<usize, String> { in parse_integer() argument 261 fn parse_identifier_opt(iter: &mut NodeIterator<'_>) -> Result<Option<String>, String> { in parse_identifier_opt() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/fmt/ |
D | stringer_test.go | 29 func (v TI) String() string { return Sprintf("I: %d", int(v)) } func 30 func (v TI8) String() string { return Sprintf("I8: %d", int8(v)) } func 31 func (v TI16) String() string { return Sprintf("I16: %d", int16(v)) } func 32 func (v TI32) String() string { return Sprintf("I32: %d", int32(v)) } func 33 func (v TI64) String() string { return Sprintf("I64: %d", int64(v)) } func 34 func (v TU) String() string { return Sprintf("U: %d", uint(v)) } func 35 func (v TU8) String() string { return Sprintf("U8: %d", uint8(v)) } func 36 func (v TU16) String() string { return Sprintf("U16: %d", uint16(v)) } func 37 func (v TU32) String() string { return Sprintf("U32: %d", uint32(v)) } func 38 func (v TU64) String() string { return Sprintf("U64: %d", uint64(v)) } func [all …]
|
/aosp_15_r20/system/tools/aidl/tests/android/aidl/tests/map/ |
D | IMapTest.aidl | 25 in Map<String, IntEnum[]> input, out Map<String, IntEnum[]> output); in repeatIntEnumArrayMap() 27 in Map<String, int[]> input, out Map<String, int[]> output); in repeatIntArrayMap() 28 Map<String, Bar> repeatBarMap(in Map<String, Bar> input, out Map<String, Bar> output); in repeatBarMap() 30 in Map<String, Bar[]> input, out Map<String, Bar[]> output); in repeatBarArrayMap() 32 in Map<String, String> input, out Map<String, String> output); in repeatStringMap() 34 in Map<String, String[]> input, out Map<String, String[]> output); in repeatStringArrayMap() 36 in Map<String, IEmpty> input, out Map<String, IEmpty> output); in repeatInterfaceMap() 38 in Map<String, IBinder> input, out Map<String, IBinder> output); in repeatIbinderMap()
|
/aosp_15_r20/external/aws-sdk-java-v2/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/ |
H A D | alltypesresponse.java | 1718 Builder listOfMaps(Collection<? extends Map<String, String>> listOfMaps); in listOfMaps() 1727 Builder listOfMaps(Map<String, String>... listOfMaps); in listOfMaps() 1775 …Builder listOfMapOfEnumToStringWithStrings(Collection<? extends Map<String, String>> listOfMapOfEn… in listOfMapOfEnumToStringWithStrings() 1784 Builder listOfMapOfEnumToStringWithStrings(Map<String, String>... listOfMapOfEnumToString); in listOfMapOfEnumToStringWithStrings() 1793 …Builder listOfMapOfStringToStruct(Collection<? extends Map<String, SimpleStruct>> listOfMapOfStrin… in listOfMapOfStringToStruct() 1802 Builder listOfMapOfStringToStruct(Map<String, SimpleStruct>... listOfMapOfStringToStruct); in listOfMapOfStringToStruct() 1811 …Builder mapOfStringToIntegerList(Map<String, ? extends Collection<Integer>> mapOfStringToIntegerLi… in mapOfStringToIntegerList() 1820 Builder mapOfStringToString(Map<String, String> mapOfStringToString); in mapOfStringToString() 1829 Builder mapOfStringToSimpleStruct(Map<String, SimpleStruct> mapOfStringToSimpleStruct); in mapOfStringToSimpleStruct() 1838 Builder mapOfEnumToEnumWithStrings(Map<String, String> mapOfEnumToEnum); in mapOfEnumToEnumWithStrings() [all …]
|
H A D | alltypesunionstructure.java | 1718 public static AllTypesUnionStructure fromListOfMaps(List<Map<String, String>> listOfMaps) { in fromListOfMaps() 1743 List<Map<String, String>> listOfMapOfEnumToStringWithStrings) { in fromListOfMapOfEnumToStringWithStrings() 1768 …public static AllTypesUnionStructure fromListOfMapOfStringToStruct(List<Map<String, SimpleStruct>>… in fromListOfMapOfStringToStruct() 1780 …public static AllTypesUnionStructure fromMapOfStringToIntegerList(Map<String, List<Integer>> mapOf… in fromMapOfStringToIntegerList() 1792 …public static AllTypesUnionStructure fromMapOfStringToString(Map<String, String> mapOfStringToStri… in fromMapOfStringToString() 1804 …public static AllTypesUnionStructure fromMapOfStringToSimpleStruct(Map<String, SimpleStruct> mapOf… in fromMapOfStringToSimpleStruct() 1816 …public static AllTypesUnionStructure fromMapOfEnumToEnumWithStrings(Map<String, String> mapOfEnumT… in fromMapOfEnumToEnumWithStrings() 1840 …public static AllTypesUnionStructure fromMapOfEnumToStringWithStrings(Map<String, String> mapOfEnu… in fromMapOfEnumToStringWithStrings() 1864 …public static AllTypesUnionStructure fromMapOfStringToEnumWithStrings(Map<String, String> mapOfStr… in fromMapOfStringToEnumWithStrings() 1876 …public static AllTypesUnionStructure fromMapOfStringToEnum(Map<String, EnumType> mapOfStringToEnum… in fromMapOfStringToEnum() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/linkme-impl/src/ |
D | linker.rs | 4 pub fn section(ident: &Ident) -> String { in section() 8 pub fn section_start(ident: &Ident) -> String { in section_start() 12 pub fn section_stop(ident: &Ident) -> String { in section_stop() 20 pub fn section(ident: &Ident) -> String { in section() 24 pub fn section_start(ident: &Ident) -> String { in section_start() 28 pub fn section_stop(ident: &Ident) -> String { in section_stop() 36 pub fn section(ident: &Ident) -> String { in section() 43 pub fn section_start(ident: &Ident) -> String { in section_start() 47 pub fn section_stop(ident: &Ident) -> String { in section_stop() 55 pub fn section(ident: &Ident) -> String { in section() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/clap/src/error/ |
D | mod.rs | 167 pub fn with_description(description: String, kind: ErrorKind) -> Self { in with_description() 280 arg: String, in argument_conflict() 281 mut others: Vec<String>, in argument_conflict() 282 usage: String, in argument_conflict() 315 pub(crate) fn no_equals(cmd: &Command, arg: String, usage: String) -> Self { in no_equals() 328 bad_val: String, in invalid_value() 330 arg: String, in invalid_value() 358 subcmd: String, in invalid_subcommand() 359 did_you_mean: String, in invalid_subcommand() 360 name: String, in invalid_subcommand() [all …]
|