/third_party/node/deps/npm/node_modules/libnpmdiff/lib/ |
H A D | format-diff.js | 44 const header = str => { 46 patch += `${str}${EOL}`
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | coleitr.h | 81 * UnicodeString str = "This is a test"; 86 * rbc->createCollationElementIterator( str ); 239 * @param str the source string. 243 void setText(const UnicodeString& str, UErrorCode& status); 247 * @param str the source character iterator. 251 void setText(CharacterIterator& str, UErrorCode& status);
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
H A D | tomoyo_rewrite_test.c | 28 static void show_prompt(const char *str) in show_prompt() argument 30 printf("Testing %35s: (%s) ", str, in show_prompt()
|
/third_party/lwip/src/core/ipv4/ |
H A D | ip4_addr.c | 271 static char str[IP4ADDR_STRLEN_MAX]; in ip4addr_ntoa() local 272 return ip4addr_ntoa_r(addr, str, IP4ADDR_STRLEN_MAX); in ip4addr_ntoa()
|
/third_party/ltp/testcases/realtime/tools/ |
H A D | ftqviz.py | 97 title(str(wlen)+" Point Hamming Window") 105 title("Counts (interpolated sample rate: "+str(sample_hz)+" HZ)")
|
/third_party/node/deps/v8/src/ast/ |
H A D | prettyprinter.h | 56 void Print(const char* str); 57 void Print(Handle<String> str);
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-register.cc | 136 return s.str(); in ToString() 141 return s.str(); in ToString()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | tr_dump.c | 140 trace_dump_escape(const char *str) in trace_dump_escape() argument 142 const unsigned char *p = (const unsigned char *)str; in trace_dump_escape() 526 void trace_dump_string(const char *str) in trace_dump_string() argument 532 trace_dump_escape(str); in trace_dump_string()
|
/third_party/musl/libc-test/src/functional/ |
H A D | iconv_test.c | 136 char *str = "Hello world";
in main() local 139 char *input = str;
in main()
|
/third_party/musl/libc-test/src/functionalext/hilog/ |
H A D | hilog_level.c | 37 int TestValidEnv(const char *str) in TestValidEnv() argument 39 FILE *res = popen(str, "r"); in TestValidEnv()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | info.c | 108 #define add_seeds_string(str) \ in DEFINE_RUN_ONCE_STATIC() 112 OPENSSL_strlcat(seeds, str, sizeof(seeds)); \ in DEFINE_RUN_ONCE_STATIC()
|
/third_party/node/deps/undici/src/lib/cookies/ |
H A D | index.js | 102 const str = stringify(cookie) 104 if (str) {
|
/third_party/libbpf/src/ |
H A D | strset.c | 25 const char *str = s->strs_data + key; in strset_hash_fn() local 27 return str_hash(str); in strset_hash_fn()
|
/third_party/rust/crates/env_logger/src/fmt/writer/ |
H A D | mod.rs | 157 pub(crate) fn parse_write_style(&mut self, write_style: &str) -> &mut Self { 218 fn parse_write_style(spec: &str) -> WriteStyle { in parse_write_style()
|
/third_party/rust/crates/clap/clap_derive/src/utils/ |
H A D | ty.rs | 44 pub fn as_str(&self) -> &'static str { in as_str() 116 pub fn subty_if_name<'a>(ty: &'a syn::Type, name: &str) -> Option<&'a syn::Type> { in subty_if_name() 120 pub fn is_simple_ty(ty: &syn::Type, name: &str) -> bool { in subty_if_name() 132 fn is_generic_ty(ty: &syn::Type, name: &str) -> bool { in is_generic_ty()
|
/third_party/rust/crates/cxx/gen/build/src/ |
H A D | cfg.rs | 8 pub include_prefix: &'a str, 12 pub exported_header_prefixes: Vec<&'a str>, 14 pub exported_header_links: Vec<&'a str>, 24 /// <div style="float:right;margin:22px 50px 0;font-size:1.15em;opacity:.73"><strong>&str</strong></div> 38 /// # const _: &str = stringify! { 151 /// <div style="float:right;margin:22px 50px 0;font-size:1.15em;opacity:.73"><strong>Vec<&str></strong></div> 208 /// <div style="float:right;margin:22px 50px 0;font-size:1.15em;opacity:.73"><strong>Vec<&str></strong></div> 405 let include_prefix = current.include_prefix.str();
|
/third_party/rust/crates/cxx/gen/cmd/src/ |
H A D | cfg.rs | 29 fn eval(&self, name: &str, value: Option<&str>) -> CfgResult { in eval()
|
/third_party/rust/crates/cxx/macro/src/ |
H A D | load.rs | 16 use std::str::FromStr; 19 const CXX_CLANG_AST: &str = "CXX_CLANG_AST"; 101 namespace: &mut Vec<&'a str>, in traverse() 234 fn translate_qual_type(cx: &mut Errors, enm: &Enum, qual_type: &str) -> Path { in translate_qual_type()
|
/third_party/rust/crates/libc/ |
H A D | build.rs | 3 use std::str; 131 let version = otry!(str::from_utf8(&output.stdout).ok()); in rustc_minor_nightly()
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | generic.rs | 91 use std::str::FromStr; in generic_w_fromstr_trait_bound() 130 use std::str::FromStr; in generic_where_clause_w_trailing_comma()
|
/third_party/openssl/test/testutil/ |
H A D | testutil_init.c | 100 static void setup_trace(const char *str) in setup_trace() argument 112 val = OPENSSL_strdup(str); in setup_trace()
|
/third_party/protobuf/benchmarks/util/ |
H A D | result_uploader.py | 32 utc_timestamp = str(calendar.timegm(time.gmtime())) 65 row = big_query_utils.make_row(str(uuid.uuid4()), new_result)
|
/third_party/python/Lib/idlelib/ |
H A D | calltip.py | 173 argspec = str(inspect.signature(fob)) 175 msg = str(err)
|
/third_party/python/Include/cpython/ |
H A D | initconfig.h | 228 const wchar_t *str); 232 const char *str);
|
/third_party/openssl/crypto/ |
H A D | info.c | 107 #define add_seeds_string(str) \ in DEFINE_RUN_ONCE_STATIC() 111 OPENSSL_strlcat(seeds, str, sizeof(seeds)); \ in DEFINE_RUN_ONCE_STATIC()
|