Home | History | Annotate | Download | only in inspector

Lines Matching defs:resultValue

100     RefPtr<JSONValue> resultValue;
101 makeCall(function, &resultValue);
102 if (resultValue) {
103 if (resultValue->type() == JSONValue::TypeString) {
104 resultValue->asString(errorString);
107 if (resultValue->type() == JSONValue::TypeObject) {
108 *result = resultValue->asObject();
120 RefPtr<JSONValue> resultValue;
121 makeCall(function, &resultValue);
122 if (resultValue) {
123 if (resultValue->type() == JSONValue::TypeString) {
124 resultValue->asString(errorString);
127 if (resultValue->type() == JSONValue::TypeArray) {
128 positions = Array<TypeBuilder::Debugger::Location>::runtimeCast(resultValue);
152 RefPtr<JSONValue> resultValue;
153 makeCall(function, &resultValue);
154 if (!resultValue) {
158 if (resultValue->type() == JSONValue::TypeString) {
159 resultValue->asString(errorString);
169 RefPtr<JSONValue> resultValue;
170 makeCall(function, &resultValue);
171 if (!resultValue || resultValue->type() != JSONValue::TypeObject) {
172 if (!resultValue->asString(errorString))
176 *result = FunctionDetails::runtimeCast(resultValue);
220 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
223 return InjectedScriptHost::scriptValueAsNode(resultValue);
294 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
296 return resultValue;