/third_party/littlefs/scripts/ |
H A D | structs.py | 33 if isinstance(x, str): 53 return str(self.x) 319 ','.join(str(getattr(r, k) or '') for k in by): r 322 ','.join(str(getattr(r, k) or '') for k in by): r
|
/third_party/node/deps/v8/src/diagnostics/ppc/ |
H A D | disasm-ppc.cc | 77 void Print(const char* str); 135 // Append the str to the output buffer. 136 void Decoder::Print(const char* str) { in Print() argument 137 char cur = *str++; in Print() 140 cur = *str++; in Print()
|
/third_party/node/deps/v8/src/diagnostics/s390/ |
H A D | disasm-s390.cc | 67 void Print(const char* str); 100 // Append the str to the output buffer. 101 void Decoder::Print(const char* str) { in Print() argument 102 char cur = *str++; in Print() 105 cur = *str++; in Print()
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-code-generator.cc | 94 __ RecordComment(ss.str()); in PreProcessBasicBlock() 106 __ RecordComment(ss.str()); in Process() 260 __ RecordComment(ss.str()); in EmitBlockEndGapMoves() 278 __ RecordComment(ss.str()); in EmitBlockEndGapMoves()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-strings.cc | 336 Handle<Object> str = in RUNTIME_FUNCTION() local 338 elements->set(i, *str); in RUNTIME_FUNCTION() 405 Handle<String> str = args.at<String>(0); in RUNTIME_FUNCTION() local 406 return *String::Flatten(isolate, str); in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/tracing/ |
H A D | trace-event.h | 51 #define TRACE_STR_COPY(str) v8::internal::tracing::TraceStringWithCopy(str) 373 explicit TraceStringWithCopy(const char* str) : str_(str) {} in TraceStringWithCopy() argument
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bss_bio.c | 33 static int bio_puts(BIO *bio, const char *str); 601 static int bio_puts(BIO *bio, const char *str) in bio_puts() argument 603 return bio_write(bio, str, strlen(str)); in bio_puts()
|
/third_party/node/deps/openssl/openssl/crypto/cmp/ |
H A D | cmp_server.c | 376 const char *str = ossl_cmp_PKIStatus_to_string(pki_status); in process_certConf() local 379 str == NULL ? "without" : "with", in process_certConf() 380 str == NULL ? "PKIStatus" : str); in process_certConf()
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | ahocorasick.rs | 167 /// This includes, but is not limited to, `String`, `&str`, `Vec<u8>`, and 194 /// This includes, but is not limited to, `String`, `&str`, `Vec<u8>`, and 234 /// This includes, but is not limited to, `String`, `&str`, `Vec<u8>`, and 292 /// This includes, but is not limited to, `String`, `&str`, `Vec<u8>`, and 367 /// This includes, but is not limited to, `String`, `&str`, `Vec<u8>`, and 429 pub fn replace_all<B>(&self, haystack: &str, replace_with: &[B]) -> String in replace_all() 431 B: AsRef<str>, in replace_all() 547 haystack: &str, in replace_all_with() 551 F: FnMut(&Match, &str, &mut String) -> bool, in replace_all_with()
|
/third_party/python/Include/cpython/ |
H A D | unicodeobject.h | 794 PyObject *str /* Unicode string */ 801 PyObject *str, /* Unicode string */ 810 const char *str, /* ASCII-encoded byte string */ 818 const char *str, /* latin1-encoded byte string */ 1004 /* Externally visible for str.strip(unicode) */
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_run.py | 83 class S(str): 85 return '%s:str' % type(self).__name__ 253 self.assertEqual(type(shell.written[0][0]), str) 273 self.assertEqual(type(shell.written[0][0]), str) 301 self.assertEqual(type(shell.written[0][0]), str)
|
/third_party/python/Lib/ |
H A D | random.py | 132 str, bytes, and bytearray. 139 For version 2 (the default), all of the bits are used if *a* is a str, 141 sequences from older versions of Python), the algorithm for str and 146 if version == 1 and isinstance(a, (str, bytes)): 154 elif version == 2 and isinstance(a, (str, bytes, bytearray)): 155 if isinstance(a, str): 159 elif not isinstance(a, (type(None), int, float, str, bytes, bytearray)): 161 'int, float, str, bytes, and bytearray.')
|
/third_party/openssl/crypto/bio/ |
H A D | bss_bio.c | 33 static int bio_puts(BIO *bio, const char *str); 601 static int bio_puts(BIO *bio, const char *str) in bio_puts() argument 603 return bio_write(bio, str, strlen(str)); in bio_puts()
|
/third_party/openssl/crypto/cmp/ |
H A D | cmp_server.c | 376 const char *str = ossl_cmp_PKIStatus_to_string(pki_status); in process_certConf() local 379 str == NULL ? "without" : "with", in process_certConf() 380 str == NULL ? "PKIStatus" : str); in process_certConf()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawMultisampleLinearInterpolationTests.cpp | 561 programCollection.glslSources.add("vertRef") << glu::VertexSource(vrt.str()); in initPrograms() 581 programCollection.glslSources.add("vertNoPer") << glu::VertexSource(vrt.str()); in initPrograms() 598 programCollection.glslSources.add("fragRef") << glu::FragmentSource(frg.str()); in initPrograms() 625 programCollection.glslSources.add("fragNoPer") << glu::FragmentSource(frg.str()); in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageSampleDrawnCubeFaceTests.cpp | 539 programCollection.glslSources.add("vert1") << glu::VertexSource(pipeline1VertexSrc.str()); in initPrograms() 540 programCollection.glslSources.add("vert2") << glu::VertexSource(pipeline2VertexSrc.str()); in initPrograms() 541 programCollection.glslSources.add("frag1") << glu::FragmentSource(pipeline1FragmentSrc.str()); in initPrograms() 542 programCollection.glslSources.add("frag2") << glu::FragmentSource(pipeline2FragmentSrc.str()); in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderConditionalRenderingTestsEXT.cpp | 92 return repr.str(); in paddedHex() 292 programCollection.glslSources.add("task") << glu::TaskSource(task.str()) << buildOptions; in initPrograms() 314 programCollection.glslSources.add("mesh") << glu::MeshSource(mesh.str()) << buildOptions; in initPrograms() 327 programCollection.glslSources.add("frag") << glu::FragmentSource(frag.str()); in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingNullASTests.cpp | 346 programCollection.glslSources.add("sect") << glu::IntersectionSource(updateRayTracingGLSL(css.str())) << buildOptions; in initPrograms() 364 programCollection.glslSources.add("ahit") << glu::AnyHitSource(updateRayTracingGLSL(css.str())) << buildOptions; in initPrograms() 382 programCollection.glslSources.add("chit") << glu::ClosestHitSource(updateRayTracingGLSL(css.str())) << buildOptions; in initPrograms() 399 programCollection.glslSources.add("miss") << glu::MissSource(updateRayTracingGLSL(css.str())) << buildOptions; in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationPrimitiveDiscardTests.cpp | 274 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); 304 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); 350 programCollection.glslSources.add(needPointSizeWrite ? "tese_psw" : "tese") << glu::TessellationEvaluationSource(src.str()); 366 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
H A D | vktDrawMultisampleLinearInterpolationTests.cpp | 562 programCollection.glslSources.add("vertRef") << glu::VertexSource(vrt.str()); in initPrograms() 582 programCollection.glslSources.add("vertNoPer") << glu::VertexSource(vrt.str()); in initPrograms() 599 programCollection.glslSources.add("fragRef") << glu::FragmentSource(frg.str()); in initPrograms() 626 programCollection.glslSources.add("fragNoPer") << glu::FragmentSource(frg.str()); in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageSampleDrawnCubeFaceTests.cpp | 541 programCollection.glslSources.add("vert1") << glu::VertexSource(pipeline1VertexSrc.str()); in initPrograms() 542 programCollection.glslSources.add("vert2") << glu::VertexSource(pipeline2VertexSrc.str()); in initPrograms() 543 programCollection.glslSources.add("frag1") << glu::FragmentSource(pipeline1FragmentSrc.str()); in initPrograms() 544 programCollection.glslSources.add("frag2") << glu::FragmentSource(pipeline2FragmentSrc.str()); in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderConditionalRenderingTestsEXT.cpp | 92 return repr.str(); in paddedHex() 292 programCollection.glslSources.add("task") << glu::TaskSource(task.str()) << buildOptions; in initPrograms() 314 programCollection.glslSources.add("mesh") << glu::MeshSource(mesh.str()) << buildOptions; in initPrograms() 327 programCollection.glslSources.add("frag") << glu::FragmentSource(frag.str()); in initPrograms()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/fragment_shading_rate/ |
H A D | esextcFragmentShadingRateCombinedTests.cpp | 173 return os.str(); in genVS() 199 return os.str(); in genFS() 225 return os.str(); in genCS() 507 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, error_sstream.str().c_str()); in iterate()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderLoopTests.cpp | 412 StringTemplate vertTemplate(vtx.str().c_str()); in createGenericLoopCase() 413 StringTemplate fragTemplate(frag.str().c_str()); in createGenericLoopCase() 1112 StringTemplate vertTemplate(vtx.str().c_str()); in createSpecialLoopCase() 1113 StringTemplate fragTemplate(frag.str().c_str()); in createSpecialLoopCase()
|
/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/ |
H A D | angle_deqp_gtest.cpp | 205 std::string path = strstr.str(); in FindFileFromPath() 580 << testSuite->reserveTestArtifactPath(logNameStream.str()); 582 std::string logNameString = logArgStream.str(); 698 std::string arg = argStream.str();
|