HomeSort by relevance Sort by last modified time
    Searched refs:bind (Results 1 - 25 of 668) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
function-bind.js 28 // Tests the Function.prototype.bind (ES 15.3.4.5) method.
35 var f = foo.bind(foo);
39 f = foo.bind(foo, 2);
43 f = foo.bind(foo, 2, 2);
47 f = foo.bind(foo, 2, 2, 2);
53 f = foo.bind(foo, 1, 2, 3, 4, 5, 6, 7, 8, 9);
68 f = f_bound_this.bind(obj);
72 f = f_bound_this.bind(obj, 2);
80 f = foo.bind(foo);
82 f = foo.bind(foo).bind(foo).bind(foo).bind(foo)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WrappedResourceRequest.h 50 bind(resourceRequest);
55 bind(resourceRequest);
58 void bind(WebCore::ResourceRequest& resourceRequest) function in class:WebKit::WrappedResourceRequest
64 void bind(const WebCore::ResourceRequest& resourceRequest) function in class:WebKit::WrappedResourceRequest
66 bind(*const_cast<WebCore::ResourceRequest*>(&resourceRequest));
WrappedResourceResponse.h 50 bind(resourceResponse);
55 bind(resourceResponse);
58 void bind(WebCore::ResourceResponse& resourceResponse) function in class:WebKit::WrappedResourceResponse
64 void bind(const WebCore::ResourceResponse& resourceResponse) function in class:WebKit::WrappedResourceResponse
66 bind(*const_cast<WebCore::ResourceResponse*>(&resourceResponse));
  /bionic/libc/arch-arm/syscalls/
bind.S 5 ENTRY(bind) function
14 END(bind)
  /bionic/libc/arch-x86/syscalls/
bind.S 5 .type bind, @function
6 .globl bind
9 bind: label
  /external/dbus/dbus/
dbus-server-win.c 64 const char *bind; local
68 bind = dbus_address_entry_get_value (entry, "bind");
72 *server_p = _dbus_server_new_for_tcp_socket (host, bind, port,
  /external/clang/test/SemaCXX/
member-pointer.cpp 183 template <class F> void bind(F f); // expected-note 12 {{candidate template ignored}}
199 bind(&nonstat); // expected-error {{no matching function for call}}
200 bind(&A::nonstat); // expected-error {{no matching function for call}}
202 bind(&mixed); // expected-error {{no matching function for call}}
203 bind(&A::mixed); // expected-error {{no matching function for call}}
205 bind(&stat); // expected-error {{no matching function for call}}
206 bind(&A::stat); // expected-error {{no matching function for call}}
250 bind(&nonstat);
251 bind(&B::nonstat);
253 bind(&mixed)
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 42 * s.bind(...);
44 * s.bind(...);
52 * s.bind(...);
54 * s.bind(...);
91 * Bind positional integer value to compiled SQLite3 statement.
96 public native void bind(int pos, int value) throws SQLite.Exception; method in class:Stmt
99 * Bind positional long value to compiled SQLite3 statement.
104 public native void bind(int pos, long value) throws SQLite.Exception; method in class:Stmt
107 * Bind positional double value to compiled SQLite3 statement.
112 public native void bind(int pos, double value) throws SQLite.Exception method in class:Stmt
120 public native void bind(int pos, byte[] value) throws SQLite.Exception; method in class:Stmt
128 public native void bind(int pos, String value) throws SQLite.Exception; method in class:Stmt
135 public native void bind(int pos) throws SQLite.Exception; method in class:Stmt
    [all...]
  /external/skia/gpu/src/
GrGLIndexBuffer.cpp 47 void GrGLIndexBuffer::bind() const { function in class:GrGLIndexBuffer
60 this->bind();
80 this->bind();
88 this->bind();
104 this->bind();
123 this->bind();
GrGLVertexBuffer.cpp 46 void GrGLVertexBuffer::bind() const { function in class:GrGLVertexBuffer
59 this->bind();
79 this->bind();
89 this->bind();
103 this->bind();
122 this->bind();
  /external/stlport/test/unit/
boost_check.cpp 15 ../../../stlport/functional:64: error: 'boost::bind' has not been declared
27 #include <boost/bind.hpp>
  /ndk/tests/device/test-gnustl-full/unit/
boost_check.cpp 15 ../../../stlport/functional:64: error: 'boost::bind' has not been declared
27 #include <boost/bind.hpp>
  /ndk/tests/device/test-stlport/unit/
boost_check.cpp 15 ../../../stlport/functional:64: error: 'boost::bind' has not been declared
27 #include <boost/bind.hpp>
  /external/bluetooth/bluez/tools/
kword.h 38 int bind; member in struct:rfcomm_opts
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotProxy.js 43 setTimeout(returnResult.bind(this), 0);
52 setTimeout(returnResult.bind(this), 0);
75 filter = filter.bind(this._snapshot);
78 return new WebInspector.HeapSnapshotProviderProxy(createProvider.bind(this), this._extractEdgeData.bind(this));
86 filter = filter.bind(this._snapshot);
89 return new WebInspector.HeapSnapshotProviderProxy(createProvider.bind(this), this._extractNodeData.bind(this));
120 setTimeout(parse.bind(this), 0);
140 setTimeout(returnResult.bind(this), 0)
    [all...]
InjectedFakeWorker.js 41 this.postMessage = bind(impl.postMessage, impl);
42 this.terminate = bind(impl.terminate, impl);
54 this.addEventListener = bind(impl.channel.port1.addEventListener, impl.channel.port1);
55 this.removeEventListener = bind(impl.channel.port1.removeEventListener, impl.channel.port1);
56 this.dispatchEvent = bind(impl.channel.port1.dispatchEvent, impl.channel.port1);
102 iframeElement.onload = bind(this._onWorkerFrameLoaded, this, iframeElement, url, code);
107 window.addEventListener("load", bind(this._attachWorkerFrameToDocument, this, iframeElement), false);
134 handleException: bind(this._handleException, this),
147 var wrappedCallback = bind(self._callbackWrapper, self, callback);
154 workerFrame.addEventListener = bind(this._addEventListener, this)
335 function bind(func, thisObject) function
    [all...]
Script.js 51 DebuggerAgent.getScriptSource(this.sourceID, didGetScriptSource.bind(this));
62 DebuggerAgent.editScriptSource(this.sourceID, newSource, didEditScriptSource.bind(this));
  /libcore/luni/src/test/java/libcore/java/nio/channels/
ServerSocketChannelTest.java 27 ssc.socket().bind(null);
  /system/core/nexus/
NetworkManager.cpp 181 ControllerBinding *bind = lookupBinding(c); local
183 if (!bind->getCurrentCfg())
184 bind->setCurrentCfg(new InterfaceConfig(true));
186 bind->getCurrentCfg()->setIp(addr);
187 bind->getCurrentCfg()->setNetmask(net);
188 bind->getCurrentCfg()->setGateway(gw);
189 bind->getCurrentCfg()->setBroadcast(brd);
190 bind->getCurrentCfg()->setDns(0, dns1);
191 bind->getCurrentCfg()->setDns(1, dns2);
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpClientConnection.java 55 public void bind( method in class:DefaultHttpClientConnection
72 super.bind(socket, params);
DefaultHttpServerConnection.java 55 public void bind(final Socket socket, final HttpParams params) throws IOException { method in class:DefaultHttpServerConnection
70 super.bind(socket, params);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
util.js 9 function bind(obj, func) { function
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
lighttpd.conf 44 server.bind = "localhost"
  /system/bluetooth/tools/
sock_shutdown_bug_tcp.c 36 ret = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
54 ret = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
  /external/skia/gpu/include/
GrGLIndexBuffer.h 54 void bind() const;

Completed in 1453 milliseconds

1 2 3 4 5 6 7 8 91011>>