Home
last modified time | relevance | path

Searched refs:str (Results 3876 - 3900 of 11012) sorted by relevance

1...<<151152153154155156157158159160>>...441

/third_party/vk-gl-cts/modules/glshared/
H A DglsShaderLibraryCase.cpp102 if (!extensionList.str().empty()) in checkAndSpecializeExtensions()
108 throw tcu::NotSupportedError("Test requires extension " + extensionList.str()); in checkAndSpecializeExtensions()
110 throw tcu::NotSupportedError("Test requires any extension of " + extensionList.str()); in checkAndSpecializeExtensions()
189 return res.str(); in genVertexShader()
279 return shader.str(); in genFragmentShader()
343 params.insert(pair<string, string>("DECLARATIONS", decl.str())); in specializeVertexShader()
344 params.insert(pair<string, string>("SETUP", setup.str())); in specializeVertexShader()
345 params.insert(pair<string, string>("OUTPUT", output.str())); in specializeVertexShader()
410 params.insert(pair<string, string>("DECLARATIONS", decl.str())); in specializeFragmentShader()
411 params.insert(pair<string, string>("SETUP", setup.str())); in specializeFragmentShader()
[all...]
/third_party/python/Lib/test/
H A Dtest_dataclasses.py221 self: str
233 selfx: str
243 object: str
250 object: str
271 attributes = [(name, str) for name in builtins_names]
289 attributes = [(name, str) for name in builtins_names]
608 y: str = field(init=False, default=None)
609 z: str = field(repr=False)
627 self.assertEqual(the_fields[1].type, str)
632 self.assertEqual(the_fields[2].type, str)
[all...]
/third_party/toybox/toys/pending/
H A Dbc.c415 BcVec str; member
940 void bc_vec_string(BcVec *v, size_t len, char *str) { in bc_vec_string() argument
944 memcpy(v->v, str, len); in bc_vec_string()
950 void bc_vec_concat(BcVec *v, char *str) { in bc_vec_concat() argument
955 len = strlen(str); in bc_vec_concat()
957 strcpy(v->v+v->len-1, str); in bc_vec_concat()
2328 return strcmp(e1->str, e2->str); in bc_id_cmp()
2332 free(((struct str_len *)id)->str); in bc_id_free()
2346 if (!strcmp(name, id->str) in bc_func_insert()
2992 char *str = xstrdup(p->l.str.v); bc_parse_addId() local
4471 bc_program_str(BcProgram *p, size_t idx, int str) bc_program_str() argument
4504 char *str = code + *bgn, *ptr = strchr(str, UCHAR_MAX); bc_program_name() local
4551 char *str = bc_program_str(p, r->d.id.len, 0); bc_program_num() local
4791 bc_program_printChars(char *str) bc_program_printChars() argument
4799 bc_program_printString(char *str) bc_program_printString() argument
4821 char *str; bc_program_print() local
5752 char c2, *str = buf.v; bc_vm_stdin() local
[all...]
/third_party/libinput/test/
H A Dlitest.c3113 const char *str = NULL; in litest_event_type_str() local
3119 str = "ADDED"; in litest_event_type_str()
3122 str = "REMOVED"; in litest_event_type_str()
3125 str = "KEY"; in litest_event_type_str()
3128 str = "MOTION"; in litest_event_type_str()
3131 str = "ABSOLUTE"; in litest_event_type_str()
3134 str = "BUTTON"; in litest_event_type_str()
3137 str = "AXIS"; in litest_event_type_str()
3140 str = "SCROLL_WHEEL"; in litest_event_type_str()
3143 str in litest_event_type_str()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_scale.c939 { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "" }, .flags = FLAGS },
941 { "size", "set video size", OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
942 { "s", "set video size", OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
943 { "in_color_matrix", "set input YCbCr type", OFFSET(in_color_matrix), AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS, "color" },
944 { "out_color_matrix", "set output YCbCr type", OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS, "color"},
945 { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .str = "auto" }, 0, 0, FLAGS, "color" },
946 { "bt601", NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt601" }, 0, 0, FLAGS, "color" },
947 { "bt470", NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt470" }, 0, 0, FLAGS, "color" },
948 { "smpte170m", NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte170m" }, 0, 0, FLAGS, "color" },
949 { "bt709", NULL, 0, AV_OPT_TYPE_CONST, { .str
[all...]
/third_party/gn/src/gn/
H A Ddesc_builder.cc665 std::string str = in RecursivePrintDeps() local
677 str += "..."; in RecursivePrintDeps()
681 out->AppendString(str); in RecursivePrintDeps()
739 std::string str; in RenderRuntimeDeps() local
744 str = " "; in RenderRuntimeDeps()
748 str + "From " + in RenderRuntimeDeps()
750 str = " "; in RenderRuntimeDeps()
754 res->AppendString(str + pair.first.value()); in RenderRuntimeDeps()
898 std::string str; in RenderConfigValues() local
900 if (blame_ && rendered->GetAsString(&str)) { in RenderConfigValues()
[all...]
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h649 // Skips to the first non-space char after the first comma in 'str';
650 // returns NULL if no comma is found in 'str'.
651 inline const char* SkipComma(const char* str) { in SkipComma() argument
652 const char* comma = strchr(str, ','); in SkipComma()
661 // Returns the prefix of 'str' before the first comma in it; returns
663 inline std::string GetPrefixUntilComma(const char* str) { in GetPrefixUntilComma() argument
664 const char* comma = strchr(str, ','); in GetPrefixUntilComma()
665 return comma == nullptr ? str : std::string(str, comma); in GetPrefixUntilComma()
670 void SplitString(const ::std::string& str, cha
[all...]
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-internal.h634 // Skips to the first non-space char after the first comma in 'str';
635 // returns NULL if no comma is found in 'str'.
636 inline const char* SkipComma(const char* str) { in SkipComma() argument
637 const char* comma = strchr(str, ','); in SkipComma()
646 // Returns the prefix of 'str' before the first comma in it; returns
648 inline std::string GetPrefixUntilComma(const char* str) { in GetPrefixUntilComma() argument
649 const char* comma = strchr(str, ','); in GetPrefixUntilComma()
650 return comma == nullptr ? str : std::string(str, comma); in GetPrefixUntilComma()
655 void SplitString(const ::std::string& str, cha
[all...]
/third_party/mksh/
H A Dhistrap.c389 hist_get(const char *str, bool approx, bool allow_cur) in hist_get() argument
394 if (getn(str, &n)) { in hist_get()
400 bi_errorf(Tf_sD_s, str, Tnot_in_history); in hist_get()
407 bi_errorf(Tf_sD_s, str, Tnot_in_history); in hist_get()
411 bi_errorf(Tf_sD_s, str, "invalid range"); in hist_get()
415 bool anchored = *str == '?' ? (++str, false) : true; in hist_get()
418 if ((n = findhist(histptr - history - 1, str, false, in hist_get()
420 bi_errorf(Tf_sD_s, str, Tnot_in_history); in hist_get()
483 findhist(int start, const char *str, boo argument
[all...]
/third_party/node/deps/openssl/openssl/apps/lib/
H A Ds_cb.c462 const char *str; in apps_ssl_info_callback() local
468 str = "SSL_connect"; in apps_ssl_info_callback()
470 str = "SSL_accept"; in apps_ssl_info_callback()
472 str = "undefined"; in apps_ssl_info_callback()
475 BIO_printf(bio_err, "%s:%s\n", str, SSL_state_string_long(s)); in apps_ssl_info_callback()
477 str = (where & SSL_CB_READ) ? "read" : "write"; in apps_ssl_info_callback()
479 str, in apps_ssl_info_callback()
485 str, SSL_state_string_long(s)); in apps_ssl_info_callback()
488 str, SSL_state_string_long(s)); in apps_ssl_info_callback()
1251 int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, in config_ctx() argument
[all...]
/third_party/python/Lib/
H A Dpickletools.py194 assert isinstance(name, str)
207 assert isinstance(doc, str)
381 This is a str-style string, without embedded escapes,
401 These are str-style strings, without embedded
615 return str(data, 'raw-unicode-escape')
651 return str(data, 'utf-8', 'surrogatepass')
692 return str(data, 'utf-8', 'surrogatepass')
733 return str(data, 'utf-8', 'surrogatepass')
962 assert isinstance(name, str)
971 assert isinstance(doc, str)
[all...]
/third_party/openssl/apps/lib/
H A Ds_cb.c462 const char *str; in apps_ssl_info_callback() local
468 str = "SSL_connect"; in apps_ssl_info_callback()
470 str = "SSL_accept"; in apps_ssl_info_callback()
472 str = "undefined"; in apps_ssl_info_callback()
475 BIO_printf(bio_err, "%s:%s\n", str, SSL_state_string_long(s)); in apps_ssl_info_callback()
477 str = (where & SSL_CB_READ) ? "read" : "write"; in apps_ssl_info_callback()
479 str, in apps_ssl_info_callback()
485 str, SSL_state_string_long(s)); in apps_ssl_info_callback()
488 str, SSL_state_string_long(s)); in apps_ssl_info_callback()
1251 int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, in config_ctx() argument
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcShaderLibraryCase.cpp573 return res.str(); in genVertexShader()
776 return shader.str(); in genFragmentShader()
830 params.insert(pair<string, string>("DECLARATIONS", decl.str())); in specializeVertexShader()
831 params.insert(pair<string, string>("SETUP", setup.str())); in specializeVertexShader()
832 params.insert(pair<string, string>("OUTPUT", output.str())); in specializeVertexShader()
891 params.insert(pair<string, string>("DECLARATIONS", decl.str())); in specializeFragmentShader()
892 params.insert(pair<string, string>("SETUP", setup.str())); in specializeFragmentShader()
893 params.insert(pair<string, string>("OUTPUT", output.str())); in specializeFragmentShader()
941 params.insert(pair<string, string>("VERTEX_DECLARATIONS", decl.str())); in specializeShaders()
942 params.insert(pair<string, string>("VERTEX_SETUP", setup.str())); in specializeShaders()
[all...]
/third_party/skia/src/gpu/
H A DGrBackendSurface.cpp403 SkString str; in toStr() local
406 str.append("invalid"); in toStr()
407 return str; in toStr()
410 str.appendf("%s-", GrBackendApiToStr(fBackend)); in toStr()
415 str.append(GrGLFormatToStr(fGLFormat)); in toStr()
420 str.append(GrVkFormatToStr(fVk.fFormat)); in toStr()
425 str.append(GrMtlFormatToStr(fMtlFormat)); in toStr()
430 str.append(GrDxgiFormatToStr(fDxgiFormat)); in toStr()
435 str.append(GrDawnFormatToStr(fDawnFormat)); in toStr()
439 str in toStr()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DShader.cpp293 instructionString += buffer.str(); in string()
451 case 0: return "[r" + buffer.str() + ".x]"; in relativeString()
452 case 1: return "[r" + buffer.str() + ".y]"; in relativeString()
453 case 2: return "[r" + buffer.str() + ".z]"; in relativeString()
454 case 3: return "[r" + buffer.str() + ".w]"; in relativeString()
468 case 0: return "[c" + buffer.str() + ".x]"; in relativeString()
469 case 1: return "[c" + buffer.str() + ".y]"; in relativeString()
470 case 2: return "[c" + buffer.str() + ".z]"; in relativeString()
471 case 3: return "[c" + buffer.str() + ".w]"; in relativeString()
520 return "cb" + buffer.str() in string()
[all...]
/third_party/python/Python/
H A Dast_opt.c268 PyObject *str = PyUnicode_Substring(fmt, start, pos); in parse_literal() local
269 /* str = str.replace('%%', '%') */ in parse_literal()
270 if (str && has_percents) { in parse_literal()
273 Py_SETREF(str, PyUnicode_Replace(str, &_Py_STR(dbl_percent), in parse_literal()
276 if (!str) { in parse_literal()
280 if (_PyArena_AddPyObject(arena, str) < 0) { in parse_literal()
281 Py_DECREF(str); in parse_literal()
284 return _PyAST_Constant(str, NUL in parse_literal()
370 PyObject *str = PyUnicode_FromString(buf); parse_format() local
[all...]
/third_party/rust/crates/clap/tests/builder/
H A Drequire.rs86 static POSITIONAL_REQ: &str = "\ in positional_required_with_requires()
107 static POSITIONAL_REQ_IF_NO_VAL: &str = "\ in positional_required_with_requires_if_no_value()
127 static POSITIONAL_REQ_IF_VAL: &str = "\ in positional_required_with_requires_if_value()
515 static MISSING_REQ: &str = "\ in missing_required_output()
760 static COND_REQ_IN_USAGE: &str = "\ in list_correct_required_args()
804 static COND_REQ_IN_USAGE: &str = "\ in required_if_val_present_fail_error_output()
929 static REQUIRE_EQUALS: &str = "\ in require_eq()
953 static REQUIRE_EQUALS_FILTERED: &str = "\ in require_eq_filtered()
988 static REQUIRE_EQUALS_FILTERED_GROUP: &str = "\ in require_eq_filtered_group()
1067 static MULTIPLE_REQUIRED_UNLESS_USAGE: &str in multiple_required_unless_usage_printing()
[all...]
/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgenutil.py63 f.write(indentTextBlock(str(case) + "\n", indent))
81 res.append("input %s = [ %s ];" % (name, " | ".join([str(v) for v in values]).lower()))
83 res.append("output %s = [ %s ];" % (name, " | ".join([str(v) for v in values]).lower()))
369 return "bvec2(%s, %s)" % (str(self.x).lower(), str(self.y).lower())
455 return "bvec3(%s, %s, %s)" % (str(self.x).lower(), str(self.y).lower(), str(self.z).lower())
548 return "bvec4(%s, %s, %s, %s)" % (str(self.x).lower(), str(sel
[all...]
/third_party/node/deps/v8/src/builtins/arm/
H A Dbuiltins-arm.cc385 __ str(r0, FieldMemOperand(r1, JSGeneratorObject::kInputOrDebugPosOffset)); in Generate_ResumeGeneratorTrampoline()
600 __ str(r5, MemOperand(r4)); in Generate_JSEntryVariant()
615 __ str(fp, MemOperand(r5)); in Generate_JSEntryVariant()
647 __ str(r0, MemOperand(scratch)); in Generate_JSEntryVariant()
679 __ str(r6, MemOperand(r5)); in Generate_JSEntryVariant()
686 __ str(r3, MemOperand(scratch)); in Generate_JSEntryVariant()
838 __ str(optimized_code, FieldMemOperand(closure, JSFunction::kCodeOffset)); in ReplaceClosureCodeWithOptimizedCode()
1076 __ str(scratch, in ResetBytecodeAgeAndOsrState()
1127 __ str(invocation_count, in Generate_BaselineOutOfLinePrologue()
1286 __ str(r in Generate_InterpreterEntryTrampoline()
[all...]
/foundation/arkui/napi/test/unittest/
H A Dtest_sendable_napi.cpp211 char* str = new char[TEST_STR_LENGTH]; in HWTEST_F() local
215 ASSERT_CHECK_CALL(napi_get_value_string_utf8(env, value, str, TEST_STR_LENGTH, &length)); in HWTEST_F()
216 ASSERT_STREQ("SendableClass", str); in HWTEST_F()
249 char* str = new char[TEST_STR_LENGTH]; in HWTEST_F() local
254 ASSERT_CHECK_CALL(napi_get_value_string_utf8(env, value, str, TEST_STR_LENGTH, &length)); in HWTEST_F()
255 ASSERT_STREQ("static", str); in HWTEST_F()
272 ASSERT_CHECK_CALL(napi_get_value_string_utf8(env, value, str, TEST_STR_LENGTH, &length)); in HWTEST_F()
273 ASSERT_STREQ("static0", str); in HWTEST_F()
311 char* str = new char[TEST_STR_LENGTH]; in HWTEST_F() local
326 ASSERT_CHECK_CALL(napi_get_value_string_utf8(env, value, str, TEST_STR_LENGT in HWTEST_F()
360 char* str = new char[TEST_STR_LENGTH]; HWTEST_F() local
416 char* str = new char[TEST_STR_LENGTH]; HWTEST_F() local
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/config/
H A Dwifi_config_file_spec.cpp558 return ss.str(); in OutPutEncryptionDeviceConfig()
608 return ss.str(); in OutPutWifiDeviceConfig()
648 return ss.str(); in OutPutWifiIpConfig()
655 return ss.str(); in OutPutWifiDeviceConfigEap()
678 return ss.str(); in OutPutWifiDeviceConfigEap()
695 return ss.str(); in OutPutWifiProxyConfig()
704 return ss.str(); in OutPutWifiDeviceConfigPrivacy()
711 return ss.str(); in OutPutWifiWapiConfig()
717 return ss.str(); in OutPutWifiWapiConfig()
724 return ss.str(); in OutPutWifiWapiConfig()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingDescriptorUpdateASTests.cpp255 return src.str(); in getMissPassthrough()
271 return src.str(); in getHitPassthrough()
284 return src.str(); in getGraphicsPassthrough()
300 return src.str(); in getVertexPassthrough()
680 log << tcu::TestLog::Message << css.str() << tcu::TestLog::EndMessage; in verify()
816 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions; in initPrograms()
841 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions; in initPrograms()
887 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()) << buildOptions; in initPrograms()
906 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()) << buildOptions; in initPrograms()
929 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOption in initPrograms()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryWatertightnessTests.cpp249 return src.str(); in getGraphicsPassthrough()
265 return src.str(); in getVertexPassthrough()
305 std::ostringstream str; in getGeomName() local
306 str << "geom" << (writePointSize ? "_point_size" : ""); in getGeomName()
307 return str.str(); in getGeomName()
448 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions; in initPrograms()
473 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions; in initPrograms()
517 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()) << buildOptions; in initPrograms()
535 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()) << buildOption in initPrograms()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingDescriptorUpdateASTests.cpp255 return src.str(); in getMissPassthrough()
271 return src.str(); in getHitPassthrough()
284 return src.str(); in getGraphicsPassthrough()
300 return src.str(); in getVertexPassthrough()
680 log << tcu::TestLog::Message << css.str() << tcu::TestLog::EndMessage; in verify()
816 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions; in initPrograms()
841 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions; in initPrograms()
887 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()) << buildOptions; in initPrograms()
906 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()) << buildOptions; in initPrograms()
929 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOption in initPrograms()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cSeparateShaderObjsTests.cpp489 std::stringstream str; in generateBasicVertexSrc() local
491 str << glu::getGLSLVersionDeclaration(glslVersion) << "\n"; in generateBasicVertexSrc()
492 str << "in highp vec4 a_position;\n"; in generateBasicVertexSrc()
495 str << "out gl_PerVertex {\n" in generateBasicVertexSrc()
499 str << "void main (void)\n" in generateBasicVertexSrc()
504 return str.str(); in generateBasicVertexSrc()
509 std::stringstream str; in generateBasicFragmentSrc() local
511 str << glu::getGLSLVersionDeclaration(glslVersion) << "\n"; in generateBasicFragmentSrc()
512 str << "unifor in generateBasicFragmentSrc()
2783 std::stringstream str; iterate() local
[all...]

Completed in 52 milliseconds

1...<<151152153154155156157158159160>>...441