HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 226 - 250 of 6482) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_bridge_snippets.cpp 16 toDataURL: function() { ... },
17 assignToHTMLImageElement: function(element) { ... }
41 function loadImage()
72 function runExample() {
83 connect(function);
86 function myInterestingScriptFunction() { ... }
98 myQObject.somethingChanged.connect(thisObject, function)
102 var onClicked = function() { print(this.x); };
106 myQObject.somethingChanged.disconnect(thisObject, function);
109 connect(function);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPluginSiteDataManager.h 38 WK_EXPORT void WKPluginSiteDataManagerGetSitesWithData(WKPluginSiteDataManagerRef manager, void* context, WKPluginSiteDataManagerGetSitesWithDataFunction function);
48 WK_EXPORT void WKPluginSiteDataManagerClearSiteData(WKPluginSiteDataManagerRef manager, WKArrayRef sites, WKClearSiteDataFlags flags, uint64_t maxAgeInSeconds, void* context, WKPluginSiteDataManagerClearSiteDataFunction function);
49 WK_EXPORT void WKPluginSiteDataManagerClearAllSiteData(WKPluginSiteDataManagerRef manager, void* context, WKPluginSiteDataManagerClearSiteDataFunction function);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke_void_0.pass.cpp 12 // class function<R(ArgTypes...)>
39 // function
41 std::function<void ()> r1(f_void_0);
46 // function pointer
49 std::function<void ()> r1(fp);
57 std::function<void ()> r1(a0);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
statistics.h 41 struct function;
48 extern void statistics_counter_event (struct function *, const char *, int);
49 extern void statistics_histogram_event (struct function *, const char *, int);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
statistics.h 41 struct function;
48 extern void statistics_counter_event (struct function *, const char *, int);
49 extern void statistics_histogram_event (struct function *, const char *, int);
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
statistics.h 41 struct function;
48 extern void statistics_counter_event (struct function *, const char *, int);
49 extern void statistics_histogram_event (struct function *, const char *, int);
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
statistics.h 41 struct function;
48 extern void statistics_counter_event (struct function *, const char *, int);
49 extern void statistics_histogram_event (struct function *, const char *, int);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeNodeStream.js 17 org.antlr.runtime.tree.CommonTreeNodeStream = function(adaptor,
55 StreamIterator: function() {
61 hasNext: function() {
65 next: function() {
74 remove: function() {
83 fillBuffer: function(t) {
115 getNodeIndex: function(node) {
133 addNavigationNode: function(ttype) {
154 get: function(i) {
161 LT: function(k)
    [all...]
TreeNodeStream.js 2 org.antlr.runtime.tree.TreeNodeStream = function() {};
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksViewer.js 27 loaded: function() {
94 urlPromptButtonClicked: function(e) {
98 _didCountLeaksFiles: function(fileCount) {
103 _didLoadLeaksFile: function(leaksText) {
107 _didLoadRecentBuilds: function(builds) {
112 _didParseLeaksFile: function(profile) {
119 _displayURLPrompt: function() {
126 _loadLeaksFromURL: function(url) {
133 _loadingIndicatorText: function() {
141 _loadingStatusChanged: function() {
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 95 public function CommonTreeNodeStream(tree:Object, adaptor:TreeAdaptor = null, initialBufferSize:int = DEFAULT_INITIAL_BUFFER_SIZE) {
97 // return uninitalized for static resuse function
114 public static function reuse(parent:CommonTreeNodeStream, start:int, stop:int):CommonTreeNodeStream {
128 protected function fillBuffer():void {
134 public function fillBufferTo(t:Object):void {
158 protected function getNodeIndex(node:Object):int {
175 protected function addNavigationNode(ttype:int):void {
196 public function getNode(i:int):Object {
203 public function LT(k:int):Object {
220 public function get currentSymbol():Object { return LT(1);
    [all...]
  /external/webkit/LayoutTests/storage/
hash-change-with-xhr.js 17 function stopIntervals()
25 function stopTest(message)
36 function updateDatabase()
39 db.transaction(function(transaction) {
40 transaction.executeSql(UPDATE_DATA, [], function() {}, errorHandler);
41 }, errorHandler, function() {
46 function checkForSuccess()
54 function errorHandler(tx, error)
60 function sendXhr()
67 function invokeBack(
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
maximum-age.js 13 function checkPosition(p) {
21 function checkError(e) {
35 navigator.geolocation.getCurrentPosition(function(p) {
38 }, function(e) {
43 function testZeroMaximumAge() {
48 navigator.geolocation.getCurrentPosition(function(p) {
51 }, function(e) {
57 function testNonZeroMaximumAge() {
62 navigator.geolocation.getCurrentPosition(function(p) {
65 }, function(e)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js 31 WebInspector.RemoteObject = function(objectId, type, description, hasChildren)
39 WebInspector.RemoteObject.fromPrimitiveValue = function(value)
44 WebInspector.RemoteObject.fromLocalObject = function(value)
49 WebInspector.RemoteObject.resolveNode = function(node, callback)
51 function mycallback(error, object)
64 WebInspector.RemoteObject.fromPayload = function(payload)
72 WebInspector.RemoteObject.type = function(remoteObject)
78 if (type !== "object" && type !== "function")
105 isError: function()
110 getOwnProperties: function(callback
    [all...]
DOMAgent.js 32 WebInspector.DOMNode = function(doc, payload) {
83 hasAttributes: function()
88 hasChildNodes: function()
93 nodeType: function()
98 nodeName: function()
103 setNodeName: function(name, callback)
108 localName: function()
113 nodeValue: function()
118 setNodeValue: function(value, callback)
123 getAttribute: function(name
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-for.js 33 function TestWithProxies(test, x, y, z) {
35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
41 function TestForIn(properties, handler) {
45 function TestForIn2(create, properties, handler) {
53 enumerate: function() { return [0, "a"] }
57 enumerate: function() { return this.enumerate2() },
58 enumerate2: function() { return [null, "a"] }
62 getPropertyNames: function() { return ["a", "b", "c", "d", "e"] },
63 getPropertyDescriptor: function(k)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 35 emptyFunction: function() { },
36 K: function(x) { return x }
45 create: function() {
50 function klass() {
59 var subclass = function() { };
78 addMethods: function(source) {
90 value = (function(m) {
91 return function() { return ancestor[m].apply(this, arguments) };
106 Object.extend = function(destination, source) {
113 inspect: function(object)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 39 public function Lexer(input:CharStream = null, state:RecognizerSharedState = null) {
44 public override function reset():void {
65 public function nextToken():Token {
105 public function skip():void {
110 public function mTokens():void {
111 // abstract function
116 public function set charStream(input:CharStream):void {
122 public function get charStream():CharStream {
126 public override function get sourceName():String {
135 public function emitToken(token:Token):void
    [all...]
EarlyExitException.as 34 public function EarlyExitException(decisionNumber:int, input:IntStream) {
MismatchedTreeNodeException.as 7 public function MismatchedTreeNodeException(expecting:int, input:TreeNodeStream) {
12 public function toString():String {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonTokenStream.js 8 org.antlr.runtime.CommonTokenStream = function(tokenSource, channel) {
20 org.antlr.runtime.TokenStream = function() {};
26 setTokenSource: function(tokenSource) {
37 fillBuffer: function() {
81 consume: function() {
91 skipOffTokenChannels: function(i) {
99 skipOffTokenChannelsReverse: function(i) {
112 setTokenTypeChannel: function(ttype, channel) {
119 discardTokenType: function(ttype) {
126 discardOffChannelTokens: function(b)
    [all...]
RecognizerSharedState.js 8 org.antlr.runtime.RecognizerSharedState = function() {
  /bionic/libc/arch-mips/bionic/
__get_sp.S 32 .type __get_sp, @function
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
21 var CustomEvent = function() {};
23 function(eventType, bubbles, cancellable, detail) {};
31 var url = function(s) {};
35 * @param {EventListener|function(Event):(boolean|undefined)} listener
40 Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
21 var CustomEvent = function() {};
23 function(eventType, bubbles, cancellable, detail) {};
31 var url = function(s) {};
35 * @param {EventListener|function(Event):(boolean|undefined)} listener
40 Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 91011>>