Home
last modified time | relevance | path

Searched refs:result_pair (Results 1 – 6 of 6) sorted by relevance

/external/cronet/base/strings/
Dstring_split.cc24 auto& result_pair = result->back(); in AppendStringKeyValue() local
32 result_pair.first = std::string(input.substr(0, end_key_pos)); in AppendStringKeyValue()
42 result_pair.second = std::string( in AppendStringKeyValue()
/external/libchrome/base/strings/
Dstring_split.cc110 auto& result_pair = result->back(); in AppendStringKeyValue() local
118 input.substr(0, end_key_pos).CopyToString(&result_pair.first); in AppendStringKeyValue()
128 .CopyToString(&result_pair.second); in AppendStringKeyValue()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSTLExtras.h1408 template <typename R> struct result_pair {
1414 result_pair() = default;
1415 result_pair(std::size_t Index, IterOfRange<R> Iter)
1418 result_pair<R>(const result_pair<R> &Other)
1420 result_pair<R> &operator=(const result_pair<R> &Other) {
1438 enumerator_iter<R>, std::forward_iterator_tag, result_pair<R>,
1442 using result_type = result_pair<R>;
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h632 template <typename X> struct result_pair {
633 result_pair(std::size_t Index, X Value) : Index(Index), Value(Value) {}
642 typedef result_pair<iter_reference> result_type;
/external/python/cpython3/Objects/
Dfloatobject.c1544 PyObject *result_pair = NULL; in float_as_integer_ratio_impl() local
1594 result_pair = PyTuple_Pack(2, numerator, denominator); in float_as_integer_ratio_impl()
1600 return result_pair; in float_as_integer_ratio_impl()
/external/python/cpython2/Objects/
Dfloatobject.c1720 PyObject *result_pair = NULL; in float_as_integer_ratio() local
1782 result_pair = PyTuple_Pack(2, numerator, denominator); in float_as_integer_ratio()
1789 return result_pair; in float_as_integer_ratio()