/third_party/spirv-tools/test/ |
H A D | text_literal_test.cpp | 106 EXPECT_EQ(std::get<1>(GetParam()), l.str); in TEST_P() 145 EXPECT_EQ(unquoted.data(), l.str); in TEST() 155 EXPECT_EQ(unquoted.data(), l.str); in TEST() 210 Eq(ss.str())); in TEST_P()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fFboCompletenessTests.cpp | 286 return os.str(); in getName() 298 return os.str(); in getDescription() 375 return os.str(); in getName() 402 return os.str(); in getDescription()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fComputeShaderBuiltinVarTests.cpp | 154 return src.str(); in genBuiltinVarSource() 199 static inline std::ostream& operator<< (std::ostream& str, const LogComps& c) in operator <<() argument 202 return c.numComps == 3 ? str << c.v : str << c.v.x(); in operator <<()
|
H A D | es31fNegativeSSBOBlockTests.cpp | 249 source << ssboString.str(); in generateVaryingSSBOShader() 263 sourceString = source.str(); in generateVaryingSSBOShader() 277 source << ssboString.str(); in generateVaryingSSBOShader() 291 sourceString = source.str(); in generateVaryingSSBOShader()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/postmortem/ |
H A D | vktPostmortemDeviceFaultTests.cpp | 314 const auto& str = s.str(); variable 315 deMemcpy(info.description, str.c_str(), str.length());
|
/third_party/vulkan-loader/loader/ |
H A D | vk_loader_platform.h | 415 static inline void *thread_safe_strtok(char *str, const char *delim, char **saveptr) { return strtok_r(str, delim, saveptr); } in thread_safe_strtok() argument 581 static inline void *thread_safe_strtok(char *str, const char *delimiters, char **context) { in thread_safe_strtok() argument 582 return strtok_s(str, delimiters, context); in thread_safe_strtok()
|
/third_party/zlib/ |
H A D | gzread.c | 583 char *str; in gzgets() local 613 str = buf; in gzgets() 644 if (buf == str) in gzgets() 649 return str; in gzgets()
|
/third_party/backends/backend/ |
H A D | artec_eplus48u.c | 4111 SANE_String str = s->val[OPT_SCAN_MODE].s; in sane_get_parameters() local 4117 XDBG ((2, "sane_get_params: string %s\n", str)); in sane_get_parameters() 4140 str = s->val[OPT_SCAN_MODE].s; in sane_get_parameters() 4143 if ((strcmp (str, mode_list[0]) == 0) || (strcmp (str, mode_list[1]) == 0)) in sane_get_parameters() 4148 if (strcmp (str, mode_list[0]) == 0) in sane_get_parameters() 4178 if (strcmp (str, mode_list[0]) == 0) in sane_get_parameters() 4428 char str[PATH_MAX] = _DEFAULT_DEVICE; in sane_init() local 4463 while (sanei_config_read (str, sizeof (str), f in sane_init() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackSimpleTests.cpp | 1065 TCU_FAIL(message.str()); in verifyTransformFeedbackBuffer() 2443 log << tcu::TestLog::Message << css.str() << tcu::TestLog::EndMessage; in verifyTransformFeedbackBufferLines() 2445 TCU_FAIL(err.str()); in verifyTransformFeedbackBufferLines() 2516 log << tcu::TestLog::Message << css.str() << tcu::TestLog::EndMessage; in verifyTransformFeedbackBufferTriangles() 2518 TCU_FAIL(err.str()); in verifyTransformFeedbackBufferTriangles() 2612 return css.str().substr(0, css.str().size() - 1); in vectorToString() 2724 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 2742 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 2764 programCollection.glslSources.add("geom") << glu::GeometrySource(src.str()); in initPrograms() [all...] |
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
H A D | generator_impl.cc | 231 } else if (auto* str = decl->As<ast::Struct>()) { in Generate() 232 auto* ty = builder_.Sem().Get(str); in Generate() 283 fn = UniqueIdentifier("set_" + ss.str()); in EmitDynamicVectorAssignment() 359 fn = UniqueIdentifier("set_vector_" + ss.str()); in EmitDynamicMatrixVectorAssignment() 433 fn = UniqueIdentifier("set_scalar_" + ss.str()); in EmitDynamicMatrixScalarAssignment() 1945 << "unexpected barrier intrinsic type " << sem::str(intrinsic->Type()); 2222 std::string(intrinsic->str()) + "'"); 2369 return intrinsic->str(); 2411 "Unknown builtin method: " + std::string(intrinsic->str())); 2713 auto* str [all...] |
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 72 value = str(value) 106 elif isinstance(cnfs, (type(None), str)): 139 key = str(key) 389 if name is not None and not isinstance(name, str): 567 if isinstance(value, str): 569 return str(value) 766 raise ValueError(str(exc)) 772 raise ValueError(str(exc)) 1393 if isinstance(func, str): 1540 nv.append(str(ite [all...] |
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | mod.rs | 61 use std::str::FromStr; 87 pub static CONSTIFIED_ENUM_MODULE_REPR_NAME: &str = "Type"; 200 impl From<DerivableTraits> for Vec<&'static str> { 201 fn from(derivable_traits: DerivableTraits) -> Vec<&'static str> { in from() 323 fn seen_function(&self, name: &str) -> bool { in seen_function() 327 fn saw_function(&mut self, name: &str) { in saw_function() 334 fn overload_number(&mut self, name: &str) -> u32 { in overload_number() 341 fn seen_var(&self, name: &str) -> bool { in seen_var() 345 fn saw_var(&mut self, name: &str) { in saw_var() 1721 type Extra = (&'a str, [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineMultisampleMixedAttachmentSamplesTests.cpp | 832 programCollection.glslSources.add("comp" + nameSuffix) << glu::ComputeSource(src.str()); in addVerificationComputeShader() 838 std::ostringstream str; in getSampleCountString() local 840 str << static_cast<deUint32>(samples.numCoverageSamples) << "_" in getSampleCountString() 844 return str.str(); in getSampleCountString() 868 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 884 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms() 1487 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 1528 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms() 1762 std::ostringstream str; in getSampleCountGroupName() local 1778 std::ostringstream str; getFormatCaseName() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_ops/ |
H A D | vktFragmentOperationsEarlyFragmentTests.cpp | 256 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 279 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms() 870 TCU_FAIL(error.str().c_str()); in iterate() 878 TCU_FAIL(error.str().c_str()); in iterate() 889 TCU_FAIL(error.str().c_str()); in iterate() 897 TCU_FAIL(error.str().c_str()); in iterate() 970 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); 995 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); 1643 TCU_FAIL(error.str().c_str()); 1651 TCU_FAIL(error.str() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineMultisampleMixedAttachmentSamplesTests.cpp | 830 programCollection.glslSources.add("comp" + nameSuffix) << glu::ComputeSource(src.str()); in addVerificationComputeShader() 836 std::ostringstream str; in getSampleCountString() local 838 str << static_cast<deUint32>(samples.numCoverageSamples) << "_" in getSampleCountString() 842 return str.str(); in getSampleCountString() 866 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 882 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms() 1495 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 1536 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in initPrograms() 1775 std::ostringstream str; in getSampleCountGroupName() local 1791 std::ostringstream str; getFormatCaseName() local [all...] |
/foundation/ability/ability_runtime/tools/test/systemtest/aa/ |
H A D | tool_system_test.h | 34 static bool IsSubSequence(const std::string& str, const std::string& subStr);
|
/foundation/ability/ability_base/interfaces/inner_api/base/include/ |
H A D | double_wrapper.h | 43 static sptr<IDouble> Parse(const std::string &str); /* [in] */
|
H A D | int_wrapper.h | 43 static sptr<IInteger> Parse(const std::string &str); /* [in] */
|
H A D | bool_wrapper.h | 43 static sptr<IBoolean> Parse(const std::string &str); /* [in] */
|
H A D | float_wrapper.h | 43 static sptr<IFloat> Parse(const std::string &str); /* [in] */
|
H A D | byte_wrapper.h | 43 static sptr<IByte> Parse(const std::string &str); /* [in] */
|
H A D | long_wrapper.h | 43 static sptr<ILong> Parse(const std::string &str); /* [in] */
|
H A D | short_wrapper.h | 43 static sptr<IShort> Parse(const std::string &str); /* [in] */
|
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/ |
H A D | ability_post_event_timeout.h | 29 AbilityPostEventTimeout(std::string str, std::shared_ptr<AbilityHandler> &eventHandler);
|
H A D | data_uri_utils.h | 81 * @param str indicates string. 84 static bool IsNumber(const string &str);
|