Lines Matching defs:length
521 size_t length;
550 length = p - units;
551 if ((*units == 'c') && (strncmp(units, "chars", length) == 0)) {
557 } else if ((*units == 'l') && (strncmp(units, "lines", length) == 0)) {
625 * Compute the length of the current line.
708 * Compute the length of the line and add that to dstPtr->charIndex.
749 size_t length;
759 length = p-string;
760 if ((*string == 'l') && (strncmp(string, "lineend", length) == 0)
761 && (length >= 5)) {
768 } else if ((*string == 'l') && (strncmp(string, "linestart", length) == 0)
769 && (length >= 5)) {
771 } else if ((*string == 'w') && (strncmp(string, "wordend", length) == 0)
772 && (length >= 5)) {
799 } else if ((*string == 'w') && (strncmp(string, "wordstart", length) == 0)
800 && (length >= 5)) {