Home
last modified time | relevance | path

Searched refs:str (Results 976 - 1000 of 10030) sorted by relevance

1...<<31323334353637383940>>...402

/third_party/node/lib/internal/streams/
H A Dbuffer_list.js112 const str = p.data;
113 if (n > str.length) {
114 ret += str;
115 n -= str.length;
117 if (n === str.length) {
118 ret += str;
125 ret += StringPrototypeSlice(str, 0, n);
127 p.data = StringPrototypeSlice(str, n);
/third_party/libinput/udev/
H A Dlibinput-device-group.c162 char *str; in main() local
236 str = strstr(group, "/input"); in main()
237 if (str) in main()
238 *str = '\0'; in main()
246 str = strrchr(group, '.'); in main()
247 if (str && str > strrchr(group, '-')) in main()
248 *str = '\0'; in main()
/third_party/mesa3d/src/util/perf/
H A Du_trace.py49 assert isinstance(name, str)
87 assert isinstance(type, str)
88 assert isinstance(var, str)
107 assert isinstance(type, str)
108 assert isinstance(var, str)
109 assert isinstance(c_format, str)
134 assert isinstance(hdr, str)
147 assert isinstance(decl, str)
/third_party/node/deps/openssl/openssl/crypto/engine/
H A Dtb_asnmth.c140 const char *str, in ENGINE_get_pkey_asn1_meth_str()
149 len = strlen(str); in ENGINE_get_pkey_asn1_meth_str()
155 && OPENSSL_strncasecmp(ameth->pem_str, str, len) == 0) in ENGINE_get_pkey_asn1_meth_str()
164 const char *str; member
180 && OPENSSL_strncasecmp(ameth->pem_str, lk->str, lk->len) == 0) { in look_str_cb()
189 const char *str, in ENGINE_pkey_asn1_find_str()
195 fstr.str = str; in ENGINE_pkey_asn1_find_str()
139 ENGINE_get_pkey_asn1_meth_str(ENGINE *e, const char *str, int len) ENGINE_get_pkey_asn1_meth_str() argument
188 ENGINE_pkey_asn1_find_str(ENGINE **pe, const char *str, int len) ENGINE_pkey_asn1_find_str() argument
/third_party/node/deps/openssl/openssl/crypto/err/
H A Derr_prn.c20 void ERR_print_errors_cb(int (*cb) (const char *str, size_t len, void *u), in ERR_print_errors_cb() argument
150 char *str; in ERR_add_error_mem_bio() local
151 long len = BIO_get_mem_data(bio, &str); in ERR_add_error_mem_bio()
154 if (str[len - 1] != '\0') { in ERR_add_error_mem_bio()
158 len = BIO_get_mem_data(bio, &str); in ERR_add_error_mem_bio()
161 ERR_add_error_txt(separator, str); in ERR_add_error_mem_bio()
166 static int print_bio(const char *str, size_t len, void *bp) in print_bio() argument
168 return BIO_write((BIO *)bp, str, len); in print_bio()
/third_party/rust/crates/clap/tests/builder/
H A Derror.rs9 expected_output: &str, in assert_error()
26 static MESSAGE: &str = "error: failed for mysterious reasons in app_error()
90 static MESSAGE: &str = "\ in kind_prints_help()
108 static MESSAGE: &str = "\ in kind_formats_validation_error()
122 static MESSAGE: &str = "\ in rich_formats_validation_error()
141 static MESSAGE: &str = "\ in suggest_trailing()
162 static MESSAGE: &str = "\ in trailing_already_in_use()
181 static MESSAGE: &str = "\ in cant_use_trailing()
/third_party/rust/crates/heck/src/
H A Dlib.rs69 fn get_iterator(s: &str) -> unicode_segmentation::UnicodeWords { in get_iterator()
74 fn get_iterator(s: &str) -> impl Iterator<Item = &str> { in get_iterator()
79 s: &str, in transform()
85 F: FnMut(&str, &mut fmt::Formatter) -> fmt::Result, in transform()
178 fn lowercase(s: &str, f: &mut fmt::Formatter) -> fmt::Result { in lowercase()
191 fn uppercase(s: &str, f: &mut fmt::Formatter) -> fmt::Result { in uppercase()
199 fn capitalize(s: &str, f: &mut fmt::Formatter) -> fmt::Result { in capitalize()
/third_party/openssl/crypto/engine/
H A Dtb_asnmth.c140 const char *str, in ENGINE_get_pkey_asn1_meth_str()
149 len = strlen(str); in ENGINE_get_pkey_asn1_meth_str()
155 && OPENSSL_strncasecmp(ameth->pem_str, str, len) == 0) in ENGINE_get_pkey_asn1_meth_str()
164 const char *str; member
180 && OPENSSL_strncasecmp(ameth->pem_str, lk->str, lk->len) == 0) { in look_str_cb()
189 const char *str, in ENGINE_pkey_asn1_find_str()
195 fstr.str = str; in ENGINE_pkey_asn1_find_str()
139 ENGINE_get_pkey_asn1_meth_str(ENGINE *e, const char *str, int len) ENGINE_get_pkey_asn1_meth_str() argument
188 ENGINE_pkey_asn1_find_str(ENGINE **pe, const char *str, int len) ENGINE_pkey_asn1_find_str() argument
/third_party/openssl/crypto/err/
H A Derr_prn.c20 void ERR_print_errors_cb(int (*cb) (const char *str, size_t len, void *u), in ERR_print_errors_cb() argument
150 char *str; in ERR_add_error_mem_bio() local
151 long len = BIO_get_mem_data(bio, &str); in ERR_add_error_mem_bio()
154 if (str[len - 1] != '\0') { in ERR_add_error_mem_bio()
158 len = BIO_get_mem_data(bio, &str); in ERR_add_error_mem_bio()
161 ERR_add_error_txt(separator, str); in ERR_add_error_mem_bio()
166 static int print_bio(const char *str, size_t len, void *bp) in print_bio() argument
168 return BIO_write((BIO *)bp, str, len); in print_bio()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DDirectiveHandler.cpp19 static TBehavior getBehavior(const std::string &str) in getBehavior() argument
26 if (str == kRequire) in getBehavior()
28 else if (str == kEnable) in getBehavior()
30 else if (str == kDisable) in getBehavior()
32 else if (str == kWarn) in getBehavior()
227 std::string str = stream.str(); in handleVersion() local
228 mDiagnostics.error(loc, "client/version number not supported", str.c_str()); in handleVersion()
/third_party/python/Lib/tkinter/test/
H A Dsupport.py87 'requires Tcl version >= ' + '.'.join(map(str, version)))
94 '.'.join(map(str, version)))
121 if isinstance(expected, str):
122 return str(actual) == expected
133 if isinstance(actual, (str, tkinter.Widget)):
134 if isinstance(expected, (str, tkinter.Widget)):
135 return str(actual) == str(expected)
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_variable_test.cc33 EXPECT_EQ(out.str(), R"(var<private> a : f32;)"); in TEST_F()
43 EXPECT_EQ(out.str(), R"(var<private> a : f32;)"); in TEST_F()
60 EXPECT_EQ(out.str(), R"([[binding(0), group(0)]] var<storage, read> a : S;)"); in TEST_F()
77 EXPECT_EQ(out.str(), in TEST_F()
95 EXPECT_EQ(out.str(), in TEST_F()
111 EXPECT_EQ(out.str(), R"([[group(1), binding(2)]] var a : sampler;)"); in TEST_F()
121 EXPECT_EQ(out.str(), R"(var<private> a : f32 = 1.0;)"); in TEST_F()
132 EXPECT_EQ(out.str(), R"(let a : f32 = 1.0;)"); in TEST_F()
/third_party/typescript/tests/baselines/reference/
H A DtypeGuardOfFormInstanceOf.js20 var str: string; variable
25 str = ctor1 instanceof C1 && ctor1.p1; // C1
27 str = ctor1 instanceof D1 && ctor1.p1; // D1
33 str = ctor2 instanceof D1 && ctor2.p1; // D1
113 var str; variable
117 str = ctor1 instanceof C1 && ctor1.p1; // C1
119 str = ctor1 instanceof D1 && ctor1.p1; // D1
124 str = ctor2 instanceof D1 && ctor2.p1; // D1
/third_party/selinux/libsepol/cil/test/unit/
H A DCuTest.h50 void CuStringInit(CuString* str);
52 void CuStringRead(CuString* str, const char* path);
53 void CuStringAppend(CuString* str, const char* text);
54 void CuStringAppendChar(CuString* str, char ch);
55 void CuStringAppendFormat(CuString* str, const char* format, ...);
56 void CuStringInsert(CuString* str, const char* text, int pos);
57 void CuStringResize(CuString* str, int newSize);
58 void CuStringDelete(CuString* str);
/third_party/curl/src/
H A Dtool_strdup.c27 char *strdup(const char *str) in strdup() argument
32 if(!str) in strdup()
35 len = strlen(str) + 1; in strdup()
41 memcpy(newstr, str, len); in strdup()
/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Dprinter.cc25 std::string StringPrinter::str() const { in str() function in tint::diag::StringPrinter
26 return stream.str(); in str()
29 void StringPrinter::write(const std::string& str, const Style&) { in write() argument
30 stream << str; in write() local
/third_party/rust/crates/clap/src/parser/matches/
H A Darg_matches.rs112 pub fn get_one<T: Any + Clone + Send + Sync + 'static>(&self, id: &str) -> Option<&T> { in get_one()
141 pub fn get_count(&self, id: &str) -> u8 { in get_one()
176 pub fn get_flag(&self, id: &str) -> bool { in get_flag()
222 id: &str, in get_many()
259 id: &str, in get_occurrences()
306 pub fn get_raw(&self, id: &str) -> Option<RawValues<'_>> { in get_raw()
359 pub fn get_raw_occurrences(&self, id: &str) -> Option<RawOccurrences<'_>> { in get_raw()
397 pub fn remove_one<T: Any + Clone + Send + Sync + 'static>(&mut self, id: &str) -> Option<T> { in get_raw()
434 id: &str, in get_raw()
472 id: &str, in remove_occurrences()
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/chacha/
H A Dchacha-armv4.S74 str r10,[sp,#4*(16+10)] @ off-load "rx"
75 str r11,[sp,#4*(16+11)] @ off-load "rx"
81 str r11,[sp,#4*(32+2)] @ save len
82 str r12, [sp,#4*(32+1)] @ save inp
83 str r14, [sp,#4*(32+0)] @ save out
89 str r11, [sp,#4*(16+15)]
118 str r10,[sp,#4*(16+13)]
122 str r8,[sp,#4*(16+8)]
126 str r9,[sp,#4*(16+9)]
170 str r1
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/chacha/
H A Dchacha-armv4.S74 str r10,[sp,#4*(16+10)] @ off-load "rx"
75 str r11,[sp,#4*(16+11)] @ off-load "rx"
81 str r11,[sp,#4*(32+2)] @ save len
82 str r12, [sp,#4*(32+1)] @ save inp
83 str r14, [sp,#4*(32+0)] @ save out
89 str r11, [sp,#4*(16+15)]
118 str r10,[sp,#4*(16+13)]
122 str r8,[sp,#4*(16+8)]
126 str r9,[sp,#4*(16+9)]
170 str r1
[all...]
/third_party/rust/crates/log/src/
H A Dlib.rs339 use std::str::FromStr;
411 static LOG_LEVEL_NAMES: [&str; 6] = ["OFF", "ERROR", "WARN", "INFO", "DEBUG", "TRACE"];
413 static SET_LOGGER_ERROR: &str = "attempted to set a logger after the logging system \
415 static LEVEL_PARSE_ERROR: &str =
542 fn eq_ignore_ascii_case(a: &str, b: &str) -> bool { in eq_ignore_ascii_case()
562 fn from_str(level: &str) -> Result<Level, Self::Err> { in from_str()
609 pub fn as_str(&self) -> &'static str { in as_str()
743 fn from_str(level: &str) -> Result<LevelFilter, Self::Err> { in from_str()
790 pub fn as_str(&self) -> &'static str { in as_str()
[all...]
/third_party/mesa3d/src/glx/tests/
H A Dquery_renderer_unittest.cpp138 const char *str = in TEST_F() local
140 EXPECT_EQ((char *)0, str); in TEST_F()
180 const char *str = in TEST_F() local
182 EXPECT_EQ((char *)0, str) << invalid_attributes[i].string; in TEST_F()
199 const char *str = in TEST_F() local
201 EXPECT_EQ((char *)0, str); in TEST_F()
219 const char *str = in TEST_F() local
221 EXPECT_EQ((char *)0, str); in TEST_F()
242 const char *str = in TEST_F() local
246 EXPECT_EQ((char *)0, str) << invalid_renderer_indice in TEST_F()
264 const char *str = TEST_F() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_ess.c28 ASN1_STRING *str; in IMPLEMENT_ASN1_FUNCTIONS() local
34 str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE); in IMPLEMENT_ASN1_FUNCTIONS()
35 if (str == NULL) in IMPLEMENT_ASN1_FUNCTIONS()
38 rr = ASN1_item_unpack(str, ASN1_ITEM_rptr(CMS_ReceiptRequest)); in IMPLEMENT_ASN1_FUNCTIONS()
55 ASN1_STRING *str; in ossl_cms_signerinfo_get_signing_cert() local
61 str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE); in ossl_cms_signerinfo_get_signing_cert()
62 if (str == NULL) in ossl_cms_signerinfo_get_signing_cert()
65 sc = ASN1_item_unpack(str, ASN1_ITEM_rptr(ESS_SIGNING_CERT)); in ossl_cms_signerinfo_get_signing_cert()
82 ASN1_STRING *str; in ossl_cms_signerinfo_get_signing_cert_v2() local
88 str in ossl_cms_signerinfo_get_signing_cert_v2()
[all...]
/third_party/openssl/crypto/cms/
H A Dcms_ess.c28 ASN1_STRING *str; in IMPLEMENT_ASN1_FUNCTIONS() local
34 str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE); in IMPLEMENT_ASN1_FUNCTIONS()
35 if (str == NULL) in IMPLEMENT_ASN1_FUNCTIONS()
38 rr = ASN1_item_unpack(str, ASN1_ITEM_rptr(CMS_ReceiptRequest)); in IMPLEMENT_ASN1_FUNCTIONS()
55 ASN1_STRING *str; in ossl_cms_signerinfo_get_signing_cert() local
61 str = CMS_signed_get0_data_by_OBJ(si, obj, -3, V_ASN1_SEQUENCE); in ossl_cms_signerinfo_get_signing_cert()
62 if (str == NULL) in ossl_cms_signerinfo_get_signing_cert()
65 sc = ASN1_item_unpack(str, ASN1_ITEM_rptr(ESS_SIGNING_CERT)); in ossl_cms_signerinfo_get_signing_cert()
82 ASN1_STRING *str; in ossl_cms_signerinfo_get_signing_cert_v2() local
88 str in ossl_cms_signerinfo_get_signing_cert_v2()
[all...]
/third_party/skia/gm/
H A Dbitmaprect.cpp47 SkString str; variable
48 str.printf("bitmaprect_%s", fUseIRect ? "i" : "s");
49 return str;
138 SkString str; variable
139 str.printf("3x3bitmaprect");
140 return str;
201 SkString str; variable
202 str.printf("bigbitmaprect_%s", fUseIRect ? "i" : "s");
203 return str;
251 SkString str; variable
[all...]
/third_party/rust/crates/syn/tests/
H A Dtest_lit.rs13 use std::str::FromStr;
16 fn lit(s: &str) -> Lit { in lit()
29 fn test_string(s: &str, value: &str) { in strings()
68 fn test_byte_string(s: &str, value: &[u8]) { in byte_strings()
100 fn test_byte(s: &str, value: u8) { in bytes()
122 fn test_char(s: &str, value: char) { in chars()
148 fn test_int(s: &str, value: u64, suffix: &str) { in ints()
188 fn test_float(s: &str, valu in floats()
[all...]

Completed in 12 milliseconds

1...<<31323334353637383940>>...402