/test/xts/acts/multimedia/av_codec/audio_encoder/src/ |
H A D | common_tool.cpp | 30 string str; in GetRandString() local 35 str.push_back(c); in GetRandString() 37 return str; in GetRandString()
|
/test/xts/acts/multimedia/av_codec/audio_decoder/src/ |
H A D | common_tool.cpp | 28 string str; in GetRandString() local 33 str.push_back(c); in GetRandString() 35 return str; in GetRandString()
|
/third_party/eudev/src/shared/ |
H A D | strbuf.h | 52 ssize_t strbuf_add_string(struct strbuf *str, const char *s, size_t len); 53 void strbuf_complete(struct strbuf *str); 54 void strbuf_cleanup(struct strbuf *str);
|
/third_party/gn/src/gn/ |
H A D | escape.h | 74 std::string EscapeString(std::string_view str, 81 std::string_view str, 87 std::string_view str,
|
/third_party/backends/include/sane/ |
H A D | sanei_config.h | 76 * @param str points to the buffer for the line 80 * @return \a str on success and NULL on error 82 extern char *sanei_config_read (char *str, int n, FILE *stream); 86 * @param str string 91 extern const char *sanei_config_skip_whitespace (const char *str); 102 * @param str line of text to scan for a string constant 105 * @return a pointer to the position in str where the scan stopped 107 extern const char *sanei_config_get_string (const char *str,
|
/third_party/libunwind/libunwind/src/arm/ |
H A D | Gglobal.c | 53 const char* str = getenv ("UNW_ARM_UNWIND_METHOD"); in tdep_init() local 54 if (str) in tdep_init() 56 unwi_unwind_method = atoi (str); in tdep_init()
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | asymmetric_key_data.py | 14 STR_TRANS_REMOVE_BLANKS = str.maketrans('', '', ' \t\n\r') 16 def unhexlify(text: str) -> bytes: 19 def construct_asymmetric_key_data(src) -> Dict[str, Dict[int, bytes]]: 25 dst = {} #type: Dict[str, Dict[int, bytes]]
|
/third_party/jinja2/ |
H A D | defaults.py | 20 LINE_STATEMENT_PREFIX: t.Optional[str] = None 21 LINE_COMMENT_PREFIX: t.Optional[str] = None 39 DEFAULT_POLICIES: t.Dict[str, t.Any] = {
|
/third_party/jerryscript/tests/jerry/ |
H A D | global-escaping.js | 58 var str = "\u0001\u0000\uFFFF"; variable 59 assert (unescape(escape(str)) === str);
|
/third_party/node/test/js-native-api/5_function_factory/ |
H A D | 5_function_factory.c | 6 napi_value str; in MyFunction() local 7 NODE_API_CALL(env, napi_create_string_utf8(env, "hello world", -1, &str)); in MyFunction() 8 return str; in MyFunction()
|
/third_party/icu/icu4c/source/samples/msgfmt/answers/ |
H A D | main_2.cpp | 28 UnicodeString str; in main() local 41 msg.format(msgArgs, 2, str, pos, status); in main() 45 uprintf(str); in main()
|
H A D | main_3.cpp | 28 UnicodeString str; in main() local 41 msg.format(msgArgs, 2, str, pos, status); in main() 45 uprintf(str); in main()
|
/third_party/icu/icu4c/source/samples/msgfmt/ |
H A D | main.cpp | 28 UnicodeString str; in main() local 41 msg.format(msgArgs, 2, str, pos, status); in main() 45 uprintf(str); in main()
|
/third_party/libevdev/tools/ |
H A D | libevdev-list-codes.c | 25 const char *str = libevdev_event_code_get_name(type, code); in list_event_codes() local 27 if (!str) in list_event_codes() 30 printf(" %d: %s\n", code, str); in list_event_codes()
|
/third_party/musl/libc-test/src/functionalext/supplement/mman/ |
H A D | munmap.c | 28 const char str[] = "this is a sample!"; in munmap_0100() local 33 fwrite(str, sizeof(char), strlen(str), fptr); in munmap_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | getchar_unlocked.c | 29 char str[] = "r"; in getchar_unlocked_0100() local 35 ssize_t ret = write(fd, str, sizeof(str)); in getchar_unlocked_0100()
|
H A D | getchar.c | 29 char str[] = "t"; in getchar_0100() local 34 ssize_t ret = write(fd, str, sizeof(str)); in getchar_0100()
|
H A D | rewind.c | 38 char str[] = "test"; in rewind_0100() local 39 fwrite(str, 1, sizeof(str), fptr); in rewind_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/stdio_gtest/ |
H A D | stdio_gets_test.cpp | 26 char str[BUF_SIZE]; in HWTEST_F() local 30 gets(str); in HWTEST_F() 31 EXPECT_TRUE(str); in HWTEST_F()
|
H A D | stdio_getwchar_test.cpp | 24 wint_t str; in HWTEST_F() local 28 str = getwchar(); in HWTEST_F() 29 EXPECT_TRUE(str); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/time/ |
H A D | mktime_sup.c | 478 char *str = strrchr(tz, TIME_ZONE_SUB_TAG); in mktime_0100() local 479 if (str) { in mktime_0100() 480 handlerChar = ++str; in mktime_0100()
|
H A D | difftime_sup.c | 478 char *str = strrchr(tz, TIME_ZONE_SUB_TAG); in difftime_0100() local 479 if (str) { in difftime_0100() 480 handlerChar = ++str; in difftime_0100()
|
/third_party/python/Lib/test/ |
H A D | inspect_stock_annotations.py | 2 b:str="foo" 6 b:str="bar" 13 def function(a:int, b:str) -> MyClass: 17 def function2(a:int, b:"str", c:MyClass) -> MyClass: 21 def function3(a:"int", b:"str", c:"MyClass"):
|
H A D | pydoc_mod.py | 20 NO_MEANING: str = "eggs" 50 type_union1 = typing.Union[int, str] 51 type_union2 = int | str
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | assembly_context_test.cpp | 31 std::string str; member 42 context.binaryEncodeString(GetParam().str.c_str(), &inst)); in TEST_P() 45 utils::MakeVector(GetParam().str)}))); in TEST_P()
|