OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:contextId
(Results
1 - 8
of
8
) sorted by null
/external/webkit/WebCore/html/
HTMLCanvasElement.idl
40
[Custom] DOMObject getContext(in DOMString
contextId
);
/external/webkit/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp
55
const UString&
contextId
= args.at(0).toString(exec);
58
if (
contextId
== "experimental-webgl" ||
contextId
== "webkit-3d") {
81
return toJS(exec, globalObject(), WTF::getPtr(canvas->getContext(
contextId
, attrs.get())));
/external/webkit/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp
51
String
contextId
= toWebCoreString(args[0]);
54
if (
contextId
== "experimental-webgl" ||
contextId
== "webkit-3d") {
77
CanvasRenderingContext* result = imp->getContext(
contextId
, attrs.get());
V8DocumentCustom.cpp
96
String
contextId
= toWebCoreString(args[0]);
100
CanvasRenderingContext* result = imp->getCSSCanvasContext(
contextId
, name, width, height);
/external/webkit/WebKit/chromium/src/js/
DebuggerAgent.js
738
* @param {number}
contextId
Id of the inspected page global context.
740
devtools.DebuggerAgent.prototype.setContextId_ = function(
contextId
)
742
this.contextId_ =
contextId
;
760
if (
contextId
=== debuggerAgent.contextId_)
[
all
...]
/prebuilt/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar
org.eclipse.jface_3.4.2.M20090107-0800.jar
/external/webkit/WebCore/dom/
Document.idl
223
[V8Custom] DOMObject getCSSCanvasContext(in DOMString
contextId
, in DOMString name, in long width, in long height);
Completed in 300 milliseconds