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

  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMCustomEvent.cpp 43 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue)
48 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
  /external/chromium_org/third_party/WebKit/public/web/
WebDOMCustomEvent.h 43 BLINK_EXPORT void initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData);
  /external/chromium_org/third_party/WebKit/Source/core/events/
CustomEvent.idl 31 [Custom] void initCustomEvent([Default=Undefined] optional DOMString typeArg,
CustomEvent.cpp 48 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail)
CustomEvent.h 51 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
CustomEventTest.cpp 110 customEvent.initCustomEvent("blah", false, false, WebSerializedScriptValue::serialize(v8::Boolean::New(isolate, true)));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
user_event_detail.js 169 evt.initCustomEvent(this.category, true, true, this);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js     [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromePageScript.js 54 cvox.UserEventDetail.prototype.createEventObject=function(){var a=document.createEvent("CustomEvent");a.initCustomEvent(this.category,!0,!0,this);return a};goog.debug={};goog.debug.Error=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,goog.debug.Error);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a))};goog.inherits(goog.debug.Error,Error);goog.debug.Error.prototype.name="CustomError";goog.dom={};goog.dom.NodeType={ELEMENT:1,ATTRIBUTE:2,TEXT:3,CDATA_SECTION:4,ENTITY_REFERENCE:5,ENTITY:6,PROCESSING_INSTRUCTION:7,COMMENT:8,DOCUMENT:9,DOCUMENT_TYPE:10,DOCUMENT_FRAGMENT:11,NOTATION:12};goog.string={};goog.string.DETECT_DOUBLE_ESCAPING=!1;goog.string.Unicode={NBSP:"\u00a0"};goog.string.startsWith=function(a,b){return 0==a.lastIndexOf(b,0)};goog.string.endsWith=function(a,b){var c=a.length-b.length;return 0<=c&&a.indexOf(b,c)==c};goog.string.caseInsensitiveStartsWith=function(a,b){return 0==goog.string.caseInsensitiveCompare(b,a.substr(0,b.length))};goog.string.caseInsensitiveEndsWith=function(a,b){return 0==goog.string.caseInsensitiveCompare(b,a.substr(a.length-b.length,b.length))};
    [all...]

Completed in 1182 milliseconds