Home
last modified time | relevance | path

Searched refs:str (Results 4951 - 4975 of 14334) sorted by relevance

1...<<191192193194195196197198199200>>...574

/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_pds_printer.c34 #define X(lop, str) #str,
42 #define X(enum, str, size) { #str, #size }, in pvr_pds_disassemble_operand()
516 #define X(dout_dst, str) #str, in pvr_pds_disassemble_instruction_dout()
/third_party/node/tools/gyp/pylib/gyp/
H A Dcommon.py45 e.args = (str(e.args[0]) + " " + msg,)
47 e.args = (str(e.args[0]) + " " + msg,) + e.args[1:]
277 if not isinstance(argument, str):
278 argument = str(argument)
592 return "CycleError: cycle involving: " + str(self.nodes)
658 return "CYGWIN" in str(stdout)
/third_party/node/deps/cares/src/lib/
H A Dares_dns_mapping.c601 ares_bool_t ares_dns_class_fromstr(ares_dns_class_t *qclass, const char *str) in ares_dns_class_fromstr() argument
617 if (qclass == NULL || str == NULL) { in ares_dns_class_fromstr()
622 if (strcasecmp(list[i].name, str) == 0) { in ares_dns_class_fromstr()
631 const char *str) in ares_dns_rec_type_fromstr()
661 if (qtype == NULL || str == NULL) { in ares_dns_rec_type_fromstr()
666 if (strcasecmp(list[i].name, str) == 0) { in ares_dns_rec_type_fromstr()
630 ares_dns_rec_type_fromstr(ares_dns_rec_type_t *qtype, const char *str) ares_dns_rec_type_fromstr() argument
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_builder.h73 annotation.str = inst->annotation; in vec4_builder()
139 annotate(const char *str, const void *ir = NULL) const in annotate() argument
142 bld.annotation.str = str; in annotate()
317 inst->annotation = annotation.str; in emit()
640 const char *str; member
/third_party/mesa3d/src/mesa/main/
H A Dformat_parser.py57 s = str(self.type)
60 s += str(self.size)
147 if isinstance(swizzle, str):
185 elif isinstance(idx, str):
452 if str(self.swizzle) == 'xxxx':
454 elif str(self.swizzle)[0:3] in ('xxx', 'yyy'):
/third_party/node/deps/icu-small/source/i18n/
H A Dutrans.cpp456 UnicodeString str(text, textLen, textCapacity);
458 *limit = ((Transliterator*) trans)->transliterate(str, start, *limit);
462 textLen = str.extract(text, textCapacity, *status);
486 UnicodeString str(text, textLen, textCapacity);
488 ((Transliterator*) trans)->transliterate(str, *pos, *status);
492 textLen = str.extract(text, textCapacity, *status);
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dcommon.py45 e.args = (str(e.args[0]) + " " + msg,)
47 e.args = (str(e.args[0]) + " " + msg,) + e.args[1:]
273 if not isinstance(argument, str):
274 argument = str(argument)
586 return "CycleError: cycle involving: " + str(self.nodes)
652 return "CYGWIN" in str(stdout)
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_jit.c388 char *str = LLVMPrintModuleToString(gallivm->module); in lp_jit_create_types() local
389 fprintf(stderr, "%s", str); in lp_jit_create_types()
390 LLVMDisposeMessage(str); in lp_jit_create_types()
508 char *str = LLVMPrintModuleToString(gallivm->module); in lp_jit_create_cs_types() local
509 fprintf(stderr, "%s", str); in lp_jit_create_cs_types()
510 LLVMDisposeMessage(str); in lp_jit_create_cs_types()
/third_party/icu/icu4c/source/i18n/
H A Dutrans.cpp456 UnicodeString str(text, textLen, textCapacity);
458 *limit = ((Transliterator*) trans)->transliterate(str, start, *limit);
462 textLen = str.extract(text, textCapacity, *status);
486 UnicodeString str(text, textLen, textCapacity);
488 ((Transliterator*) trans)->transliterate(str, *pos, *status);
492 textLen = str.extract(text, textCapacity, *status);
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
H A Dtarget.cc455 const char* str = &pkt_in->GetPayload()[1]; in ProcessQueryPacket() local
464 if (!strcmp(str, "fThreadInfo") || !strcmp(str, "sThreadInfo")) { in ProcessQueryPacket()
465 if (str[0] == 'f') { in ProcessQueryPacket()
487 if (!strncmp(str, tmp.data(), tmp.length())) { in ProcessQueryPacket()
511 std::vector<std::string> toks = StringSplit(str, ":;"); in ProcessQueryPacket()
/third_party/node/deps/v8/src/utils/
H A Dallocation.cc129 char* StrDup(const char* str) { in StrDup() argument
130 size_t length = strlen(str); in StrDup()
132 MemCopy(result, str, length); in StrDup()
137 char* StrNDup(const char* str, size_t n) { in StrNDup() argument
138 size_t length = strlen(str); in StrNDup()
141 MemCopy(result, str, length); in StrNDup()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_conn.c44 static int conn_puts(BIO *h, const char *str);
602 static int conn_puts(BIO *bp, const char *str) in conn_puts() argument
606 n = strlen(str); in conn_puts()
607 ret = conn_write(bp, str, n); in conn_puts()
611 BIO *BIO_new_connect(const char *str) in BIO_new_connect() argument
618 if (BIO_set_conn_hostname(ret, str)) in BIO_new_connect()
H A Dbss_acpt.c40 static int acpt_puts(BIO *h, const char *str);
553 static int acpt_puts(BIO *bp, const char *str) in acpt_puts() argument
557 n = strlen(str); in acpt_puts()
558 ret = acpt_write(bp, str, n); in acpt_puts()
562 BIO *BIO_new_accept(const char *str) in BIO_new_accept() argument
569 if (BIO_set_accept_name(ret, str) > 0) in BIO_new_accept()
/third_party/node/deps/openssl/openssl/crypto/conf/
H A Dconf_lib.c333 char *str; in NCONF_get_number_e() local
343 str = NCONF_get_string(conf, group, name); in NCONF_get_number_e()
345 if (str == NULL) in NCONF_get_number_e()
354 for (res = 0; is_number(conf, *str); str++) { in NCONF_get_number_e()
355 const int d = to_int(conf, *str); in NCONF_get_number_e()
/third_party/rust/crates/log/src/kv/
H A Dvalue.rs348 fn visit_str(&mut self, value: &str) -> Result<(), value_bag::Error> { in visit_str()
352 fn visit_borrowed_str(&mut self, value: &'v str) -> Result<(), value_bag::Error> { in visit_borrowed_str()
438 impl ToValue for str {
468 impl<'v> From<&'v str> for Value<'v> {
469 fn from(value: &'v str) -> Self { in from()
600 pub fn to_borrowed_str(&self) -> Option<&str> { in to_borrowed_error()
626 impl<'v> ToValue for Cow<'v, str> {
634 pub fn to_str(&self) -> Option<Cow<str>> { in to_str()
687 fn visit_str(&mut self, value: &str) -> Result<(), Error> { in visit_str()
692 fn visit_borrowed_str(&mut self, value: &'v str)
828 fn str() -> impl Iterator<Item = Value<'static>> { unsigned() functions
[all...]
/third_party/rust/crates/clap/clap_mangen/src/
H A Drender.rs4 pub(crate) fn subcommand_heading(cmd: &clap::Command) -> &str {
224 pub(crate) fn subcommands(roff: &mut Roff, cmd: &clap::Command, section: &str) {
261 fn subcommand_markers(cmd: &clap::Command) -> (&'static str, &'static str) { in subcommand_markers()
265 fn option_markers(opt: &clap::Arg) -> (&'static str, &'static str) { in option_markers()
269 fn markers(required: bool) -> (&'static str, &'static str) { in markers()
281 fn long_option(opt: &str) -> Inline { in long_option()
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
H A DWriteRawPrimitivesBenchmark.cs485 var str = ParseRawPrimitivesBenchmark.CreateStringWithEncodedSize(encodedSize); in CreateStrings()
490 result[i] = str; in CreateStrings()
497 var str = ParseRawPrimitivesBenchmark.CreateNonAsciiStringWithEncodedSize(encodedSize); in CreateNonAsciiStrings()
502 result[i] = str; in CreateNonAsciiStrings()
509 var str = ParseRawPrimitivesBenchmark.CreateStringWithEncodedSize(encodedSize); in CreateByteStrings()
514 result[i] = ByteString.CopyFrom(Encoding.UTF8.GetBytes(str)); in CreateByteStrings()
/third_party/openssl/crypto/bio/
H A Dbss_conn.c44 static int conn_puts(BIO *h, const char *str);
602 static int conn_puts(BIO *bp, const char *str) in conn_puts() argument
606 n = strlen(str); in conn_puts()
607 ret = conn_write(bp, str, n); in conn_puts()
611 BIO *BIO_new_connect(const char *str) in BIO_new_connect() argument
618 if (BIO_set_conn_hostname(ret, str)) in BIO_new_connect()
H A Dbss_acpt.c40 static int acpt_puts(BIO *h, const char *str);
553 static int acpt_puts(BIO *bp, const char *str) in acpt_puts() argument
557 n = strlen(str); in acpt_puts()
558 ret = acpt_write(bp, str, n); in acpt_puts()
562 BIO *BIO_new_accept(const char *str) in BIO_new_accept() argument
569 if (BIO_set_accept_name(ret, str) > 0) in BIO_new_accept()
/third_party/openssl/crypto/conf/
H A Dconf_lib.c333 char *str; in NCONF_get_number_e() local
343 str = NCONF_get_string(conf, group, name); in NCONF_get_number_e()
345 if (str == NULL) in NCONF_get_number_e()
354 for (res = 0; is_number(conf, *str); str++) { in NCONF_get_number_e()
355 const int d = to_int(conf, *str); in NCONF_get_number_e()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineDynamicControlPoints.cpp143 collection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms()
154 collection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms()
169 collection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms()
186 collection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()); in initPrograms()
205 collection.glslSources.add("tesc2") << glu::TessellationControlSource(src.str()); in initPrograms()
226 collection.glslSources.add("tese2") << glu::TessellationEvaluationSource(src.str()); in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationGeometryPointSizeTests.cpp184 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms()
198 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms()
226 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms()
256 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()); in initPrograms()
283 programCollection.glslSources.add("geom") << glu::GeometrySource(src.str()); in initPrograms()
423 return buf.str(); in getTestCaseName()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DDebug.cpp180 FATAL() << messageStream.str(); in insertMessage()
183 ERR() << messageStream.str(); in insertMessage()
186 WARN() << messageStream.str(); in insertMessage()
189 INFO() << messageStream.str(); in insertMessage()
192 ANGLE_LOG(EVENT) << messageStream.str(); in insertMessage()
496 INFO() << messageStream.str(); in insertMessage()
/third_party/skia/third_party/externals/angle2/src/common/
H A DFastVector_unittest.cpp357 std::string str; in TEST() local
363 EXPECT_TRUE(testMap.get(entries.begin()->first, &str)); in TEST()
364 EXPECT_EQ(entries.begin()->second, str); in TEST()
365 EXPECT_FALSE(testMap.get(1, &str)); in TEST()
379 EXPECT_TRUE(testMap.get(entry.first, &str)); in TEST()
380 EXPECT_EQ(entry.second, str); in TEST()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderAdjacency.cpp505 m_testCtx.getLog() << tcu::TestLog::Message << "Adjacency Expected: " << sstreamExpected.str().c_str() in iterate()
509 << "Alternate adjacency Expected: " << sstreamAlternateExpected.str().c_str() in iterate()
511 m_testCtx.getLog() << tcu::TestLog::Message << "Adjacency Result: " << sstreamResult.str().c_str() in iterate()
609 sstreamExpected << "\nor\n" << sstreamAlternateExpected.str(); in iterate()
611 m_testCtx.getLog() << tcu::TestLog::Message << "Expected: " << sstreamExpected.str().c_str() in iterate()
613 m_testCtx.getLog() << tcu::TestLog::Message << "Result: " << sstreamResult.str().c_str() in iterate()

Completed in 24 milliseconds

1...<<191192193194195196197198199200>>...574