Home
last modified time | relevance | path

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

/third_party/gn/src/base/strings/
Dstring_split.cc101 auto& result_pair = result->back(); in AppendStringKeyValue() local
108 result_pair.first.assign(input.substr(0, end_key_pos)); in AppendStringKeyValue()
117 result_pair.second.assign( in AppendStringKeyValue()
/third_party/skia/third_party/externals/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>;
/third_party/skia/third_party/externals/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;
/third_party/python/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()