Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/util/
Dutil.cc101 Safe_PyObjectPtr raw_result(PyObject_CallMethod(o, key_method_name, nullptr)); in MappingKeys()
102 if (PyErr_Occurred() || raw_result.get() == nullptr) { in MappingKeys()
106 raw_result.get(), in MappingKeys()
/external/python/cpython3/Lib/
Dwebbrowser.py530 raw_result = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
531 result = raw_result.decode().strip()
/external/v8/src/
Dcode-stub-assembler.cc3041 Node* raw_result = Allocate(size, kNone); in AllocateRawBigInt() local
3042 StoreMapNoWriteBarrier(raw_result, Heap::kBigIntMapRootIndex); in AllocateRawBigInt()
3043 return UncheckedCast<BigInt>(raw_result); in AllocateRawBigInt()
Dapi.cc2809 i::Handle<i::String> raw_result = i::MessageHandler::GetMessage(isolate, obj); in Get() local
2810 Local<String> result = Utils::ToLocal(raw_result); in Get()