Home
last modified time | relevance | path

Searched refs:filenameLength (Results 1 – 5 of 5) sorted by relevance

/third_party/icu/icu4c/source/io/
Dufile.cpp172 …int32_t filenameLength = filenameString.extract(0, filenameString.length(), filenameBuffer, FILENA… in u_fopen_u() local
173 … if (filenameLength >= FILENAME_BUF_CAPACITY) { // could not fit (with zero termination) in buffer in u_fopen_u()
174 …filenameBuffer = static_cast<char *>(uprv_malloc(++filenameLength)); // add one for zero terminati… in u_fopen_u()
178 filenameString.extract(0, filenameString.length(), filenameBuffer, filenameLength); in u_fopen_u()
/third_party/skia/third_party/externals/icu/source/io/
Dufile.cpp172 …int32_t filenameLength = filenameString.extract(0, filenameString.length(), filenameBuffer, FILENA… in u_fopen_u() local
173 … if (filenameLength >= FILENAME_BUF_CAPACITY) { // could not fit (with zero termination) in buffer in u_fopen_u()
174 …filenameBuffer = static_cast<char *>(uprv_malloc(++filenameLength)); // add one for zero terminati… in u_fopen_u()
178 filenameString.extract(0, filenameString.length(), filenameBuffer, filenameLength); in u_fopen_u()
/third_party/icu/icu4c/source/test/perf/dicttrieperf/
Ddicttrieperf.cpp87 int32_t filenameLength=filename.length(); in PackageLookup() local
88 if(filenameLength>0 && filename[filenameLength-1]!=U_FILE_SEP_CHAR && in PackageLookup()
89 filename[filenameLength-1]!=U_FILE_ALT_SEP_CHAR) { in PackageLookup()
/third_party/node/test/parallel/
Dtest-fs-long-path.js40 filenameLength: fileName.length, property
/third_party/skia/third_party/externals/tint/tools/src/cmd/test-runner/
Dmain.go313 filenameLength := utf8.RuneCountInString(file)
315 if filenameLength > filenameColumnWidth {
316 shortFile = "..." + file[filenameLength-filenameColumnWidth+3:]