HomeSort by relevance Sort by last modified time
    Searched refs:evalFunction (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 315 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
319 if (evalFunction)
320 State = (this->*evalFunction)(CE, C);
379 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
396 if (evalFunction)
397 State = (this->*evalFunction)(CE, C);
CStringChecker.cpp     [all...]
CheckSecuritySyntaxOnly.cpp 132 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
156 if (evalFunction)
157 (this->*evalFunction)(CE, FD);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 157 v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "evaluate")));
160 v8::Handle<v8::Value> result = evalFunction->Call(callFrame, WTF_ARRAY_LENGTH(argv), argv);
InjectedScriptSource.js 682 * @param {?function(string):*} evalFunction
693 _evaluateAndWrap: function(evalFunction, object, expression, objectGroup, isEvalOnCallFrame, injectCommandLineAPI, returnByValue, generatePreview, scopeChain)
695 var wrappedResult = this._evaluateOn(evalFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain);
723 * @param {?function(string):*} evalFunction
732 _evaluateOn: function(evalFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain)
762 var wrappedResult = evalFunction ? InjectedScriptHost.callFunction(evalFunction, object, [expression]) : InjectedScriptHost.evaluateWithExceptionDetails(expression);
    [all...]

Completed in 262 milliseconds