Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/WebKit/Source/core/frame/
DConsoleBase.h46 class ScriptArguments; variable
50 void debug(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
51 void error(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
52 void info(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
53 void log(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
54 void clear(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
55 void warn(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
56 void dir(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
57 void dirxml(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
58 void table(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
[all …]
DConsoleBase.cpp46 void ConsoleBase::debug(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in debug()
51 void ConsoleBase::error(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in error()
56 void ConsoleBase::info(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in info()
61 void ConsoleBase::log(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in log()
66 void ConsoleBase::warn(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in warn()
71 void ConsoleBase::dir(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in dir()
76 void ConsoleBase::dirxml(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> argument… in dirxml()
81 void ConsoleBase::table(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in table()
86 void ConsoleBase::clear(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in clear()
91 void ConsoleBase::trace(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in trace()
[all …]
DConsoleBase.idl34 [CallWith=ScriptArguments&ScriptState] void debug();
35 [CallWith=ScriptArguments&ScriptState] void error();
36 [CallWith=ScriptArguments&ScriptState] void info();
37 [CallWith=ScriptArguments&ScriptState] void log();
38 [CallWith=ScriptArguments&ScriptState] void warn();
39 [CallWith=ScriptArguments&ScriptState] void dir();
40 [CallWith=ScriptArguments&ScriptState] void dirxml();
41 [CallWith=ScriptArguments&ScriptState] void table();
42 [CallWith=ScriptArguments&ScriptState] void trace();
43 …[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.cpp40 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptArguments) in DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED() argument
42 PassRefPtrWillBeRawPtr<ScriptArguments> ScriptArguments::create(ScriptState* scriptState, Vector<Sc… in DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED()
44 return adoptRefWillBeNoop(new ScriptArguments(scriptState, arguments)); in DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED()
47 ScriptArguments::ScriptArguments(ScriptState* scriptState, Vector<ScriptValue>& arguments) in ScriptArguments() function in WebCore::ScriptArguments
53 const ScriptValue &ScriptArguments::argumentAt(size_t index) const in argumentAt()
59 bool ScriptArguments::getFirstArgumentAsString(String& result, bool checkForNullOrUndefined) in getFirstArgumentAsString()
DScriptArguments.h44 class ScriptArguments : public RefCountedWillBeGarbageCollectedFinalized<ScriptArguments> {
45 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptArguments);
47 …static PassRefPtrWillBeRawPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments…
59 ScriptArguments(ScriptState*, Vector<ScriptValue>& arguments);
DConsoleMessage.h45 class ScriptArguments; variable
56 …ageType, MessageLevel, const String& message, PassRefPtrWillBeRawPtr<ScriptArguments>, ScriptState…
76 RefPtrWillBePersistent<ScriptArguments> m_arguments;
DInspectorConsoleAgent.h54 class ScriptArguments; variable
79 …geLevel, const String& message, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned lo…
92 void consoleCount(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
DInspectorConsoleAgent.cpp167 …st String& message, ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, u… in addMessageToConsole()
235 …oleAgent::consoleCount(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) in consoleCount()
DInspectorDebuggerAgent.h63 class ScriptArguments; variable
97 …e, MessageLevel, const String&, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned lo…
DInspectorInstrumentation.idl446 #include "core/inspector/ScriptArguments.h"
449 // FIXME: Convert to ScriptArguments to match non-worker context.
459 …l, const String& message, ScriptState* state, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, u…
462 …(ExecutionContext* context, ScriptState* state, PassRefPtrWillBeRawPtr<ScriptArguments> arguments);
DConsoleMessage.cpp100 …e, MessageLevel level, const String& message, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, S… in ConsoleMessage()
DInspectorTimelineAgent.h82 class ScriptArguments; variable
DInspectorDebuggerAgent.cpp274 …e, MessageLevel, const String&, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned lo… in addMessageToConsole() argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptCallStackFactory.h40 class ScriptArguments; variable
54 PassRefPtrWillBeRawPtr<ScriptArguments> createScriptArguments(ScriptState*, const v8::FunctionCallb…
DScriptCallStackFactory.cpp121 PassRefPtrWillBeRawPtr<ScriptArguments> createScriptArguments(ScriptState* scriptState, const v8::F… in createScriptArguments()
127 return ScriptArguments::create(scriptState, arguments); in createScriptArguments()
/external/chromium_org/third_party/WebKit/Source/core/workers/
DWorkerConsole.h46 class ScriptArguments; variable
/external/chromium_org/third_party/WebKit/Source/bindings/
DIDLExtendedAttributes.txt38 CallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow|ThisValue
93 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
DTestObject.idl454 [CallWith=ScriptState&ScriptArguments] void callWithScriptStateScriptArgumentsVoidMethod();
455 …[CallWith=ScriptState&ScriptArguments] void callWithScriptStateScriptArgumentsVoidMethodOptionalBo…
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
Dmethods.cpp241 RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, {{meth…
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_remaining.target.linux-arm64.mk434 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.linux-mips.mk434 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.darwin-x86_64.mk434 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.darwin-arm64.mk434 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \
Dwebcore_remaining.target.darwin-x86.mk434 third_party/WebKit/Source/core/inspector/ScriptArguments.cpp \

12