Lines Matching full:len
161 match_proc(const LHSProc* p, const char16_t* str, size_t len)
165 if (p->textSize == len) {
166 if (0 == memcmp(p->text, str, len*sizeof(char16_t))) {
178 parse_int(const char16_t* str, size_t len, int* out,
184 if (len == 0) {
197 for (; i<len; i++) {
228 parse_int_list(const char16_t* str, size_t len, int* countOut, int** listOut,
234 if (len == 0) {
243 for (size_t i=0; i<len; i++) {
254 for (i=0; i<len; i++) {
285 parse_byday(const char16_t* s, size_t len, int* out,
291 size_t plen = len;
293 if (len > 0) {
296 if (len > 1) {
299 while (nlen < len
349 size_t len = str.size();
355 for (size_t i=0; i<len; i++) {
357 if (c != ';' && i == len-1) {