Home
last modified time | relevance | path

Searched defs:String (Results 1 – 25 of 1664) sorted by relevance

12345678910>>...67

/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServiceConfigUtil.java66 static Throttle getThrottlePolicy(@Nullable Map<String, Object> serviceConfig) { in getThrottlePolicy()
101 static Integer getMaxAttemptsFromRetryPolicy(Map<String, Object> retryPolicy) { in getMaxAttemptsFromRetryPolicy()
109 static Long getInitialBackoffNanosFromRetryPolicy(Map<String, Object> retryPolicy) { in getInitialBackoffNanosFromRetryPolicy()
122 static Long getMaxBackoffNanosFromRetryPolicy(Map<String, Object> retryPolicy) { in getMaxBackoffNanosFromRetryPolicy()
135 static Double getBackoffMultiplierFromRetryPolicy(Map<String, Object> retryPolicy) { in getBackoffMultiplierFromRetryPolicy()
143 static List<String> getRetryableStatusCodesFromRetryPolicy(Map<String, Object> retryPolicy) { in getRetryableStatusCodesFromRetryPolicy()
151 static Integer getMaxAttemptsFromHedgingPolicy(Map<String, Object> hedgingPolicy) { in getMaxAttemptsFromHedgingPolicy()
159 static Long getHedgingDelayNanosFromHedgingPolicy(Map<String, Object> hedgingPolicy) { in getHedgingDelayNanosFromHedgingPolicy()
172 static List<String> getNonFatalStatusCodesFromHedgingPolicy(Map<String, Object> hedgingPolicy) { in getNonFatalStatusCodesFromHedgingPolicy()
180 static String getServiceFromName(Map<String, Object> name) { in getServiceFromName()
[all …]
/external/rust/crates/grpcio-compiler/src/
Dprost_codegen.rs77 fn generate(&mut self, service: Service, buf: &mut String) { in generate()
84 fn generate_methods(service: &Service, buf: &mut String) { in generate_methods()
96 fn const_method_name(service_name: &str, method: &Method) -> String { in const_method_name()
104 fn generate_method(service_name: &str, service_path: &str, method: &Method, buf: &mut String) { in generate_method()
121 fn generate_method_body(service_path: &str, method: &Method, buf: &mut String) { in generate_method_body()
155 fn generate_field_init(name: &str, value: &str, buf: &mut String) { in generate_field_init()
162 fn generate_client(service: &Service, buf: &mut String) { in generate_client()
178 fn generate_ctor(client_name: &str, buf: &mut String) { in generate_ctor()
185 fn generate_client_methods(service: &Service, buf: &mut String) { in generate_client_methods()
191 fn generate_client_method(service_name: &str, method: &Method, buf: &mut String) { in generate_client_method()
[all …]
Dcodegen.rs189 service_name: String, in new()
190 service_path: String, in new()
201 fn input(&self) -> String { in input()
210 fn output(&self) -> String { in output()
219 fn method_type(&self) -> (MethodType, String) { in method_type() argument
237 fn service_name(&self) -> String { in service_name()
241 fn name(&self) -> String { in name()
245 fn fq_name(&self) -> String { in fq_name()
249 fn const_method_name(&self) -> String { in const_method_name()
281 fn unary(&self, method_name: &str) -> String { in unary()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DPathChecker.java32 public boolean checkPath(String path, Map<Row.R3<String,String,String>, ValueStatus> errors) { in checkPath() argument
40 …public boolean checkPath(XPathParts parts, Map<Row.R3<String, String, String>, ValueStatus> errors… in checkPath() argument
63 …an checkAttribute(DtdData dtdData, String element, String attribute, String attrValue, Map<R3<Stri… in checkAttribute() argument
/external/flac/src/plugin_xmms/
Dlocale_hack.h39 # define _(String) gettext (String) argument
41 # define N_(String) gettext_noop (String) argument
43 # define N_(String) (String) argument
46 # define textdomain(String) (String) argument
47 # define gettext(String) (String) argument
51 # define _(String) (String) argument
52 # define N_(String) (String) argument
/external/rust/cxx/src/symbols/
Drust_string.rs9 unsafe extern "C" fn string_new(this: &mut MaybeUninit<String>) { in string_new()
14 unsafe extern "C" fn string_clone(this: &mut MaybeUninit<String>, other: &String) { in string_clone()
20 this: &mut MaybeUninit<String>, in string_from()
35 unsafe extern "C" fn string_drop(this: &mut ManuallyDrop<String>) { in string_drop()
50 unsafe extern "C" fn string_reserve_total(this: &mut String, cap: usize) { in string_reserve_total()
/external/rust/crates/criterion/src/
Dformat.rs1 pub fn change(pct: f64, signed: bool) -> String { in change()
9 pub fn time(ns: f64) -> String { in time()
23 pub fn short(n: f64) -> String { in short()
37 fn signed_short(n: f64) -> String { in signed_short()
53 pub fn iter_count(iterations: u64) -> String { in iter_count()
75 pub fn integer(n: f64) -> String { in integer()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DLikelySubtagsBuilder.java132 private Aliases(ImmutableSortedMap<String, String> toCanonical) { in Aliases()
191 Map<String, Map<String, Map<String, LSR>>> languages, in writeLsrTable()
204 … Trie.Span languageSpan, Map<String, Map<String, LSR>> scripts, Indexer<LSR, Integer> lsrToIndex) { in writeScripts()
229 … Trie.Span languageOrScriptSpan, Map<String, LSR> regions, Indexer<LSR, Integer> lsrToIndex) { in writeRegions()
312 Map<String, Map<String, Map<String, LSR>>> langTable, LSR key, LSR newValue) { in set()
316 private static void set(Map<String, Map<String, Map<String, LSR>>> langTable, in set()
323 … private static <T> Map<String, T> getSubtable(Map<String, Map<String, T>> table, String subtag) { in getSubtable()
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-string.h192 String() : c_str_(NULL), length_(0) {} in String() function
195 String(const char* a_c_str) { // NOLINT in String() function
208 String(const char* buffer, size_t a_length) { in String() function
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; } in String() function
226 String(const ::std::string& str) { in String() function
233 String(const ::string& str) { in String() function
/external/libexif/libexif/
Di18n.h29 # define _(String) dgettext (GETTEXT_PACKAGE, String) argument
31 # define N_(String) gettext_noop (String) argument
33 # define N_(String) (String) argument
36 # define textdomain(String) (String) argument
37 # define gettext(String) (String) argument
48 # define _(String) (String) argument
49 # define N_(String) (String) argument
/external/rust/crates/protobuf/src/text_format/
Dmod.rs113 fn do_indent(buf: &mut String, pretty: bool, indent: usize) { in do_indent()
122 buf: &mut String, in print_start_field()
136 fn print_end_field(buf: &mut String, pretty: bool) { in print_end_field()
143 buf: &mut String, in print_field()
200 fn print_to_internal(m: &dyn Message, buf: &mut String, pretty: bool, indent: usize) { in print_to_internal()
247 pub fn print_to(m: &dyn Message, buf: &mut String) { in print_to()
251 fn print_to_string_internal(m: &dyn Message, pretty: bool) -> String { in print_to_string_internal()
258 pub fn print_to_string(m: &dyn Message) -> String { in print_to_string()
271 fn escape(data: &[u8]) -> String { in escape()
Dprint.rs2 pub fn quote_bytes_to(bytes: &[u8], buf: &mut String) { in quote_bytes_to()
22 pub(crate) fn quote_escape_bytes_to(bytes: &[u8], buf: &mut String) { in quote_escape_bytes_to()
29 pub fn quote_escape_bytes(bytes: &[u8]) -> String { in quote_escape_bytes()
35 pub(crate) fn print_str_to(s: &str, buf: &mut String) { in print_str_to()
/external/turbine/javatests/com/google/turbine/lower/
DIntegrationTestSupport.java90 public static Map<String, byte[]> sortMembers(Map<String, byte[]> in) { in sortMembers()
103 public static Map<String, byte[]> canonicalize(Map<String, byte[]> in) { in canonicalize()
186 private static List<ClassNode> toClassNodes(Map<String, byte[]> in) { in toClassNodes()
285 Map<String, InnerClassNode> infos, ClassNode n) { in removeUnusedInnerClassAttributes()
395 Map<String, InnerClassNode> infos, List<InnerClassNode> used, String i) { in addInnerChain()
437 static Map<String, byte[]> runTurbine(Map<String, String> input, ImmutableList<Path> classpath) in runTurbine()
443 static Map<String, byte[]> runTurbine( in runTurbine()
454 Map<String, String> input, in turbineAnalysis()
470 Map<String, String> sources, Collection<Path> classpath, ImmutableList<String> options) in runJavacAnalysis()
476 Map<String, String> sources, in runJavacAnalysis()
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/cache/
DDefaultContentMetadata.java46 public DefaultContentMetadata(Map<String, byte[]> metadata) { in DefaultContentMetadata()
127 private static boolean isMetadataEqual(Map<String, byte[]> first, Map<String, byte[]> second) { in isMetadataEqual()
141 private static Map<String, byte[]> applyMutations( in applyMutations()
149 private static void removeValues(HashMap<String, byte[]> metadata, List<String> names) { in removeValues()
155 private static void addValues(HashMap<String, byte[]> metadata, Map<String, Object> values) { in addValues()
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DSupportedTypes.java285 private SupportedTypes(Map<String, Type> usableTypes) { in SupportedTypes()
308 Map<String, Type> usableTypes, in addSupportForUsedTypes()
320 Types types, Elements elements, Map<String, Type> usableTypes, TypeMirror type) { in addSupportForUsedType()
353 Types types, Elements elements, Map<String, Type> usableTypes, TypeMirror type) { in addSupportForGenericUsedType()
375 Types types, Elements elements, Map<String, Type> usableTypes, TypeMirror type) { in getSupportedType()
441 Types types, Elements elements, Map<String, Type> usableTypes) { in addDefaultTypes()
621 private static void addUsableType(Map<String, Type> usableTypes, Type type) { in addUsableType()
626 Map<String, Type> usableTypes, Collection<ParcelableWrapper> parcelableWrappers) { in addParcelableWrapperTypes()
633 Map<String, Type> usableTypes, ParcelableWrapper parcelableWrapper) { in addParcelableWrapperType()
653 Map<String, Type> usableTypes, Collection<FutureWrapper> futureWrappers) { in addFutureWrapperTypes()
[all …]
/external/rust/crates/clap/src/completions/
Dmod.rs51 pub fn all_subcommand_names(p: &Parser) -> Vec<String> { in all_subcommand_names()
71 pub fn all_subcommands(p: &Parser) -> Vec<(String, String)> { in all_subcommands() argument
86 pub fn subcommands_of(p: &Parser) -> Vec<(String, String)> { in subcommands_of() argument
141 pub fn get_all_subcommand_paths(p: &Parser, first: bool) -> Vec<String> { in get_all_subcommand_paths()
Dbash.rs78 fn all_subcommands(&self) -> String { in all_subcommands()
98 fn subcommand_details(&self) -> String { in subcommand_details()
134 fn option_details_for_path(&self, path: &str) -> String { in option_details_for_path()
171 fn vals_for(&self, o: &OptBuilder) -> String { in vals_for()
181 fn all_options_for_path(&self, path: &str) -> String { in all_options_for_path()
/external/rust/crates/regex-automata/src/
Dcodegen.rs24 pub fn is_match_forward<S: StateID>(dfa: &DFA<S>) -> String { in is_match_forward()
72 variant_names: &HashMap<S, String>, in state_enum_def() argument
73 ) -> String { in state_enum_def()
95 fn state_variant_names<S: StateID>(dfa: &DFA<S>) -> HashMap<S, String> { in state_variant_names() argument
/external/rust/cxx/src/
Drust_string.rs15 unsafe { &*(s as *const String as *const RustString) } in from_ref() constant
22 pub fn into_string(self) -> String { in into_string()
26 pub fn as_string(&self) -> &String { in as_string()
30 pub fn as_mut_string(&mut self) -> &mut String { in as_mut_string()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestDTDAttributes.java569 static void putIfNew(Map<String, R2<String, String>> map, String key, in putIfNew()
576 static void putIfNew(Map<String, R3<String, String, String>> map, in putIfNew()
604 String element, in checkStructure() argument
606 Relation<String, String> toChildren, in checkStructure() argument
608 Map<R2<String, String>, R3<Set<String>, String, String>> toAttributeData) { in checkStructure()
638 private String checkAttributeStructure( in checkAttributeStructure() argument
640 Set<String> attributes, in checkAttributeStructure() argument
641 Map<R2<String, String>, R3<Set<String>, String, String>> toAttributeData) { in checkAttributeStructure()
/external/rust/crates/clap/src/app/
Dusage.rs13 pub fn create_usage_with_title(p: &Parser, used: &[&str]) -> String { in create_usage_with_title()
26 ) -> String { in create_error_usage()
48 pub fn create_usage_no_title(p: &Parser, used: &[&str]) -> String { in create_usage_no_title()
60 pub fn create_help_usage(p: &Parser, incl_reqs: bool) -> String { in create_help_usage()
170 fn create_smart_usage(p: &Parser, used: &[&str]) -> String { in create_smart_usage()
195 fn get_args_tag(p: &Parser, incl_reqs: bool) -> Option<String> { in get_args_tag()
328 ) -> VecDeque<String> { in get_required_usage_from()
/external/rust/crates/nom/src/
Dutil.rs11 fn to_hex(&self, chunk_size: usize) -> String; in to_hex()
15 fn to_hex_from(&self, chunk_size: usize, from: usize) -> String; in to_hex_from()
24 fn to_hex(&self, chunk_size: usize) -> String { in to_hex()
29 fn to_hex_from(&self, chunk_size: usize, from: usize) -> String { in to_hex_from()
72 fn to_hex(&self, chunk_size: usize) -> String { in to_hex()
77 fn to_hex_from(&self, chunk_size: usize, from: usize) -> String { in to_hex_from()
/external/rust/crates/heck/src/
Dlib.rs60 F: Fn(&str, &mut String), in transform()
61 G: Fn(&mut String) in transform()
142 fn lowercase(s: &str, out: &mut String) { in lowercase()
153 fn uppercase(s: &str, out: &mut String ) { in uppercase()
159 fn capitalize(s: &str, out: &mut String) { in capitalize()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateLanguageContainment.java282 private static void printXML(CLDRFile newFile, Multimap<String, String> parentToChild) { in printXML()
286 …private static void printXML(CLDRFile newFile, Multimap<String, String> parentToChild, String base… in printXML()
302 … private static void print(Writer out, Multimap<String, String> parentToChild, List<String> line) { in print()
455 Function<String, String> keyMapper, Function<String, String> valueMapper) { in loadTsvPairs()
472 Function<String, String> fixValue, in loadTsvPairsUnique()
497 private static void showDups(String file, Multimap<String, String> _keyToValues, in showDups()
498 Function<String, String> keyMapper, Function<String, String> valueMapper) { in showDups()
/external/rust/crates/clang-sys/src/
Dsupport.rs151 fn run(executable: &str, arguments: &[&str]) -> Result<(String, String), String> { in run() argument
164 fn run_clang(path: &Path, arguments: &[&str]) -> (String, String) { in run_clang()
169 fn run_llvm_config(arguments: &[&str]) -> Result<String, String> { in run_llvm_config() argument

12345678910>>...67