Home
last modified time | relevance | path

Searched refs:ScriptArguments (Results 1 – 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/frame/
DConsoleBase.h45 class ScriptArguments; variable
52 void debug(ScriptState*, PassRefPtr<ScriptArguments>);
53 void error(ScriptState*, PassRefPtr<ScriptArguments>);
54 void info(ScriptState*, PassRefPtr<ScriptArguments>);
55 void log(ScriptState*, PassRefPtr<ScriptArguments>);
56 void clear(ScriptState*, PassRefPtr<ScriptArguments>);
57 void warn(ScriptState*, PassRefPtr<ScriptArguments>);
58 void dir(ScriptState*, PassRefPtr<ScriptArguments>);
59 void dirxml(ScriptState*, PassRefPtr<ScriptArguments>);
60 void table(ScriptState*, PassRefPtr<ScriptArguments>);
[all …]
DConsoleBase.cpp46 void ConsoleBase::debug(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in debug()
51 void ConsoleBase::error(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in error()
56 void ConsoleBase::info(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in info()
61 void ConsoleBase::log(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in log()
66 void ConsoleBase::warn(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in warn()
71 void ConsoleBase::dir(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in dir()
76 void ConsoleBase::dirxml(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in dirxml()
81 void ConsoleBase::table(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in table()
86 void ConsoleBase::clear(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in clear()
91 void ConsoleBase::trace(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in trace()
[all …]
DConsoleBase.idl33 [CallWith=ScriptArguments&ScriptState] void debug();
34 [CallWith=ScriptArguments&ScriptState] void error();
35 [CallWith=ScriptArguments&ScriptState] void info();
36 [CallWith=ScriptArguments&ScriptState] void log();
37 [CallWith=ScriptArguments&ScriptState] void warn();
38 [CallWith=ScriptArguments&ScriptState] void dir();
39 [CallWith=ScriptArguments&ScriptState] void dirxml();
40 [CallWith=ScriptArguments&ScriptState] void table();
41 [CallWith=ScriptArguments&ScriptState] void trace();
42 …[CallWith=ScriptArguments&ScriptState, ImplementedAs=assertCondition] void assert([Default=Undefin…
[all …]
DConsole.h45 class ScriptArguments; variable
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DScriptArguments.cpp39 PassRefPtr<ScriptArguments> ScriptArguments::create(ScriptState* scriptState, Vector<ScriptValue>& … in create()
41 return adoptRef(new ScriptArguments(scriptState, arguments)); in create()
44 ScriptArguments::ScriptArguments(ScriptState* scriptState, Vector<ScriptValue>& arguments) in ScriptArguments() function in WebCore::ScriptArguments
50 ScriptArguments::~ScriptArguments() in ~ScriptArguments()
54 const ScriptValue &ScriptArguments::argumentAt(size_t index) const in argumentAt()
60 ScriptState* ScriptArguments::globalState() const in globalState()
65 bool ScriptArguments::getFirstArgumentAsString(String& result, bool checkForNullOrUndefined) in getFirstArgumentAsString()
84 bool ScriptArguments::isEqual(ScriptArguments* other) const in isEqual()
DScriptArguments.h44 class ScriptArguments : public RefCounted<ScriptArguments> {
46 static PassRefPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments);
48 ~ScriptArguments();
56 bool isEqual(ScriptArguments*) const;
59 ScriptArguments(ScriptState*, Vector<ScriptValue>& arguments);
DConsoleMessage.h45 class ScriptArguments; variable
56 …Source, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, ScriptState…
80 RefPtr<ScriptArguments> m_arguments;
DInspectorConsoleAgent.h54 class ScriptArguments; variable
78 …eType, MessageLevel, const String& message, ScriptState*, PassRefPtr<ScriptArguments>, unsigned lo…
91 void consoleCount(ScriptState*, PassRefPtr<ScriptArguments>);
DInspectorConsoleAgent.cpp166 …geLevel level, const String& message, ScriptState* state, PassRefPtr<ScriptArguments> arguments, u… in addMessageToConsole()
234 void InspectorConsoleAgent::consoleCount(ScriptState* state, PassRefPtr<ScriptArguments> arguments) in consoleCount()
DInspectorDebuggerAgent.h55 class ScriptArguments; variable
86 …, MessageType, MessageLevel, const String&, ScriptState*, PassRefPtr<ScriptArguments>, unsigned lo…
DInspectorInstrumentation.idl450 #include "core/inspector/ScriptArguments.h"
453 // FIXME: Convert to ScriptArguments to match non-worker context.
463 …geLevel level, const String& message, ScriptState* state, PassRefPtr<ScriptArguments> arguments, u…
466 …void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtr<ScriptArguments> argum…
DInspectorTimelineAgent.h79 class ScriptArguments; variable
DConsoleMessage.cpp99 …sageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, S… in ConsoleMessage()
DInspectorDebuggerAgent.cpp267 …sageType type, MessageLevel, const String&, ScriptState*, PassRefPtr<ScriptArguments>, unsigned lo… in addMessageToConsole() argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptCallStackFactory.h40 class ScriptArguments; variable
54 PassRefPtr<ScriptArguments> createScriptArguments(const v8::FunctionCallbackInfo<v8::Value>& v8argu…
DScriptCallStackFactory.cpp124 PassRefPtr<ScriptArguments> createScriptArguments(const v8::FunctionCallbackInfo<v8::Value>& v8argu… in createScriptArguments()
135 return ScriptArguments::create(state, arguments); in createScriptArguments()
/external/chromium_org/third_party/WebKit/Source/core/workers/
DWorkerConsole.h44 class ScriptArguments; variable
/external/chromium_org/third_party/WebKit/Source/bindings/
DIDLExtendedAttributes.txt39 CallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow|ThisValue
85 SetterCallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
Dmethods.cpp157 RefPtr<ScriptArguments> scriptArguments(createScriptArguments(info, {{method.number_of_arguments}})…
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
DTestObjectPython.idl359 [CallWith=ScriptState&ScriptArguments] void callWithScriptStateScriptArgumentsVoidMethod();
360 …[CallWith=ScriptState&ScriptArguments] void callWithScriptStateScriptArgumentsVoidMethodOptionalBo…
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_remaining.target.linux-arm.mk360 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.linux-x86.mk360 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.linux-mips.mk360 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.darwin-arm.mk360 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.darwin-x86.mk360 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \

12