Home
last modified time | relevance | path

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

/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-7.0/llvm/include/llvm/ADT/
DSTLExtras.h1140 template <typename R> struct result_pair {
1143 result_pair() = default;
1144 result_pair(std::size_t Index, IterOfRange<R> Iter)
1147 result_pair<R> &operator=(const result_pair<R> &Other) {
1165 enumerator_iter<R>, std::forward_iterator_tag, result_pair<R>,
1169 using result_type = result_pair<R>;
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h749 template <typename X> struct result_pair {
750 result_pair(std::size_t Index, X Value) : Index(Index), Value(Value) {}
759 typedef result_pair<iter_reference> result_type;
/external/v8/src/interpreter/
Dinterpreter-generator.cc1632 Node* result_pair = CallRuntimeN(function_id, context, args, 2); in IGNITION_HANDLER() local
1634 Node* result0 = Projection(0, result_pair); in IGNITION_HANDLER()
1635 Node* result1 = Projection(1, result_pair); in IGNITION_HANDLER()
2803 Node* result_pair = \
2805 Node* return_value = Projection(0, result_pair); \
2806 Node* original_bytecode = SmiUntag(Projection(1, result_pair)); \
Dbytecode-generator.cc3604 RegisterList result_pair = register_allocator()->NewRegisterList(2); in VisitCall() local
3610 result_pair) in VisitCall()
3611 .MoveRegister(result_pair[0], callee) in VisitCall()
3612 .MoveRegister(result_pair[1], receiver); in VisitCall()
/external/python/cpython3/Objects/
Dfloatobject.c1545 PyObject *result_pair = NULL; in float_as_integer_ratio_impl() local
1597 result_pair = PyTuple_Pack(2, numerator, denominator); in float_as_integer_ratio_impl()
1603 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()