Lines Matching refs:result
232 Result result = SerializeObject(object);
233 if (result == UNCHANGED) return factory()->undefined_value();
234 if (result == SUCCESS) return builder_.Finish();
235 DCHECK(result == EXCEPTION);
512 Handle<String> result;
513 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, result, builder.Finish(),
515 return result;
730 Result result = SerializeElement(
735 if (result == UNCHANGED) {
737 } else if (result != SUCCESS) {
738 return result;
749 Result result = SerializeArrayLikeSlow(object, i, length);
750 if (result != SUCCESS) return result;
774 Result result = SerializeElement(isolate_, element, i);
775 if (result == SUCCESS) continue;
776 if (result == UNCHANGED) {
781 return result;
809 Result result = SerializeJSReceiverSlow(object);
810 if (result != SUCCESS) return result;
855 Result result = SerializeProperty(property, comma, key_name);
856 if (!comma && result == SUCCESS) comma = true;
857 if (result == EXCEPTION) return result;
886 Result result = SerializeProperty(property, comma, key);
887 if (!comma && result == SUCCESS) comma = true;
888 if (result == EXCEPTION) return result;
920 Result result = SerializeArrayLikeSlow(object, 0, length);
921 if (result != SUCCESS) return result;
926 Result result = SerializeJSReceiverSlow(object);
927 if (result != SUCCESS) return result;