Searched refs:Bind (Results 1 - 25 of 84) sorted by relevance

1234

/external/chromium/base/
H A Dbind_unittest.cc140 // 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);
244 Callback<int(int,int,int,int,int,int)> c6 = Bind(&Sum);
263 Closure normal_cb = Bind(&VoidFunc0);
264 Closure method_cb = Bind(
[all...]
H A Dbind.h20 // 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) { function in namespace:base
45 Bind(Sig f, const P1& p1) { function in namespace:base
53 Bind(Sig f, const P1& p1, const P2& p2) { function in namespace:base
61 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3) { function in namespace:base
69 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4) { function in namespace:base
79 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4, function in namespace:base
90 Bind(Si function in namespace:base
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DBind.java25 * There are two ways to bind a resource. One is simply sending an empty Bind packet where the
34 public class Bind extends IQ { class in inherits:IQ
39 public Bind() { method in class:Bind
/external/webkit/Source/WebKit/wx/bindings/python/samples/
H A Dsimple.py51 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/net/udp/
H A Dudp_server_socket.cc18 return socket_.Bind(address);
H A Dudp_socket_libevent.h32 // Bind the address/port for this socket to |address|. This is generally
35 int Bind(const IPEndPoint& address);
H A Dudp_socket_win.h34 // Bind the address/port for this socket to |address|. This is generally
37 int Bind(const IPEndPoint& address);
/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp88 Callback Bind() { function in namespace:PR11931
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp68 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; member in class:clang::ast_matchers::internal::__anon3669::MatchChildASTVisitor
334 TraversalKind Traversal, BindKind Bind) {
340 Bind);
348 MaxDepth, Traversal, Bind);
360 TraversalKind Traversal, BindKind Bind) {
63 MatchChildASTVisitor(const DynTypedMatcher *Matcher, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder, int MaxDepth, ASTMatchFinder::TraversalKind Traversal, ASTMatchFinder::BindKind Bind) argument
331 memoizedMatchesRecursively(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, int MaxDepth, TraversalKind Traversal, BindKind Bind) argument
357 matchesRecursively(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, int MaxDepth, TraversalKind Traversal, BindKind Bind) argument
371 matchesChildOf(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, TraversalKind Traversal, BindKind Bind) argument
380 matchesDescendantOf(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, BindKind Bind) argument
[all...]
/external/smack/src/org/jivesoftware/smack/
H A DSASLAuthentication.java24 import org.jivesoftware.smack.packet.Bind;
265 // Bind a resource for this connection and
347 // Bind a resource for this connection and
412 // Bind a resource for this connection and
441 Bind bindResource = new Bind();
449 Bind response = (Bind) collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
H A DSASLAuthentication.java.orig24 import org.jivesoftware.smack.packet.Bind;
265 // Bind a resource for this connection and
347 // Bind a resource for this connection and
412 // Bind a resource for this connection and
441 Bind bindResource = new Bind();
449 Bind response = (Bind) collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py49 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/chromium/third_party/libjingle/source/talk/base/
H A Dasyncsocket.h68 virtual int Bind(const SocketAddress& addr) { function in class:talk_base::AsyncSocketAdapter
69 return socket_->Bind(addr);
H A Dbasicpacketsocketfactory.cc142 ret = socket->Bind(local_address);
146 ret = socket->Bind(talk_base::SocketAddress(local_address.ip(), port));
H A Dasyncudpsocket.cc44 if (socket->Bind(address)) {
/external/chromium/chrome/browser/ui/webui/
H A Dcookies_tree_model_adapter.h28 void Bind(const std::string& tree_id, CookiesTreeModel* model);
H A Dcookies_tree_model_adapter.cc44 void CookiesTreeModelAdapter::Bind(const std::string& tree_id, function in class:CookiesTreeModelAdapter
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp26 : public Checker<check::Bind> {
H A DBoolAssignmentChecker.cpp25 class BoolAssignmentChecker : public Checker< check::Bind > {
H A DCheckerDocumentation.cpp45 check::Bind,
136 /// check::Bind
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp13 template < typename T > struct Bind struct in struct:TemplateSel
41 typename TestSel::template Bind < Type >::type TestClass;
/external/v8/test/cctest/
H A Dtest-regexp.cc775 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);
982 m.Bind(&missing_match);
1024 m.Bind(&fail);
1026 m.Bind(
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetAudition.py79 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(w
[all...]
H A DJetCtrls.py251 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(w
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddevtools_http_protocol_handler.h84 void Bind(net::URLRequest* request, int connection_id);

Completed in 640 milliseconds

1234