Home
last modified time | relevance | path

Searched refs:commentLen (Results 1 – 4 of 4) sorted by relevance

/external/skqp/tools/bookmaker/
DincludeWriter.cpp91 int commentLen = (int) (def->fContentEnd - commentStart); in descriptionOut() local
102 commentLen = (int) (prop->fStart - commentStart); in descriptionOut()
103 if (commentLen > 0) { in descriptionOut()
104 SkASSERT(commentLen < 1000); in descriptionOut()
105 if (Wrote::kNone != this->rewriteBlock(commentLen, commentStart, Phrase::kNo)) { in descriptionOut()
124 commentLen = (int) (prop->fContentEnd - commentStart); in descriptionOut()
125 SkASSERT(commentLen > 0); in descriptionOut()
130 wroteSomething |= this->writeBlockIndent(commentLen, commentStart, false); in descriptionOut()
155 commentLen = prop->fStart - commentStart; in descriptionOut()
156 if (commentLen > 0) { in descriptionOut()
[all …]
/external/skia/tools/bookmaker/
DincludeWriter.cpp91 int commentLen = (int) (def->fContentEnd - commentStart); in descriptionOut() local
102 commentLen = (int) (prop->fStart - commentStart); in descriptionOut()
103 if (commentLen > 0) { in descriptionOut()
104 SkASSERT(commentLen < 1000); in descriptionOut()
105 if (Wrote::kNone != this->rewriteBlock(commentLen, commentStart, Phrase::kNo)) { in descriptionOut()
124 commentLen = (int) (prop->fContentEnd - commentStart); in descriptionOut()
125 SkASSERT(commentLen > 0); in descriptionOut()
130 wroteSomething |= this->writeBlockIndent(commentLen, commentStart, false); in descriptionOut()
155 commentLen = prop->fStart - commentStart; in descriptionOut()
156 if (commentLen > 0) { in descriptionOut()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipArchiveOutputStream.java1248 final int commentLen = commentB.limit() - commentB.position(); in createCentralFileHeader() local
1249 final int len= CFH_FILENAME_OFFSET + nameLen + extra.length + commentLen; in createCentralFileHeader()
1291 putShort(commentLen, buf, CFH_COMMENT_LENGTH_OFFSET); in createCentralFileHeader()
1318 System.arraycopy(commentB.array(), commentB.arrayOffset(), buf, commentStart, commentLen); in createCentralFileHeader() local
DZipFile.java701 final int commentLen = ZipShort.getValue(cfhBuf, off);
728 final byte[] comment = new byte[commentLen];