Home | History | Annotate | Download | only in inspector

Lines Matching defs:resultValue

79     ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
80 if (hadException || resultValue.hasNoValue() || !resultValue.isObject()) {
84 return ScriptObject(context.scriptState(), resultValue);
90 RefPtr<JSONValue> resultValue;
91 makeCall(function, &resultValue);
92 ASSERT(resultValue);
108 RefPtr<JSONValue> resultValue;
109 makeCall(function, &resultValue);
110 if (!resultValue || resultValue->type() != JSONValue::TypeString || !resultValue->asString(traceLogId))
143 RefPtr<JSONValue> resultValue;
144 makeCall(function, &resultValue);
145 if (!resultValue || resultValue->type() != JSONValue::TypeObject) {
146 if (!resultValue->asString(errorString))
150 *traceLog = TraceLog::runtimeCast(resultValue);
158 RefPtr<JSONValue> resultValue;
159 makeCall(function, &resultValue);
160 if (!resultValue || resultValue->type() != JSONValue::TypeObject) {
161 if (!resultValue->asString(errorString))
165 RefPtr<JSONObject> resultObject = resultValue->asObject();
181 RefPtr<JSONValue> resultValue;
182 makeCall(function, &resultValue);
183 if (!resultValue || resultValue->type() != JSONValue::TypeObject) {
184 if (!resultValue->asString(errorString))
188 *result = ResourceState::runtimeCast(resultValue);
198 RefPtr<JSONValue> resultValue;
199 makeCall(function, &resultValue);
200 if (!resultValue || resultValue->type() != JSONValue::TypeObject) {
201 if (!resultValue->asString(errorString))
205 RefPtr<JSONObject> resultObject = resultValue->asObject();