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

1 2 3 4

  /external/chromium/base/
bind_unittest.cc 5 #include "base/bind.h"
9 // to use bind.h in a headerfile for getting the Callback types.
10 #error "base/bind.h should avoid pulling in callback.h by default."
140 // Some test functions that we can Bind to.
226 Callback<int(void)> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1);
229 Callback<int(int)> c1 = Bind(&Sum, 32, 16, 8, 4, 2);
232 Callback<int(int,int)> c2 = Bind(&Sum, 32, 16, 8, 4);
235 Callback<int(int,int,int)> c3 = Bind(&Sum, 32, 16, 8);
238 Callback<int(int,int,int,int)> c4 = Bind(&Sum, 32, 16);
241 Callback<int(int,int,int,int,int)> c5 = Bind(&Sum, 32)
    [all...]
bind.h 2 // pump.py bind.h.pump
20 // Though Bind()'s result is meant to be stored in a Callback<> type, it
23 // discern the correct specialization of Callback<>, Bind would need to
31 // classes). However, it is avoidable in Bind if we return the result
38 Bind(Sig f) {
45 Bind(Sig f, const P1& p1) {
53 Bind(Sig f, const P1& p1, const P2& p2) {
61 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3) {
69 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4) {
79 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Bind.java 24 * IQ packet used by Smack to bind a resource and to obtain the jid assigned by the server.
25 * There are two ways to bind a resource. One is simply sending an empty Bind packet where the
30 * <a href=http://www.xmpp.org/specs/rfc3920.html#bind>link</a>.
34 public class Bind extends IQ {
39 public Bind() {
61 buf.append("<bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\">");
68 buf.append("</bind>");
  /external/webkit/Source/WebKit/wx/bindings/python/samples/
simple.py 51 self.Bind(wx.EVT_BUTTON, self.OnOpenButton, btn)
55 self.Bind(wx.EVT_BUTTON, self.OnPrevPageButton, btn)
59 self.Bind(wx.EVT_BUTTON, self.OnNextPageButton, btn)
63 self.Bind(wx.EVT_BUTTON, self.OnStopButton, btn)
67 self.Bind(wx.EVT_BUTTON, self.OnRefreshPageButton, btn)
77 self.Bind(wx.EVT_COMBOBOX, self.OnLocationSelect, self.location)
78 self.location.Bind(wx.EVT_KEY_UP, self.OnLocationKey)
79 self.location.Bind(wx.EVT_CHAR, self.IgnoreReturn)
88 self.webview.Bind(wx.webview.EVT_WEBVIEW_LOAD, self.OnStateChanged)
  /external/chromium/chrome/browser/ui/webui/
cookies_tree_model_adapter.h 28 void Bind(const std::string& tree_id, CookiesTreeModel* model);
cookies_tree_model_adapter.cc 44 void CookiesTreeModelAdapter::Bind(const std::string& tree_id,
  /external/chromium/net/udp/
udp_server_socket.cc 18 return socket_.Bind(address);
udp_socket_libevent.h 32 // Bind the address/port for this socket to |address|. This is generally
35 int Bind(const IPEndPoint& address);
udp_socket_win.h 34 // Bind the address/port for this socket to |address|. This is generally
37 int Bind(const IPEndPoint& address);
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 88 Callback Bind() {
  /external/chromium/third_party/libjingle/source/talk/base/
asyncsocket.h 68 virtual int Bind(const SocketAddress& addr) {
69 return socket_->Bind(addr);
basicpacketsocketfactory.cc 62 LOG(LS_ERROR) << "UDP bind failed with error "
80 LOG(LS_ERROR) << "TCP bind failed with error "
104 LOG(LS_ERROR) << "TCP bind failed with error "
142 ret = socket->Bind(local_address);
146 ret = socket->Bind(talk_base::SocketAddress(local_address.ip(), port));
asyncudpsocket.cc 44 if (socket->Bind(address)) {
45 LOG(LS_INFO) << "Failed to bind UDP socket " << socket->GetError();
win32socketserver.h 60 virtual int Bind(const SocketAddress& addr);
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 68 ASTMatchFinder::BindKind Bind)
75 Bind(Bind),
216 // returns, i.e. if no match is found or 'Bind' is 'BK_All'.
222 if (Bind != ASTMatchFinder::BK_All) {
257 const ASTMatchFinder::BindKind Bind;
334 TraversalKind Traversal, BindKind Bind) {
340 Bind);
348 MaxDepth, Traversal, Bind);
360 TraversalKind Traversal, BindKind Bind) {
    [all...]
  /external/smack/src/org/jivesoftware/smack/
SASLAuthentication.java 24 import org.jivesoftware.smack.packet.Bind;
50 * <p>Once the user has been authenticated with SASL, it is necessary to bind a resource for
229 // proceed to bind a resource
265 // Bind a resource for this connection and
311 // proceed to bind a resource
347 // Bind a resource for this connection and
412 // Bind a resource for this connection and
424 // Wait until server sends response containing the <bind> element
441 Bind bindResource = new Bind();
    [all...]
SASLAuthentication.java.orig 24 import org.jivesoftware.smack.packet.Bind;
50 * <p>Once the user has been authenticated with SASL, it is necessary to bind a resource for
229 // proceed to bind a resource
265 // Bind a resource for this connection and
311 // proceed to bind a resource
347 // Bind a resource for this connection and
412 // Bind a resource for this connection and
424 // Wait until server sends response containing the <bind> element
441 Bind bindResource = new Bind();
    [all...]
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
SchedGui.py 49 self.scroll_panel.Bind(wx.EVT_PAINT, self.on_paint)
50 self.scroll_panel.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
51 self.scroll_panel.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint)
53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefinedAssignmentChecker.cpp 26 : public Checker<check::Bind> {
BoolAssignmentChecker.cpp 25 class BoolAssignmentChecker : public Checker< check::Bind > {
  /external/v8/src/
regexp-macro-assembler-tracer.h 44 virtual void Bind(Label* label);
  /external/v8/test/cctest/
test-regexp.cc 775 m.Bind(&fail);
832 m.Bind(&fail);
889 m.Bind(&fail);
893 m.Bind(&backtrack);
929 m.Bind(&nomatch);
935 m.Bind(&missing_match);
976 m.Bind(&nomatch);
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetAudition.py 79 self.segList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnQueueSegment)
80 self.segList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnSegListClick)
126 self.Bind(wx.EVT_BUTTON, self.OnQueueSegmentViaBut, id=self.btnQueue.GetId())
127 self.Bind(wx.EVT_BUTTON, self.OnCancelNQueue, id=self.btnCancelNQueue.GetId())
128 self.Bind(wx.EVT_BUTTON, self.OnStop, id=self.btnStop.GetId())
129 self.Bind(wx.EVT_BUTTON, self.OnQueueCancelCurrent, id=self.btnQueueCancelCurrent.GetId())
130 self.Bind(wx.EVT_BUTTON, self.OnPause, id=self.btnPause.GetId())
131 self.Bind(wx.EVT_BUTTON, self.OnMuteAll, id=self.btnMuteAll.GetId())
132 self.Bind(wx.EVT_BUTTON, self.OnUnMuteAll, id=self.btnUnMuteAll.GetId())
133 self.Bind(wx.EVT_BUTTON, self.OnMuteOrg, id=self.btnMuteOrg.GetId())
    [all...]
JetCtrls.py 251 self.btn.Bind(wx.EVT_BUTTON, self.OnBrowse, self.btn)
318 self.btn.Bind(wx.EVT_BUTTON, self.OnBrowse, self.btn)
416 self.spin.Bind(wx.EVT_SPIN_UP, self.OnSpinUp, self.spin)
417 self.spin.Bind(wx.EVT_SPIN_DOWN, self.OnSpinDown, self.spin)
419 self.time[0].Bind(wx.EVT_SET_FOCUS, self.OnFocusMeasure, self.time[0] )
420 self.time[1].Bind(wx.EVT_SET_FOCUS, self.OnFocusBeat, self.time[1] )
421 self.time[2].Bind(wx.EVT_SET_FOCUS, self.OnFocusTick, self.time[2] )
423 self.time[0].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[0] )
424 self.time[1].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[1] )
425 self.time[2].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[2] )
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.h 84 void Bind(net::URLRequest* request, int connection_id);

Completed in 539 milliseconds

1 2 3 4