Home
last modified time | relevance | path

Searched refs:FunctionCallbackInfo (Results 1 – 25 of 44) sorted by relevance

12

/external/v8/src/inspector/
Dv8-console.h50 static void debugCallback(const v8::FunctionCallbackInfo<v8::Value>&);
51 static void errorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
52 static void infoCallback(const v8::FunctionCallbackInfo<v8::Value>&);
53 static void logCallback(const v8::FunctionCallbackInfo<v8::Value>&);
54 static void warnCallback(const v8::FunctionCallbackInfo<v8::Value>&);
55 static void dirCallback(const v8::FunctionCallbackInfo<v8::Value>&);
56 static void dirxmlCallback(const v8::FunctionCallbackInfo<v8::Value>&);
57 static void tableCallback(const v8::FunctionCallbackInfo<v8::Value>&);
58 static void traceCallback(const v8::FunctionCallbackInfo<v8::Value>&);
59 static void groupCallback(const v8::FunctionCallbackInfo<v8::Value>&);
[all …]
Dv8-injected-script-host.h31 const v8::FunctionCallbackInfo<v8::Value>&);
33 const v8::FunctionCallbackInfo<v8::Value>&);
35 const v8::FunctionCallbackInfo<v8::Value>&);
36 static void subtypeCallback(const v8::FunctionCallbackInfo<v8::Value>&);
38 const v8::FunctionCallbackInfo<v8::Value>&);
40 const v8::FunctionCallbackInfo<v8::Value>&);
41 static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&);
43 const v8::FunctionCallbackInfo<v8::Value>&);
Dv8-console.cc33 explicit ConsoleHelper(const v8::FunctionCallbackInfo<v8::Value>& info) in ConsoleHelper()
222 const v8::FunctionCallbackInfo<v8::Value>& m_info;
250 void returnDataCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in returnDataCallback()
283 void V8Console::debugCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in debugCallback()
287 void V8Console::errorCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in errorCallback()
291 void V8Console::infoCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in infoCallback()
295 void V8Console::logCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in logCallback()
299 void V8Console::warnCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in warnCallback()
303 void V8Console::dirCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { in dirCallback()
308 const v8::FunctionCallbackInfo<v8::Value>& info) { in dirxmlCallback()
[all …]
Dv8-injected-script-host.cc37 const v8::FunctionCallbackInfo<v8::Value>& info) { in unwrapInspector()
84 const v8::FunctionCallbackInfo<v8::Value>& info) { in nullifyPrototypeCallback()
94 const v8::FunctionCallbackInfo<v8::Value>& info) { in internalConstructorNameCallback()
102 const v8::FunctionCallbackInfo<v8::Value>& info) { in formatAccessorsAsProperties()
114 const v8::FunctionCallbackInfo<v8::Value>& info) { in subtypeCallback()
180 const v8::FunctionCallbackInfo<v8::Value>& info) { in getInternalPropertiesCallback()
248 const v8::FunctionCallbackInfo<v8::Value>& info) { in objectHasOwnPropertyCallback()
259 const v8::FunctionCallbackInfo<v8::Value>& info) { in bindCallback()
275 const v8::FunctionCallbackInfo<v8::Value>& info) { in proxyTargetValueCallback()
/external/skia/experimental/SkV8Example/
DPath2DBuilder.h28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args);
34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args);
35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
38 const v8::FunctionCallbackInfo<v8::Value>& args);
39 static void BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
40 static void Arc(const v8::FunctionCallbackInfo<v8::Value>& args);
41 static void Rect(const v8::FunctionCallbackInfo<v8::Value>& args);
42 static void Oval(const v8::FunctionCallbackInfo<v8::Value>& args);
43 static void ConicTo(const v8::FunctionCallbackInfo<v8::Value>& args);
[all …]
DDrawingMethods.h48 static void Save(const v8::FunctionCallbackInfo<v8::Value>& args);
49 static void Restore(const v8::FunctionCallbackInfo<v8::Value>& args);
50 static void Rotate(const v8::FunctionCallbackInfo<v8::Value>& args);
51 static void Translate(const v8::FunctionCallbackInfo<v8::Value>& args);
52 static void ResetTransform(const v8::FunctionCallbackInfo<v8::Value>& args);
54 static void DrawPath(const v8::FunctionCallbackInfo<v8::Value>& args);
DPath2DBuilder.cpp17 void Path2DBuilder::ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args) { in ConstructPath()
64 Path2DBuilder* Path2DBuilder::Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args) { in Unwrap()
71 void Path2DBuilder::ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args) { in ClosePath()
76 void Path2DBuilder::MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in MoveTo()
89 void Path2DBuilder::LineTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in LineTo()
102 void Path2DBuilder::QuadraticCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in QuadraticCurveTo()
121 void Path2DBuilder::BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in BezierCurveTo()
143 void Path2DBuilder::Arc(const v8::FunctionCallbackInfo<v8::Value>& args) { in Arc()
179 void Path2DBuilder::Rect(const v8::FunctionCallbackInfo<v8::Value>& args) { in Rect()
201 void Path2DBuilder::Oval(const v8::FunctionCallbackInfo<v8::Value>& args) { in Oval()
[all …]
DDrawingMethods.cpp25 void DrawingMethods::Save(const v8::FunctionCallbackInfo<v8::Value>& args) { in Save()
35 void DrawingMethods::Restore(const v8::FunctionCallbackInfo<v8::Value>& args) { in Restore()
45 void DrawingMethods::Rotate(const v8::FunctionCallbackInfo<v8::Value>& args) { in Rotate()
62 void DrawingMethods::Translate(const v8::FunctionCallbackInfo<v8::Value>& args) { in Translate()
80 void DrawingMethods::ResetTransform(const v8::FunctionCallbackInfo<v8::Value>& args) { in ResetTransform()
90 void DrawingMethods::DrawPath(const v8::FunctionCallbackInfo<v8::Value>& args) { in DrawPath()
DGlobal.h68 static void SetTimeout(const v8::FunctionCallbackInfo<v8::Value>& args);
69 static void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
70 static void Inval(const v8::FunctionCallbackInfo<v8::Value>& args);
DGlobal.cpp75 void Global::Inval(const v8::FunctionCallbackInfo<v8::Value>& args) { in Inval()
84 void Global::Print(const v8::FunctionCallbackInfo<v8::Value>& args) { in Print()
104 void Global::SetTimeout(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetTimeout()
/external/v8/src/
Dd8.h272 static void PostMessageOut(const v8::FunctionCallbackInfo<v8::Value>& args);
374 static void PerformanceNow(const v8::FunctionCallbackInfo<v8::Value>& args);
376 static void RealmCurrent(const v8::FunctionCallbackInfo<v8::Value>& args);
377 static void RealmOwner(const v8::FunctionCallbackInfo<v8::Value>& args);
378 static void RealmGlobal(const v8::FunctionCallbackInfo<v8::Value>& args);
379 static void RealmCreate(const v8::FunctionCallbackInfo<v8::Value>& args);
380 static void RealmNavigate(const v8::FunctionCallbackInfo<v8::Value>& args);
382 const v8::FunctionCallbackInfo<v8::Value>& args);
383 static void RealmDispose(const v8::FunctionCallbackInfo<v8::Value>& args);
384 static void RealmSwitch(const v8::FunctionCallbackInfo<v8::Value>& args);
[all …]
Dd8-posix.cc221 static bool GetTimeouts(const v8::FunctionCallbackInfo<v8::Value>& args, in GetTimeouts()
459 void Shell::System(const v8::FunctionCallbackInfo<v8::Value>& args) { in System()
546 void Shell::ChangeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in ChangeDirectory()
571 void Shell::SetUMask(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetUMask()
647 void Shell::MakeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in MakeDirectory()
680 void Shell::RemoveDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in RemoveDirectory()
700 void Shell::SetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetEnvironment()
730 void Shell::UnsetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) { in UnsetEnvironment()
Dd8.cc395 int RealmIndexOrThrow(const v8::FunctionCallbackInfo<v8::Value>& args,
797 const v8::FunctionCallbackInfo<v8::Value>& args, in RealmIndexOrThrow()
817 void Shell::PerformanceNow(const v8::FunctionCallbackInfo<v8::Value>& args) { in PerformanceNow()
829 void Shell::RealmCurrent(const v8::FunctionCallbackInfo<v8::Value>& args) { in RealmCurrent()
839 void Shell::RealmOwner(const v8::FunctionCallbackInfo<v8::Value>& args) { in RealmOwner()
857 void Shell::RealmGlobal(const v8::FunctionCallbackInfo<v8::Value>& args) { in RealmGlobal()
866 const v8::FunctionCallbackInfo<v8::Value>& args, int index, in CreateRealm()
895 void Shell::DisposeRealm(const v8::FunctionCallbackInfo<v8::Value>& args, in DisposeRealm()
907 void Shell::RealmCreate(const v8::FunctionCallbackInfo<v8::Value>& args) { in RealmCreate()
914 const v8::FunctionCallbackInfo<v8::Value>& args) { in RealmCreateAllowCrossRealmAccess()
[all …]
/external/v8/src/extensions/
Dtrigger-failure-extension.h19 const v8::FunctionCallbackInfo<v8::Value>& args);
21 const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
Dtrigger-failure-extension.cc41 const v8::FunctionCallbackInfo<v8::Value>& args) { in TriggerCheckFalse()
47 const v8::FunctionCallbackInfo<v8::Value>& args) { in TriggerAssertFalse()
53 const v8::FunctionCallbackInfo<v8::Value>& args) { in TriggerSlowAssertFalse()
Dexternalize-string-extension.h18 static void Externalize(const v8::FunctionCallbackInfo<v8::Value>& args);
19 static void IsOneByte(const v8::FunctionCallbackInfo<v8::Value>& args);
Dexternalize-string-extension.cc60 const v8::FunctionCallbackInfo<v8::Value>& args) { in Externalize()
128 const v8::FunctionCallbackInfo<v8::Value>& args) { in IsOneByte()
Dfree-buffer-extension.h19 static void FreeBuffer(const v8::FunctionCallbackInfo<v8::Value>& args);
Dignition-statistics-extension.h22 const v8::FunctionCallbackInfo<v8::Value>& args);
Dstatistics-extension.h18 static void GetCounters(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/v8/samples/
Dshell.cc54 void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
55 void Read(const v8::FunctionCallbackInfo<v8::Value>& args);
56 void Load(const v8::FunctionCallbackInfo<v8::Value>& args);
57 void Quit(const v8::FunctionCallbackInfo<v8::Value>& args);
58 void Version(const v8::FunctionCallbackInfo<v8::Value>& args);
141 void Print(const v8::FunctionCallbackInfo<v8::Value>& args) { in Print()
162 void Read(const v8::FunctionCallbackInfo<v8::Value>& args) { in Read()
190 void Load(const v8::FunctionCallbackInfo<v8::Value>& args) { in Load()
219 void Quit(const v8::FunctionCallbackInfo<v8::Value>& args) { in Quit()
230 void Version(const v8::FunctionCallbackInfo<v8::Value>& args) { in Version()
/external/v8/src/wasm/
Dwasm-js.cc61 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower) { in GetFirstArgumentAsModule()
120 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower) { in GetFirstArgumentAsBytes()
163 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower) { in GetSecondArgumentAsImports()
176 void WebAssemblyCompile(const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyCompile()
199 void WebAssemblyValidate(const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyValidate()
219 void WebAssemblyModule(const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyModule()
238 void WebAssemblyModuleImports(const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyModuleImports()
251 void WebAssemblyModuleExports(const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyModuleExports()
265 const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyModuleCustomSections()
293 void WebAssemblyInstance(const v8::FunctionCallbackInfo<v8::Value>& args) { in WebAssemblyInstance()
[all …]
/external/pdfium/fxjs/
Dcfxjse_arguments.h18 CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo, in CFXJSE_Arguments()
34 const v8::FunctionCallbackInfo<v8::Value>* m_pInfo;
/external/chromium-libpac/src/
Dproxy_resolver_v8.cc210 bool GetHostnameArgument(const v8::FunctionCallbackInfo<v8::Value>& args, std::string* hostname) { in GetHostnameArgument()
553 static void AlertCallback(const v8::FunctionCallbackInfo<v8::Value>& args) { in AlertCallback()
576 const v8::FunctionCallbackInfo<v8::Value>& args) { in MyIpAddressCallback()
600 const v8::FunctionCallbackInfo<v8::Value>& args) { in MyIpAddressExCallback()
621 static void DnsResolveCallback(const v8::FunctionCallbackInfo<v8::Value>& args) { in DnsResolveCallback()
648 const v8::FunctionCallbackInfo<v8::Value>& args) { in DnsResolveExCallback()
675 const v8::FunctionCallbackInfo<v8::Value>& args) { in SortIpAddressListCallback()
693 static void IsInNetExCallback(const v8::FunctionCallbackInfo<v8::Value>& args) { in IsInNetExCallback()
/external/pdfium/fpdfsdk/javascript/
DJS_Define.h107 const v8::FunctionCallbackInfo<v8::Value>& info) { in JSMethod()
133 const v8::FunctionCallbackInfo<v8::Value>& info) { \
140 const v8::FunctionCallbackInfo<v8::Value>& info) { \
419 const v8::FunctionCallbackInfo<v8::Value>& info) { in JSGlobalFunc()
439 const v8::FunctionCallbackInfo<v8::Value>& info) { \

12