/third_party/icu/icu4c/source/i18n/ |
H A D | collationruleparser.cpp | 195 UnicodeString str; in parseResetAndPosition() local 197 i = parseSpecialPosition(i, str, errorCode); in parseResetAndPosition() 199 i = parseTailoringString(i, str, errorCode); in parseResetAndPosition() 201 sink->addReset(resetStrength, str, errorReason, errorCode); in parseResetAndPosition() 260 // prefix | str / extension in parseRelationStrings() 262 UnicodeString prefix, str, extension; in parseRelationStrings() local 263 i = parseTailoringString(i, str, errorCode); in parseRelationStrings() 267 prefix = str; in parseRelationStrings() 268 i = parseTailoringString(i + 1, str, errorCode); in parseRelationStrings() 277 UChar32 c = str in parseRelationStrings() 460 parseSpecialPosition(int32_t i, UnicodeString &str, UErrorCode &errorCode) parseSpecialPosition() argument [all...] |
/third_party/mesa3d/src/freedreno/perfcntrs/ |
H A D | fdperf.c | 390 char *str; in redraw_counter_value_cycles() local 407 n = asprintf(&str, "%.2f%%", 100.0 * val); in redraw_counter_value_cycles() 409 waddnstr(win, str, barwidth); in redraw_counter_value_cycles() 416 waddstr(win, str + barwidth); in redraw_counter_value_cycles() 419 free(str); in redraw_counter_value_cycles() 425 char *str; in redraw_counter_value_raw() local 426 (void)asprintf(&str, "%'.2f", val); in redraw_counter_value_raw() 427 waddstr(win, str); in redraw_counter_value_raw() 429 free(str); in redraw_counter_value_raw() 840 char *str; in config_restore() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | collationruleparser.cpp | 197 UnicodeString str; in parseResetAndPosition() local 199 i = parseSpecialPosition(i, str, errorCode); in parseResetAndPosition() 201 i = parseTailoringString(i, str, errorCode); in parseResetAndPosition() 203 sink->addReset(resetStrength, str, errorReason, errorCode); in parseResetAndPosition() 262 // prefix | str / extension in parseRelationStrings() 264 UnicodeString prefix, str, extension; in parseRelationStrings() local 265 i = parseTailoringString(i, str, errorCode); in parseRelationStrings() 269 prefix = str; in parseRelationStrings() 270 i = parseTailoringString(i + 1, str, errorCode); in parseRelationStrings() 279 UChar32 c = str in parseRelationStrings() 462 parseSpecialPosition(int32_t i, UnicodeString &str, UErrorCode &errorCode) parseSpecialPosition() argument [all...] |
/third_party/libinput/test/ |
H A D | test-quirks.c | 907 const char *str, in test_attr_parse() 923 str); in test_attr_parse() 950 const char *str; member 979 t->str, in START_TEST() 994 const char *str; member 1031 t->str, in START_TEST() 1046 const char *str; member 1078 t->str, in START_TEST() 1092 const char *str; member 1130 t->str, in START_TEST() 905 test_attr_parse(struct litest_device *dev, enum quirk which, const char *str, qparsefunc func, void *data) test_attr_parse() argument 1144 const char *str; global() member 1194 const char *str; global() member [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | semind.c | 403 char *str; in parse_cmdline_search() local 408 str = argv[optind]; in parse_cmdline_search() 410 while (str) { in parse_cmdline_search() 413 if ((ptr = strchr(str, ':')) != NULL) in parse_cmdline_search() 416 if (*str != '\0') { in parse_cmdline_search() 418 semind_search_filename = str; in parse_cmdline_search() 420 semind_search_line = atoi(str); in parse_cmdline_search() 422 semind_search_column = atoi(str); in parse_cmdline_search() 425 str = ptr; in parse_cmdline_search() 863 char str[ in print_mode() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_ameth.c | 57 ASN1_STRING *str; in rsa_pub_encode() local 60 if (!rsa_param_encode(pkey, &str, &strtype)) in rsa_pub_encode() 64 ASN1_STRING_free(str); in rsa_pub_encode() 68 strtype, str, penc, penclen)) in rsa_pub_encode() 72 ASN1_STRING_free(str); in rsa_pub_encode() 149 ASN1_STRING *str; in rsa_priv_encode() local 152 if (!rsa_param_encode(pkey, &str, &strtype)) in rsa_priv_encode() 158 ASN1_STRING_free(str); in rsa_priv_encode() 163 strtype, str, rk, rklen)) { in rsa_priv_encode() 165 ASN1_STRING_free(str); in rsa_priv_encode() 303 char *str; pkey_rsa_print() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationruleparser.cpp | 195 UnicodeString str; in parseResetAndPosition() local 197 i = parseSpecialPosition(i, str, errorCode); in parseResetAndPosition() 199 i = parseTailoringString(i, str, errorCode); in parseResetAndPosition() 201 sink->addReset(resetStrength, str, errorReason, errorCode); in parseResetAndPosition() 260 // prefix | str / extension in parseRelationStrings() 262 UnicodeString prefix, str, extension; in parseRelationStrings() local 263 i = parseTailoringString(i, str, errorCode); in parseRelationStrings() 267 prefix = str; in parseRelationStrings() 268 i = parseTailoringString(i + 1, str, errorCode); in parseRelationStrings() 277 UChar32 c = str in parseRelationStrings() 460 parseSpecialPosition(int32_t i, UnicodeString &str, UErrorCode &errorCode) parseSpecialPosition() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | charconv_test.cc | 42 void TestDoubleParse(absl::string_view str, double expected_number) { in TestDoubleParse() argument 43 SCOPED_TRACE(str); in TestDoubleParse() 46 absl::from_chars(str.data(), str.data() + str.length(), actual_number); in TestDoubleParse() 48 EXPECT_EQ(result.ptr, str.data() + str.length()); in TestDoubleParse() 52 void TestFloatParse(absl::string_view str, float expected_number) { in TestFloatParse() argument 53 SCOPED_TRACE(str); in TestFloatParse() 56 absl::from_chars(str in TestFloatParse() [all...] |
/third_party/benchmark/src/ |
H A D | console_reporter.cc | 58 std::string str = in PrintHeader() local 64 str += FormatString(" %10s", c.first.c_str()); in PrintHeader() 67 str += " UserCounters..."; in PrintHeader() 70 std::string line = std::string(str.length(), '-'); in PrintHeader() 71 GetOutputStream() << line << "\n" << str << "\n" << line << "\n"; in PrintHeader()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
H A D | RBICUExporter.java | 139 * @param str The string to escape 143 protected String escapeString(String str, boolean isKey) throws IOException { in escapeString() argument 145 int len = str.length(); in escapeString() 148 int ch = str.charAt(idx); in escapeString() 151 IOException e = new IOException(str + " needs to use invariant characters for the key."); in escapeString() 159 int ch2 = str.charAt(idx++); in escapeString()
|
/third_party/mesa3d/.gitlab-ci/bin/ |
H A D | ci_run_n_monitor.py | 64 def get_gitlab_project(glab, name: str): 71 def wait_for_pipeline(project, sha: str): 123 project, pipeline, target_job: Optional[str], dependencies, force_manual: bool 261 def read_token(token_arg: Optional[str]) -> str:
|
/third_party/mesa3d/src/freedreno/afuc/ |
H A D | parser.y | 108 label(const char *str) 110 instr->label = str; 118 const char *str; 124 %token <str> T_LABEL_DECL 125 %token <str> T_LABEL_REF
|
/third_party/ltp/testcases/kernel/fs/mongo/ |
H A D | reiser_fract_tree.c | 137 void get_name_by_number(long this_files_number, char *str) in get_name_by_number() argument 139 sprintf(str, "%lu", this_files_number); in get_name_by_number() 146 char *str = string; in make_file() local 170 get_name_by_number(this_files_number++, str); in make_file() 173 strcat(fname, str); in make_file()
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8-console.cc | 25 v8::String::Utf8Value str(isolate, str_obj); in WriteToFile() 26 int n = static_cast<int>(fwrite(*str, sizeof(**str), str.length(), file)); in WriteToFile() 27 if (n != str.length()) { in WriteToFile()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | enums2names.py | 92 type=str, 97 type=str, 103 type=str, 109 type=str, 272 pkk_fatal(str(e))
|
/third_party/rust/crates/clap/src/builder/ |
H A D | os_str.rs | 123 impl From<&'static str> for OsStr { 124 fn from(name: &'static str) -> Self { in from() 129 impl From<&'_ &'static str> for OsStr { in from() 130 fn from(name: &'_ &'static str) -> Self { in from() 184 impl PartialEq<str> for OsStr { 186 fn eq(&self, other: &str) -> bool { in eq() 190 impl PartialEq<OsStr> for str { 197 impl PartialEq<&'_ str> for OsStr { 199 fn eq(&self, other: &&str) -> bool { in eq() 203 impl PartialEq<OsStr> for &'_ str { [all...] |
/third_party/openssl/test/ |
H A D | tls13encryptiontest.c | 202 static unsigned char *multihexstr2buf(const char *str[3], size_t *len) in multihexstr2buf() argument 210 totlen += strlen(str[outer]); in multihexstr2buf() 221 for (inner = 0; str[outer][inner] != 0; inner += 2) { in multihexstr2buf() 224 hi = OPENSSL_hexchar2int(str[outer][inner]); in multihexstr2buf() 225 lo = OPENSSL_hexchar2int(str[outer][inner + 1]); in multihexstr2buf()
|
/third_party/python/Lib/ |
H A D | string.py | 48 return (sep or ' ').join(map(str.capitalize, s.split(sep))) 114 return str(mapping[named]) 133 return str(mapping[named]) 183 # prefixed methods of str. 221 field_name = str(auto_arg_index) 272 return str(value)
|
/third_party/skia/third_party/externals/angle2/src/tests/capture_replay_tests/ |
H A D | CaptureReplayTests.cpp | 123 mTraceLibrary->setBinaryDataDir(binaryPathStream.str().c_str()); in initializeTest() 166 std::ofstream debugReplay(replayName.str()); in runTest() 172 std::ofstream debugCapture(captureName.str()); in runTest() 196 if (!angle::LoadTraceNamesFromJSON(tracePathStream.str(), &traces)) in run() 208 std::string traceJsonPath = traceJsonPathStream.str(); in run()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | propagator.cpp | 274 std::ostream& operator<<(std::ostream& str, in operator <<() argument 278 str << "Varying"; in operator <<() 281 str << "Interesting"; in operator <<() 284 str << "Not interesting"; in operator <<() 287 return str; in operator <<()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | propagator.cpp | 274 std::ostream& operator<<(std::ostream& str, in operator <<() argument 278 str << "Varying"; in operator <<() 281 str << "Interesting"; in operator <<() 284 str << "Not interesting"; in operator <<() 287 return str; in operator <<()
|
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
H A D | generator_impl_binary_test.cc | 52 EXPECT_EQ(out.str(), params.result); in TEST_P() 98 EXPECT_EQ(out.str(), params.result); in TEST_P() 134 EXPECT_EQ(out.str(), params.result); in TEST_P() 167 EXPECT_EQ(out.str(), "fmod(left, right)"); in TEST_F() 181 EXPECT_EQ(out.str(), "fmod(left, right)"); in TEST_F()
|
/third_party/python/Lib/encodings/ |
H A D | idna.py | 123 return str(label, "ascii") 136 if str(label, "ascii").lower() != str(label2, "ascii"): 260 if isinstance(input, str): 264 input = str(input, "ascii")
|
/third_party/rust/crates/proc-macro-error/src/ |
H A D | diagnostic.rs | 171 pub fn message(&self) -> &str { in message() 199 pub fn span_suggestion(self, span: Span, suggestion: &str, msg: String) -> Self { in span_suggestion() 206 pub fn suggestion(self, suggestion: &str, msg: String) -> Self { in suggestion() 218 fn ensure_lf(buf: &mut String, s: &str) { in to_tokens() 230 msg: &str, in to_tokens() 282 fn name(&self) -> &'static str { in name()
|
/third_party/spirv-tools/source/opt/ |
H A D | propagator.cpp | 274 std::ostream& operator<<(std::ostream& str, in operator <<() argument 278 str << "Varying"; in operator <<() 281 str << "Interesting"; in operator <<() 284 str << "Not interesting"; in operator <<() 287 return str; in operator <<()
|