/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScriptCanvasModule.cpp | 79 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException); in callWrapContextFunction() local 80 if (hadException || resultValue.hasNoValue() || !resultValue.isObject()) { in callWrapContextFunction() 84 return ScriptObject(context.scriptState(), resultValue); in callWrapContextFunction() 90 RefPtr<JSONValue> resultValue; in markFrameEnd() local 91 makeCall(function, &resultValue); in markFrameEnd() 92 ASSERT(resultValue); in markFrameEnd() 108 RefPtr<JSONValue> resultValue; in callStartCapturingFunction() local 109 makeCall(function, &resultValue); in callStartCapturingFunction() 110 …if (!resultValue || resultValue->type() != JSONValue::TypeString || !resultValue->asString(traceLo… in callStartCapturingFunction() 143 RefPtr<JSONValue> resultValue; in traceLog() local [all …]
|
D | InjectedScript.cpp | 100 RefPtr<JSONValue> resultValue; in restartFrame() local 101 makeCall(function, &resultValue); in restartFrame() 102 if (resultValue) { in restartFrame() 103 if (resultValue->type() == JSONValue::TypeString) { in restartFrame() 104 resultValue->asString(errorString); in restartFrame() 107 if (resultValue->type() == JSONValue::TypeObject) { in restartFrame() 108 *result = resultValue->asObject(); in restartFrame() 120 RefPtr<JSONValue> resultValue; in getStepInPositions() local 121 makeCall(function, &resultValue); in getStepInPositions() 122 if (resultValue) { in getStepInPositions() [all …]
|
D | InjectedScriptModule.cpp | 58 ScriptValue resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException); in ensureInjected() local 61 if (hadException || resultValue.hasNoValue() || !resultValue.isObject()) { in ensureInjected() 65 resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException); in ensureInjected() 66 if (hadException || resultValue.hasNoValue() || !resultValue.isObject()) { in ensureInjected() 72 ScriptObject moduleObject(scriptState, resultValue); in ensureInjected()
|
D | InjectedScriptBase.cpp | 89 ScriptValue resultValue = function.call(hadException); in callFunctionWithEvalEnabled() local 95 return resultValue; in callFunctionWithEvalEnabled() 106 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException); in makeCall() local 110 *result = resultValue.toJSONValue(m_injectedScriptObject.scriptState()); in makeCall()
|
/external/chromium_org/v8/test/webkit/ |
D | comparison-operators.js | 27 var resultValue = eval(relationship + expression + 0) || !!override; 29 resultValue = !resultValue; 33 result.push([new func("return " + expr + ";"), resultValue]); 34 result.push([new func("if (" + expr + ") return true; return false;"), resultValue]); 35 …sh([new func("var k = 0; while (" + expr + ") if (k++) return true; return false;"), resultValue]); 36 …([new func("var k = 0; for (; " + expr + "; ) if (k++) return true; return false;"), resultValue]);
|
D | comparison-operators-less.js | 27 var resultValue = eval(relationship + expression + 0) || !!override; 29 resultValue = !resultValue; 33 result.push([new func("return " + expr + ";"), resultValue]); 34 result.push([new func("if (" + expr + ") return true; return false;"), resultValue]); 35 …sh([new func("var k = 0; while (" + expr + ") if (k++) return true; return false;"), resultValue]); 36 …([new func("var k = 0; for (; " + expr + "; ) if (k++) return true; return false;"), resultValue]);
|
D | comparison-operators-greater.js | 27 var resultValue = eval(relationship + expression + 0) || !!override; 29 resultValue = !resultValue; 33 result.push([new func("return " + expr + ";"), resultValue]); 34 result.push([new func("if (" + expr + ") return true; return false;"), resultValue]); 35 …sh([new func("var k = 0; while (" + expr + ") if (k++) return true; return false;"), resultValue]); 36 …([new func("var k = 0; for (; " + expr + "; ) if (k++) return true; return false;"), resultValue]);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ScriptPreprocessor.cpp | 104 …v8::Handle<v8::Value> resultValue = V8ScriptRunner::callAsFunction(m_preprocessorFunction.newLocal… in preprocessSourceCode() local 106 if (!resultValue.IsEmpty() && resultValue->IsString()) in preprocessSourceCode() 107 return toCoreStringWithNullCheck(resultValue.As<v8::String>()); in preprocessSourceCode()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | SCCP.java | 491 int resultValue = VARYING; in simulateStmt() local 497 resultValue = CONSTANT; in simulateStmt() 504 resultValue = latticeValues[sourceReg]; in simulateStmt() 522 resultValue = CONSTANT; in simulateStmt() 528 resultValue = latticeValues[resultReg]; in simulateStmt() 537 if (setLatticeValueTo(resultReg, resultValue, resultConstant)) { in simulateStmt() 538 addUsersToWorklist(resultReg, resultValue); in simulateStmt()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | AuditRules.js | 998 function evalCallback(resultValue) argument 1003 if (!resultValue) 1006 var lateCssUrls = resultValue[0]; 1007 var cssBeforeInlineCount = resultValue[1];
|
/external/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 996 SkScriptValue2 resultValue; in processLogicalOp() local 997 resultValue.fType = array->getType(); in processLogicalOp() 998 resultValue.fOperand = operand; in processLogicalOp() 999 resultValue.fIsConstant = SkScriptValue2::kVariable; in processLogicalOp() 1000 fValueStack.push(resultValue); in processLogicalOp()
|
/external/chromium_org/third_party/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 996 SkScriptValue2 resultValue; in processLogicalOp() local 997 resultValue.fType = array->getType(); in processLogicalOp() 998 resultValue.fOperand = operand; in processLogicalOp() 999 resultValue.fIsConstant = SkScriptValue2::kVariable; in processLogicalOp() 1000 fValueStack.push(resultValue); in processLogicalOp()
|