Home
last modified time | relevance | path

Searched refs:str (Results 2776 - 2800 of 9023) sorted by relevance

1...<<111112113114115116117118119120>>...361

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DVTimeZone.java1923 private static long parseDateTimeString(String str, int offset) { in parseDateTimeString() argument
1928 if (str == null) { in parseDateTimeString()
1932 int length = str.length(); in parseDateTimeString()
1938 if (str.charAt(8) != 'T') { in parseDateTimeString()
1943 if (str.charAt(15) != 'Z') { in parseDateTimeString()
1951 year = Integer.parseInt(str.substring(0, 4)); in parseDateTimeString()
1952 month = Integer.parseInt(str.substring(4, 6)) - 1; // 0-based in parseDateTimeString()
1953 day = Integer.parseInt(str.substring(6, 8)); in parseDateTimeString()
1954 hour = Integer.parseInt(str.substring(9, 11)); in parseDateTimeString()
1955 min = Integer.parseInt(str in parseDateTimeString()
1986 offsetStrToMillis(String str) offsetStrToMillis() argument
[all...]
/third_party/node/deps/zlib/
H A Ddeflate.c308 uInt str = s->strstart - s->insert; in fill_window() local
310 insert_string(s, str); in fill_window()
311 str++; in fill_window()
320 uInt str = s->strstart - s->insert; in fill_window() local
321 s->ins_h = s->window[str]; in fill_window()
322 UPDATE_HASH(s, s->ins_h, s->window[str + 1]); in fill_window()
327 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); in fill_window()
329 s->prev[str & s->w_mask] = s->head[s->ins_h]; in fill_window()
331 s->head[s->ins_h] = (Pos)str; in fill_window()
332 str in fill_window()
595 uInt str, n; deflateSetDictionary() local
904 Bytef *str; deflateBound() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingBufferDeviceAddressTests.cpp452 << pushdecl.str() in initPrograms()
453 << decls.str() << in initPrograms()
459 << localDecls.str() in initPrograms()
460 << checks.str() << in initPrograms()
465 programCollection.glslSources.add("test") << glu::ComputeSource(css.str()) in initPrograms()
480 << pushdecl.str() in initPrograms()
481 << decls.str() << in initPrograms()
486 << localDecls.str() in initPrograms()
487 << checks.str() << in initPrograms()
492 programCollection.glslSources.add("test") << glu::RaygenSource(css.str()) in initPrograms()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingBufferDeviceAddressTests.cpp452 << pushdecl.str() in initPrograms()
453 << decls.str() << in initPrograms()
459 << localDecls.str() in initPrograms()
460 << checks.str() << in initPrograms()
465 programCollection.glslSources.add("test") << glu::ComputeSource(css.str()) in initPrograms()
480 << pushdecl.str() in initPrograms()
481 << decls.str() << in initPrograms()
486 << localDecls.str() in initPrograms()
487 << checks.str() << in initPrograms()
492 programCollection.glslSources.add("test") << glu::RaygenSource(css.str()) in initPrograms()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryAccelerationStructuresTests.cpp1638 rayQueryTest.push_back(css.str()); in initPrograms()
1656 rayQueryTest.push_back(css.str()); in initPrograms()
1677 programCollection.glslSources.add("vert") << glu::VertexSource(css.str()) << buildOptions; in initPrograms()
1695 programCollection.glslSources.add("vert_vid") << glu::VertexSource(css.str()) << buildOptions; in initPrograms()
1718 programCollection.glslSources.add(cssName.str()) << glu::VertexSource(css.str()) << buildOptions; in initPrograms()
1738 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(css.str()) << buildOptions; in initPrograms()
1769 programCollection.glslSources.add(cssName.str()) << glu::TessellationControlSource(css.str()) << buildOptions; in initPrograms()
1796 programCollection.glslSources.add(cssName.str()) << gl in initPrograms()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/
H A DvktRayQueryAccelerationStructuresTests.cpp1629 rayQueryTest.push_back(css.str()); in initPrograms()
1647 rayQueryTest.push_back(css.str()); in initPrograms()
1666 programCollection.glslSources.add("vert") << glu::VertexSource(css.str()) << buildOptions; in initPrograms()
1684 programCollection.glslSources.add("vert_vid") << glu::VertexSource(css.str()) << buildOptions; in initPrograms()
1707 programCollection.glslSources.add(cssName.str()) << glu::VertexSource(css.str()) << buildOptions; in initPrograms()
1727 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(css.str()) << buildOptions; in initPrograms()
1758 programCollection.glslSources.add(cssName.str()) << glu::TessellationControlSource(css.str()) << buildOptions; in initPrograms()
1785 programCollection.glslSources.add(cssName.str()) << gl in initPrograms()
[all...]
/third_party/ffmpeg/libavformat/tests/
H A Dmovenc.c112 const char *str; in io_write_data_type() local
114 case AVIO_DATA_MARKER_HEADER: str = "header"; break; in io_write_data_type()
115 case AVIO_DATA_MARKER_SYNC_POINT: str = "sync"; break; in io_write_data_type()
116 case AVIO_DATA_MARKER_BOUNDARY_POINT: str = "boundary"; break; in io_write_data_type()
117 case AVIO_DATA_MARKER_UNKNOWN: str = "unknown"; break; in io_write_data_type()
118 case AVIO_DATA_MARKER_TRAILER: str = "trailer"; break; in io_write_data_type()
119 default: str = "unknown"; break; in io_write_data_type()
134 printf("write_data len %d, time %s, type %s atom %s\n", size, timebuf, str, content); in io_write_data_type()
/third_party/ffmpeg/libavfilter/
H A Dvf_perspective.c72 { "x0", "set top left x coordinate", OFFSET(expr_str[0][0]), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
73 { "y0", "set top left y coordinate", OFFSET(expr_str[0][1]), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
74 { "x1", "set top right x coordinate", OFFSET(expr_str[1][0]), AV_OPT_TYPE_STRING, {.str="W"}, 0, 0, FLAGS },
75 { "y1", "set top right y coordinate", OFFSET(expr_str[1][1]), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
76 { "x2", "set bottom left x coordinate", OFFSET(expr_str[2][0]), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
77 { "y2", "set bottom left y coordinate", OFFSET(expr_str[2][1]), AV_OPT_TYPE_STRING, {.str="H"}, 0, 0, FLAGS },
78 { "x3", "set bottom right x coordinate", OFFSET(expr_str[3][0]), AV_OPT_TYPE_STRING, {.str="W"}, 0, 0, FLAGS },
79 { "y3", "set bottom right y coordinate", OFFSET(expr_str[3][1]), AV_OPT_TYPE_STRING, {.str="H"}, 0, 0, FLAGS },
/third_party/icu/icu4c/source/test/intltest/
H A Dtufmtts.cpp410 UnicodeString str; in testGreekWithFallback() local
413 str = ((Format *)tfmt.getAlias())->format(fmt, str, status); in testGreekWithFallback()
425 u_strToUTF8(tmp, 128, &len, str.getTerminatedBuffer(), str.length(), &status); in testGreekWithFallback()
429 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) { in testGreekWithFallback()
430 str.remove(); in testGreekWithFallback()
433 str.remove(); in testGreekWithFallback()
/third_party/icu/icu4c/source/common/
H A Dfilteredbrk.cpp86 inline UBool adopt(UnicodeString *str, UErrorCode &status) { in adopt() argument
87 if(U_FAILURE(status) || contains(*str)) { in adopt()
88 delete str; in adopt()
91 sortedInsert(str, compareUnicodeString, status); in adopt()
102 inline UBool add(const UnicodeString& str, UErrorCode &status) { in add() argument
104 UnicodeString *t = new UnicodeString(str); in add()
378 //if(debug2) u_printf("str, native len=%d\n", utext_nativeLength(fText.getAlias())); in internalNext()
407 //if(debug2) u_printf("str, native len=%d\n", utext_nativeLength(fText.getAlias())); in internalPrev()
549 UnicodeString str(ures_getUnicodeString(strs.getAlias(), &status)); in SimpleFilteredBreakIteratorBuilder()
550 suppressBreakAfter(str, statu in SimpleFilteredBreakIteratorBuilder()
[all...]
/third_party/mesa3d/src/freedreno/afuc/
H A Ddisasm.c219 const char *str = getpm4(jump_label); in label_name() local
220 if (str) in label_name()
221 return str; in label_name()
931 char *str = strstr(file, "a5"); in main() local
932 if (!str) in main()
933 str = strstr(file, "a6"); in main()
934 if (str) in main()
935 gpu_id = atoi(str + 1); in main()
/third_party/mesa3d/src/asahi/lib/
H A Ddecode.c242 #define DUMP_UNPACKED(T, var, str) { \
243 agxdecode_log(str); \
247 #define DUMP_CL(T, cl, str) {\
249 DUMP_UNPACKED(T, temp, str "\n"); \
252 #define agxdecode_log(str) fputs(str, agxdecode_dump_stream)
253 #define agxdecode_msg(str) fprintf(agxdecode_dump_stream, "// %s", str)
/third_party/node/deps/icu-small/source/common/
H A Dfilteredbrk.cpp86 inline UBool adopt(UnicodeString *str, UErrorCode &status) { in adopt() argument
87 if(U_FAILURE(status) || contains(*str)) { in adopt()
88 delete str; in adopt()
91 sortedInsert(str, compareUnicodeString, status); in adopt()
102 inline UBool add(const UnicodeString& str, UErrorCode &status) { in add() argument
104 UnicodeString *t = new UnicodeString(str); in add()
378 //if(debug2) u_printf("str, native len=%d\n", utext_nativeLength(fText.getAlias())); in internalNext()
407 //if(debug2) u_printf("str, native len=%d\n", utext_nativeLength(fText.getAlias())); in internalPrev()
549 UnicodeString str(ures_getUnicodeString(strs.getAlias(), &status)); in SimpleFilteredBreakIteratorBuilder()
550 suppressBreakAfter(str, statu in SimpleFilteredBreakIteratorBuilder()
[all...]
/third_party/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_send.py34 def convertStringForXCB(str):
38 while i < len(str):
39 if str[i:i+3] in special:
40 tmp = '%s_%s' % (tmp, str[i:i+3].lower())
42 elif str[i].isupper():
43 tmp = '%s_%s' % (tmp, str[i].lower())
45 tmp = '%s%s' % (tmp, str[i])
549 dim_str = str(dim)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageSizeTests.cpp258 << "layout (binding = 0, " << formatQualifierStr << ")" << accessQualifier.str() << " uniform highp " << imageTypeStr << " u_image;\n" in initPrograms()
274 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()); in initPrograms()
280 std::ostringstream str; in getCaseName() local
281 str << ((flags & SizeTest::FLAG_READONLY_IMAGE) != 0 ? "readonly_" : "") in getCaseName()
285 str << "2d_view_"; in getCaseName()
289 str << (i == 0 ? "" : "x") << texture.size()[i]; in getCaseName()
291 return str.str(); in getCaseName()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingBarycentricCoordinatesTests.cpp137 const auto layoutDeclsStr = layoutDecls.str(); in initPrograms()
205 programCollection.glslSources.add("rgen") << glu::RaygenSource(updateRayTracingGLSL(rgen.str())) << buildOptions; in initPrograms()
206 programCollection.glslSources.add("miss") << glu::MissSource(updateRayTracingGLSL(miss.str())) << buildOptions; in initPrograms()
209 programCollection.glslSources.add("chit") << glu::ClosestHitSource(updateRayTracingGLSL(chit.str())) << buildOptions; in initPrograms()
211 programCollection.glslSources.add("chit") << glu::AnyHitSource(updateRayTracingGLSL(chit.str())) << buildOptions; in initPrograms()
214 programCollection.glslSources.add("chit") << glu::ClosestHitSource(updateRayTracingGLSL(chit.str())) << buildOptions; in initPrograms()
215 programCollection.glslSources.add("ahitTerminate") << glu::AnyHitSource(updateRayTracingGLSL(ahitTerminate.str())) << buildOptions; in initPrograms()
476 TCU_FAIL(msg.str()); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationGeometryPassthroughTests.cpp74 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in addVertexAndFragmentShaders()
89 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in addVertexAndFragmentShaders()
125 return src.str(); in generateTessellationEvaluationShader()
190 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms()
223 programCollection.glslSources.add("geom") << glu::GeometrySource(src.str()); in initPrograms()
303 return src.str(); in generateGeometryShader()
333 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms()
361 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()); in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageSizeTests.cpp260 << "layout (binding = 0, " << formatQualifierStr << ")" << accessQualifier.str() << " uniform highp " << imageTypeStr << " u_image;\n" in initPrograms()
276 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()); in initPrograms()
282 std::ostringstream str; in getCaseName() local
283 str << ((flags & SizeTest::FLAG_READONLY_IMAGE) != 0 ? "readonly_" : "") in getCaseName()
287 str << "2d_view_"; in getCaseName()
291 str << (i == 0 ? "" : "x") << texture.size()[i]; in getCaseName()
293 return str.str(); in getCaseName()
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
H A DGeometryShader_test.cpp38 return compile(sstream.str()); in compileGeometryShader()
48 return compile(sstream.str()); in compileGeometryShader()
73 return sstream.str(); in GetGeometryShaderLayout()
90 return sstream.str(); in GetInputDeclaration()
1160 if (!compile(ostream.str())) in TEST_F()
1197 if (compile(ostream.str())) in TEST_F()
1517 if (!compile(stream.str())) in TEST_F()
1533 if (!compile(stream.str())) in TEST_F()
/third_party/skia/src/gpu/ops/
H A DFillRectOp.cpp39 SkString str; in dump_quad_info() local
40 str.appendf("%d: Color: [%.2f, %.2f, %.2f, %.2f], Edge AA: l%u_t%u_r%u_b%u, \n" in dump_quad_info()
58 return str; in dump_quad_info()
369 SkString str = SkStringPrintf("# draws: %u\n", fQuads.count()); variable
370 str.appendf("Device quad type: %u, local quad type: %u\n",
372 str += fHelper.dumpInfo();
377 str += dump_quad_info(i, iter.deviceQuad(), iter.localQuad(),
381 return str;
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dssa_rewrite_pass.cpp74 std::ostringstream str; in PrettyPrint() local
75 str << "%" << result_id_ << " = Phi[%" << var_id_ << ", BB %" << bb_->id() in PrettyPrint()
81 str << "[%" << arg_id << ", bb(%" << pred_label << ")] "; in PrettyPrint()
84 str << ")"; in PrettyPrint()
86 str << " [COPY OF " << copy_of_ << "]"; in PrettyPrint()
88 str << ((is_complete_) ? " [COMPLETE]" : " [INCOMPLETE]"); in PrettyPrint()
90 return str.str(); in PrettyPrint()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dssa_rewrite_pass.cpp74 std::ostringstream str; in PrettyPrint() local
75 str << "%" << result_id_ << " = Phi[%" << var_id_ << ", BB %" << bb_->id() in PrettyPrint()
81 str << "[%" << arg_id << ", bb(%" << pred_label << ")] "; in PrettyPrint()
84 str << ")"; in PrettyPrint()
86 str << " [COPY OF " << copy_of_ << "]"; in PrettyPrint()
88 str << ((is_complete_) ? " [COMPLETE]" : " [INCOMPLETE]"); in PrettyPrint()
90 return str.str(); in PrettyPrint()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp552 group->addChild(new SizeCase(testCtx, renderCtx, name.str().c_str(), name.str().c_str(), spec)); in createFboNoAttachmentTests()
598 group->addChild(new SizeCase(testCtx, renderCtx, name.str().c_str(), name.str().c_str(), spec)); in createFboNoAttachmentTests()
615 group->addChild(new SizeCase(testCtx, renderCtx, name.str().c_str(), name.str().c_str(), spec)); in createFboNoAttachmentTests()
666 const string name = baseSpecName.str() + "_default_" + altSpecName.str(); in createFboNoAttachmentTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/
H A DvktTessellationGeometryPassthroughTests.cpp74 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in addVertexAndFragmentShaders()
89 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); in addVertexAndFragmentShaders()
125 return src.str(); in generateTessellationEvaluationShader()
190 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms()
223 programCollection.glslSources.add("geom") << glu::GeometrySource(src.str()); in initPrograms()
303 return src.str(); in generateGeometryShader()
333 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms()
361 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()); in initPrograms()
/third_party/ffmpeg/fftools/
H A Dffprobe.c483 void (* writer_put_str)(WriterContext *wctx, const char *str);
527 { "string_validation_replacement", "set string validation replacement string", OFFSET(string_validation_replacement), AV_OPT_TYPE_STRING, {.str=""}},
528 { "svr", "set string validation replacement string", OFFSET(string_validation_replacement), AV_OPT_TYPE_STRING, {.str="\xEF\xBF\xBD"}},
585 static inline void writer_put_str_avio(WriterContext *wctx, const char *str) in writer_put_str_avio() argument
587 avio_write(wctx->avio, str, strlen(str)); in writer_put_str_avio()
604 static inline void writer_put_str_printf(WriterContext *wctx, const char *str) in writer_put_str_printf() argument
606 printf("%s", str); in writer_put_str_printf()
684 bp.str, (*wctx)->string_validation_replacement); in writer_open()
791 "Invalid UTF-8 sequence %s found in string '%s'\n", bp.str, sr in validate_string()
3058 uint8_t *str; show_stream() local
[all...]

Completed in 46 milliseconds

1...<<111112113114115116117118119120>>...361