Home
last modified time | relevance | path

Searched refs:str (Results 3976 - 4000 of 14722) sorted by relevance

1...<<151152153154155156157158159160>>...589

/third_party/ffmpeg/libavfilter/
H A Dvf_derain.c51 { "model", "path to model file", OFFSET(dnnctx.model_filename), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },
52 { "input", "input name of the model", OFFSET(dnnctx.model_inputname), AV_OPT_TYPE_STRING, { .str = "x" }, 0, 0, FLAGS },
53 { "output", "output name of the model", OFFSET(dnnctx.model_outputnames_string), AV_OPT_TYPE_STRING, { .str = "y" }, 0, 0, FLAGS },
/third_party/ffmpeg/libavutil/
H A Davstring.h35 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
36 * the address of the first character in str after the prefix.
38 * @param str input string
40 * @param ptr updated if the prefix is matched inside str
43 int av_strstart(const char *str, const char *pfx, const char **ptr);
46 * Return non-zero if pfx is a prefix of str independent of case. If
47 * it is, *ptr is set to the address of the first character in str
50 * @param str input string
52 * @param ptr updated if the prefix is matched inside str
55 int av_stristart(const char *str, cons
[all...]
/third_party/gn/src/gn/
H A Descape_unittest.cc92 EXPECT_EQ("foo\\\\\\\" bar", buffer.str()); in TEST()
97 EXPECT_EQ("foo bar\\\\\\\\", buffer1.str()); in TEST()
102 EXPECT_EQ("a: \\\"$$\\\\b", buffer2.str()); in TEST()
/third_party/alsa-lib/test/
H A Dcontrol.c13 char str[128]; in main() local
27 sprintf(str, "hw:CARD=%i", idx); in main()
28 if ((err = snd_ctl_open(&handle, str, 0)) < 0) { in main()
/third_party/backends/backend/
H A Dhp-hpmem.c103 sanei_hp_strdup (const char * str) in sanei_hp_strdup() argument
105 return sanei_hp_memdup(str, strlen(str) + 1); in sanei_hp_strdup()
/third_party/benchmark/
H A Dsetup.py19 def temp_fill_include_path(fp: str):
42 def __init__(self, name: str, bazel_target: str):
/third_party/cups-filters/filter/foomatic-rip/
H A Doptions.h172 void append_prolog_section(dstr_t *str, int optset, int comments);
173 void append_setup_section(dstr_t *str, int optset, int comments);
174 void append_page_setup_section(dstr_t *str, int optset, int comments);
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DNameUnicodeTransliterator.java127 String str = UTF16.valueOf(c); in handleTransliterate()
128 text.replace(openPos, cursor, str); in handleTransliterate()
131 // the string. Do not assume that str.length() == in handleTransliterate()
133 int delta = cursor - openPos - str.length(); in handleTransliterate()
136 // assert(cursor == openPos + str.length()); in handleTransliterate()
/third_party/icu/icu4c/source/samples/numfmt/
H A Dutil.cpp71 void uprintf(const UnicodeString &str) { in uprintf() argument
75 int32_t bufLen = str.extract(0, 0x7fffffff, stackBuffer, sizeof(stackBuffer), "UTF-8"); in uprintf()
80 bufLen = str.extract(0, 0x7fffffff, buf, bufLen + 1, "UTF-8"); in uprintf()
/third_party/icu/vendor/double-conversion/upstream/test/cctest/
H A Dcctest.cc39 static char* Strdup(const char* str) { in Strdup() argument
40 size_t len = strlen(str); in Strdup()
42 memcpy(result, str, len + 1); in Strdup()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DNameUnicodeTransliterator.java128 String str = UTF16.valueOf(c); in handleTransliterate()
129 text.replace(openPos, cursor, str); in handleTransliterate()
132 // the string. Do not assume that str.length() == in handleTransliterate()
134 int delta = cursor - openPos - str.length(); in handleTransliterate()
137 // assert(cursor == openPos + str.length()); in handleTransliterate()
/third_party/icu/icu4c/source/i18n/
H A Dcollationruleparser.h76 * strength=UCOL_IDENTICAL for &str.
77 * strength=UCOL_PRIMARY/UCOL_SECONDARY/UCOL_TERTIARY for &[before n]str where n=1/2/3.
79 virtual void addReset(int32_t strength, const UnicodeString &str,
82 * Adds a relation with strength and prefix | str / extension.
85 const UnicodeString &str, const UnicodeString &extension,
158 * Sets str to a contraction of U+FFFE and (U+2800 + Position).
161 int32_t parseSpecialPosition(int32_t i, UnicodeString &str, UErrorCode &errorCode);
H A Dstring_segment.cpp21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument
22 : fStr(str), fStart(0), fEnd(str.length()), in StringSegment()
/third_party/icu/icu4c/source/common/
H A Dutil_props.cpp137 * @param str the string to parse
139 * first character to examine. It must be less than str.length(),
141 * have pos < str.length(). On
146 UnicodeString ICU_Utility::parseUnicodeIdentifier(const UnicodeString& str, int32_t& pos) { in parseUnicodeIdentifier() argument
147 // assert(pos < str.length()); in parseUnicodeIdentifier()
150 while (p < str.length()) { in parseUnicodeIdentifier()
151 UChar32 ch = str.char32At(p); in parseUnicodeIdentifier()
/third_party/libabigail/tests/
H A Dtest-ir-walker.cc64 build_level_prefix(string& str) in build_level_prefix()
66 str.clear(); in build_level_prefix()
68 str += ' '; in build_level_prefix()
/third_party/mesa3d/bin/
H A Dkhronos-update.py11 def error(msg: str) -> None:
16 def __init__(self, filename: str, url: typing.Optional[str]):
/third_party/ltp/testcases/kernel/fs/fs_perms/
H A Dfs_perms.c166 static long str_to_l(const char *str, const char *name, int base) in str_to_l() argument
169 long i = strtol(str, &end, base); in str_to_l()
173 name, str); in str_to_l()
/third_party/ltp/lib/
H A Dself_exec.c171 char *str; in self_exec() local
199 str = va_arg(ap, char *); in self_exec()
200 if (asprintf(&arg, "%s,%s", arg, str) < 0) { in self_exec()
/third_party/node/deps/v8/tools/
H A Dlldb_commands.py61 param = str(current_frame(debugger).FindRegister("pc").value)
100 sourceFile = sourceFile + ":" + str(line)
107 match = assert_re.match(str(functionSignature))
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationruleparser.h76 * strength=UCOL_IDENTICAL for &str.
77 * strength=UCOL_PRIMARY/UCOL_SECONDARY/UCOL_TERTIARY for &[before n]str where n=1/2/3.
79 virtual void addReset(int32_t strength, const UnicodeString &str,
82 * Adds a relation with strength and prefix | str / extension.
85 const UnicodeString &str, const UnicodeString &extension,
158 * Sets str to a contraction of U+FFFE and (U+2800 + Position).
161 int32_t parseSpecialPosition(int32_t i, UnicodeString &str, UErrorCode &errorCode);
H A Dstring_segment.cpp21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument
22 : fStr(str), fStart(0), fEnd(str.length()), in StringSegment()
/third_party/node/deps/icu-small/source/common/
H A Dutil_props.cpp137 * @param str the string to parse
139 * first character to examine. It must be less than str.length(),
141 * have pos < str.length(). On
146 UnicodeString ICU_Utility::parseUnicodeIdentifier(const UnicodeString& str, int32_t& pos) { in parseUnicodeIdentifier() argument
147 // assert(pos < str.length()); in parseUnicodeIdentifier()
150 while (p < str.length()) { in parseUnicodeIdentifier()
151 UChar32 ch = str.char32At(p); in parseUnicodeIdentifier()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Ddbgutil.cpp28 const char *str = udbg_enumName(type, field); in _fieldString() local
29 if(str == nullptr) { in _fieldString()
32 return fillin = UnicodeString(str, -1, US_INV); in _fieldString()
/third_party/node/deps/npm/node_modules/agent-base/dist/
H A Dhelpers.js42 const str = buf.toString('utf8');
44 return JSON.parse(str);
48 err.message += ` (input: ${str})`;
/third_party/icu/icu4c/source/tools/toolutil/
H A Ddbgutil.cpp28 const char *str = udbg_enumName(type, field); in _fieldString() local
29 if(str == NULL) { in _fieldString()
32 return fillin = UnicodeString(str, -1, US_INV); in _fieldString()

Completed in 12 milliseconds

1...<<151152153154155156157158159160>>...589