Searched refs:key_start (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp239 const char *key_start = open_bracket + 1; local
244 ++key_start;
245 key_end = strchr(key_start, '\'');
266 ++key_start;
267 key_end = strchr(key_start, '"');
287 key_end = strchr(key_start, ']');
301 if (key_start && key_end)
303 key.SetCStringWithLength (key_start, key_end - key_start);
/freebsd-10-stable/usr.bin/sort/
H A Dcoll.c313 size_t *field_start, size_t *key_start, bool *empty_field, bool *empty_key)
318 *key_start = skip_cols_to_start(s, ks->c1, *field_start,
377 size_t field_start, key_end, key_start, sz; local
381 key_start = 0;
385 find_field_start(s, ks, &field_start, &key_start,
392 sz = (key_end < key_start) ? 0 : (key_end - key_start);
397 bwsnocpy(ret, s, key_start, sz);
312 find_field_start(const struct bwstring *s, struct key_specs *ks, size_t *field_start, size_t *key_start, bool *empty_field, bool *empty_key) argument

Completed in 121 milliseconds