/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | packet.h | 46 void AddString(const char* str); 52 void AddHexString(const char* str); 69 bool GetString(std::string* str); 70 bool GetHexString(std::string* str);
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | lgetxattr.c | 43 char str[] = "dat"; in lgetxattr_0100() local 44 write(fd, str, sizeof(str)); in lgetxattr_0100() 58 EXPECT_STREQ("lgetxattr_0100", buf, str); in lgetxattr_0100()
|
H A D | setxattr.c | 41 char str[] = "bar"; in setxattr_0100() local 42 write(fd, str, sizeof(str)); in setxattr_0100() 67 if (strcmp(buf, str)) { in setxattr_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | wcstok.c | 29 wchar_t str[] = L"parrot,owl,sparrow,pigeon,crow"; in wcstok_0100() local 34 wchar_t *token = wcstok(str, delim, &ptr); in wcstok_0100() 55 wchar_t str[] = L"parrot,owl.sparrow,pigeon,crow"; in wcstok_0200() local 58 wchar_t *result = wcstok(str, delim, &ptr); in wcstok_0200()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_ia5.c | 44 X509V3_CTX *ctx, const char *str) in s2i_ASN1_IA5STRING() 47 if (str == NULL) { in s2i_ASN1_IA5STRING() 53 if (!ASN1_STRING_set((ASN1_STRING *)ia5, str, strlen(str))) { in s2i_ASN1_IA5STRING() 43 s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, const char *str) s2i_ASN1_IA5STRING() argument
|
H A D | v3_utf8.c | 48 X509V3_CTX *ctx, const char *str) in s2i_ASN1_UTF8STRING() 51 if (str == NULL) { in s2i_ASN1_UTF8STRING() 59 if (!ASN1_STRING_set((ASN1_STRING *)utf8, str, strlen(str))) { in s2i_ASN1_UTF8STRING() 47 s2i_ASN1_UTF8STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, const char *str) s2i_ASN1_UTF8STRING() argument
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | buffer.h | 39 # define BUF_strnlen(str, maxlen) OPENSSL_strnlen(str, maxlen) 54 size_t BUF_MEM_grow(BUF_MEM *str, size_t len); 55 size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len);
|
/third_party/rust/crates/log/src/kv/ |
H A D | key.rs | 29 impl ToKey for str { 38 key: &'k str, 43 pub fn from_str(key: &'k str) -> Self { in from_str() 48 pub fn as_str(&self) -> &str { in as_str() 94 impl<'k> AsRef<str> for Key<'k> { 95 fn as_ref(&self) -> &str { in as_ref() 100 impl<'k> Borrow<str> for Key<'k> { 101 fn borrow(&self) -> &str { in borrow() 106 impl<'k> From<&'k str> for Key<'k> { 107 fn from(s: &'k str) [all...] |
/third_party/rust/crates/autocfg/src/ |
H A D | error.rs | 5 use std::str; 14 fn description(&self) -> &str { in description() 43 Utf8(str::Utf8Error), 44 Other(&'static str), 59 pub fn from_utf8(e: str::Utf8Error) -> Error { in from_utf8() 65 pub fn from_str(s: &'static str) -> Error { in from_str()
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | source.py | 9 if isinstance(source, str): 12 # At this point "source" is not a str. 15 elif not isinstance(filename, str): 16 raise TypeError(f'filename should be str (or None), got {filename!r}') 36 if not isinstance(value, str): 60 if isinstance(source, str):
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | validator.py | 14 self.rulename: Optional[str] = None 16 def validate_rule(self, rulename: str, node: Rule) -> None: 30 if str(second_alt).startswith(str(first_alt)):
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | joinstats.py | 25 def __init__(self, filename: str) -> None: 26 self.table: Dict[int, str] = {} 36 def lookup(self, type: int) -> str: 37 return self.table.get(type, str(type))
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | utils.rs | 10 pub const FULL_TEMPLATE: &str = "\ 37 pub fn get_subcommand_long_help<T: CommandFactory>(subcmd: &str) -> String { in get_subcommand_long_help() 52 pub fn assert_output<P: clap::Parser + std::fmt::Debug>(args: &str, expected: &str, stderr: bool) { in assert_output()
|
/third_party/openssl/include/openssl/ |
H A D | buffer.h | 39 # define BUF_strnlen(str, maxlen) OPENSSL_strnlen(str, maxlen) 54 size_t BUF_MEM_grow(BUF_MEM *str, size_t len); 55 size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len);
|
/third_party/openssl/crypto/x509/ |
H A D | v3_utf8.c | 48 X509V3_CTX *ctx, const char *str) in s2i_ASN1_UTF8STRING() 51 if (str == NULL) { in s2i_ASN1_UTF8STRING() 59 if (!ASN1_STRING_set((ASN1_STRING *)utf8, str, strlen(str))) { in s2i_ASN1_UTF8STRING() 47 s2i_ASN1_UTF8STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, const char *str) s2i_ASN1_UTF8STRING() argument
|
H A D | v3_ia5.c | 44 X509V3_CTX *ctx, const char *str) in s2i_ASN1_IA5STRING() 47 if (str == NULL) { in s2i_ASN1_IA5STRING() 53 if (!ASN1_STRING_set((ASN1_STRING *)ia5, str, strlen(str))) { in s2i_ASN1_IA5STRING() 43 s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, const char *str) s2i_ASN1_IA5STRING() argument
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | buffer.h | 36 # define BUF_strnlen(str, maxlen) OPENSSL_strnlen(str, maxlen) 50 size_t BUF_MEM_grow(BUF_MEM *str, size_t len); 51 size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len);
|
/third_party/openGLES/extensions/ |
H A D | printreg.py | 11 def quote(str): 12 return '\'' + str + '\'' 19 printKey(key, str(ext[key])) 24 ', '.join([quote(str(tag)) for tag in sorted(ext[key])]) + 30 printKey(key, quote(str(ext[key])))
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ |
H A D | printreg.py | 23 def quote(str): 24 return '\'' + str + '\'' 31 printKey(key, str(ext[key])) 36 ', '.join([quote(str(tag)) for tag in sorted(ext[key])]) + 42 printKey(key, quote(str(ext[key])))
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl_test_helper.h | 38 /// @param str the string to parse 40 std::unique_ptr<ParserImpl> parser(const std::string& str) { in parser() argument 41 auto file = std::make_unique<Source::File>("test.wgsl", str); in parser() 61 /// @param str the string to parse 63 std::unique_ptr<ParserImpl> parser(const std::string& str) { in parser() argument 64 auto file = std::make_unique<Source::File>("test.wgsl", str); in parser()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | emitDefaultParametersFunctionExpression.js | 7 var x = function (str = "hello", ...rest) { } 33 var x = function (str) {
34 if (str === void 0) { str = "hello"; }
|
H A D | modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.js | 44 var str = "Hello world"; variable 45 str.includes("hello", 0); 91 var str = "Hello world";
variable 92 str.includes("hello", 0);
|
H A D | modularizeLibrary_TargetES6UsingES6Lib.js | 43 var str = "Hello world"; variable 44 str.includes("hello", 0); 89 var str = "Hello world";
variable 90 str.includes("hello", 0);
|
H A D | typeGuardOfFormNotExpr.js | 2 var str: string; variable 18 str = strOrNum; // string 57 var str;
variable 71 str = strOrNum; // string
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | strerror.cc | 55 const char* str = StrErrorAdaptor(errnum, buf, sizeof buf); in StrErrorInternal() local 56 if (*str == '\0') { in StrErrorInternal() 58 str = buf; in StrErrorInternal() 60 return str; in StrErrorInternal()
|