/third_party/skia/third_party/externals/tint/tools/src/cmd/snippets/ |
H A D | main.go | 89 str := fmt.Sprintf(`* [%s](%sc/%s/+/%d)`, change.Subject, gerrit.URL, change.Project, change.Number) 90 changesByProject[change.Project] = append(changesByProject[change.Project], str)
|
/third_party/spirv-tools/source/ |
H A D | diagnostic.cpp | 84 stream_ << other.stream_.str(); in DiagnosticStream() 112 consumer_(level, "input", position_, stream_.str().c_str()); in ~DiagnosticStream()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | privateNameStaticMethodCallExpression.js | 16 const str = AA.#method2`head${1}middle${2}tail`; 46 const str = __classPrivateFieldGet(AA, _a, "m", _AA_method2).bind(AA) `head${1}middle${2}tail`;
|
H A D | functionExpressionContextualTyping1.js | 10 var a0: (n: number, s: string) => number = (num, str) => { 69 var a0 = function (num, str) {
|
/third_party/skia/third_party/externals/freetype/builds/wince/ |
H A D | ftdebug.c | 58 OutputDebugStringEx( const char* str ) in OutputDebugStringEx() 62 int sz = MultiByteToWideChar( CP_ACP, 0, str, -1, buf, in OutputDebugStringEx()
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | descriptor_database_test.py | 126 str(w[0].message)) 129 str(w[0].message))
|
/third_party/python/Lib/test/ |
H A D | test_spwd.py | 32 self.assertIsInstance(entry.sp_pwdp, str) 51 self.assertEqual(str(cx.exception), "'getspnam(): name not found'")
|
/third_party/python/Lib/wsgiref/ |
H A D | headers.py | 43 if type(value) is str: 46 " of type str (got {0})".format(repr(value))) 137 """str() returns the formatted headers, complete with end line, 142 return str(self).encode('iso-8859-1')
|
/third_party/qrcodegen/python/ |
H A D | qrcodegen-demo.py | 174 def to_svg_str(qr: QrCode, border: int) -> str: 179 parts: List[str] = []
|
/third_party/rust/crates/clap/clap_complete/src/shells/ |
H A D | shell.rs | 3 use std::str::FromStr; 39 fn from_str(s: &str) -> Result<Self, Self::Err> { in fmt() 73 fn file_name(&self, name: &str) -> String { in file_name()
|
/third_party/rust/crates/clap/clap_derive/src/utils/ |
H A D | doc_comments.rs | 116 fn is_blank(s: &str) -> bool { in is_blank() 120 fn merge_lines(lines: impl IntoIterator<Item = impl AsRef<str>>) -> String { in merge_lines()
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | propagate_globals.rs | 23 fn get_matches(cmd: Command, argv: &'static str) -> ArgMatches { in get_matches() 39 fn top_can_access_arg<T: Into<Option<&'static str>>>(m: &ArgMatches, val: T) -> bool { in top_can_access_arg() 43 fn inner_can_access_arg<T: Into<Option<&'static str>>>(m: &ArgMatches, val: T) -> bool { in top_can_access_arg() 50 fn outer_can_access_arg<T: Into<Option<&'static str>>>(m: &ArgMatches, val: T) -> bool { in top_can_access_arg()
|
/third_party/skia/gm/ |
H A D | imagemagnifier.cpp | 40 const char* str = "The quick brown fox jumped over the lazy dog."; in DEF_SIMPLE_GM_BG() local 49 canvas->drawString(str, SkIntToScalar(x), SkIntToScalar(y), font, paint); in DEF_SIMPLE_GM_BG()
|
H A D | patharcto.cpp | 45 const char* str = "M66.652,65.509c0.663,-2 -0.166,-4.117 -2.117,-5.212 -0.673,-0.378 -1.36,-0.733 -2.04,-1.1a1647300864,1647300864 0,0 1,-31.287 -16.86c-5.39,-2.903 -10.78,-5.808 -16.171,-8.713 -1.626,-0.876 -3.253,-1.752 -4.88,-2.63 -1.224,-0.659 -2.4,-1.413 -3.851,-1.413 -1.135,0 -2.242,0.425 -3.049,1.197 0.08,-0.083 0.164,-0.164 0.248,-0.246l5.309,-5.13 9.37,-9.054 9.525,-9.204 5.903,-5.704C34.237,0.836 34.847,0.297 35.75,0.13c0.982,-0.182 1.862,0.127 2.703,0.592l6.23,3.452L55.76,10.31l11.951,6.62 9.02,4.996c1.74,0.963 4.168,1.854 4.205,4.21 0.011,0.678 -0.246,1.28 -0.474,1.9l-1.005,2.733 -5.665,15.42 -7.106,19.338 -0.034,-0.018z"; in DEF_SIMPLE_GM() local 47 SkParsePath::FromSVGString(str, &path); in DEF_SIMPLE_GM()
|
/third_party/rust/crates/minimal-lexical/tests/ |
H A D | parse_tests.rs | 4 fn check_parse_float<F: num::Float>(integer: &str, fraction: &str, exponent: i32, expected: F) { in check_parse_float()
|
/third_party/rust/crates/regex/examples/ |
H A D | shootout-regex-dna-cheat.rs | 72 fn replace_all(text: &str, substs: Vec<(u8, &str)>) -> String { in replace_all()
|
/third_party/rust/crates/rustix/tests/process/ |
H A D | weak.rs | 47 name: &'static str, 53 pub(crate) const fn new(name: &'static str) -> Self { 109 unsafe fn fetch(name: &str) -> *mut c_void { in fetch()
|
/third_party/rust/crates/regex/tests/ |
H A D | replace.rs | 155 t!(std::borrow::Cow::<'_, str>::Borrowed("Z")), 163 t!(&std::borrow::Cow::<'_, str>::Borrowed("Z")), 171 t!(std::borrow::Cow::<'_, str>::Owned("Z".to_string())), 179 t!(&std::borrow::Cow::<'_, str>::Owned("Z".to_string())),
|
/third_party/rust/crates/os_str_bytes/src/windows/ |
H A D | mod.rs | 16 use std::str; 36 fn position(&self) -> Cow<'_, str> { in position() 72 debug_assert_eq!(str::from_utf8(string).is_ok(), encoder.is_still_utf8()); in from_bytes() 92 str::from_utf8_unchecked(string)
|
/third_party/rust/crates/os_str_bytes/tests/ |
H A D | common.rs | 78 pub(crate) fn test_utf8_bytes(string: &str) { 85 pub(crate) fn test_utf8_vec(string: &str) {
|
/third_party/rust/crates/quote/src/ |
H A D | runtime.rs | 259 pub fn parse(tokens: &mut TokenStream, s: &str) { in parse() 265 pub fn parse_spanned(tokens: &mut TokenStream, span: Span, s: &str) { in parse_spanned() 288 pub fn push_ident(tokens: &mut TokenStream, s: &str) { in push_ident() 294 pub fn push_ident_spanned(tokens: &mut TokenStream, span: Span, s: &str) { in push_ident_spanned() 299 pub fn push_lifetime(tokens: &mut TokenStream, lifetime: &str) { in push_lifetime() 301 name: &'a str, in push_lifetime() 330 pub fn push_lifetime_spanned(tokens: &mut TokenStream, span: Span, lifetime: &str) { in push_lifetime_spanned() 332 name: &'a str, in push_lifetime_spanned() 473 pub fn mk_ident(id: &str, span: Option<Span>) -> Ident { in mk_ident() 478 fn ident_maybe_raw(id: &str, spa [all...] |
/third_party/rust/crates/rustix/tests/param/ |
H A D | weak.rs | 47 name: &'static str, 53 pub(crate) const fn new(name: &'static str) -> Self { 109 unsafe fn fetch(name: &str) -> *mut c_void { in fetch()
|
/third_party/rust/crates/syn/tests/macros/ |
H A D | mod.rs | 6 use std::str::FromStr; 81 impl<'a> TryIntoTokens for &'a str {
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | edit_readline.c | 79 static void trunc_nl(char *str) in trunc_nl() argument 81 char *pos = str; in trunc_nl()
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluObjectWrapper.cpp | 52 throw OutOfMemoryError(msg.str()); in ObjectWrapper() 54 throw Error((int)err, msg.str()); in ObjectWrapper()
|