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

/freebsd-10.1-release/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.1-release/usr.bin/sort/
H A Dcoll.c298 size_t *field_start, size_t *key_start, bool *empty_field, bool *empty_key)
303 *key_start = skip_cols_to_start(s, ks->c1, *field_start,
362 size_t field_start, key_end, key_start, sz; local
366 key_start = 0;
370 find_field_start(s, ks, &field_start, &key_start,
377 sz = (key_end < key_start) ? 0 : (key_end - key_start);
382 bwsnocpy(ret, s, key_start, sz);
297 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 163 milliseconds