/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/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,
|
collected_cookies_ui_delegate.cc | 246 allowed_cookies_adapter_.Bind("allowed-cookies", 248 blocked_cookies_adapter_.Bind("blocked-cookies",
|
/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/llvm/lib/CodeGen/ |
ELF.h | 71 static ELFSym *getGV(const GlobalValue *GV, unsigned Bind, 75 Sym->setBind(Bind); 116 static ELFSym *getUndefGV(const GlobalValue *GV, unsigned Bind) { 119 Sym->setBind(Bind); 148 assert(X == (X & 0xF) && "Bind value out of range!");
|
/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);
|
socket.h | 157 virtual int Bind(const SocketAddress& addr) = 0;
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
UndefinedAssignmentChecker.cpp | 26 : public Checker<check::Bind> {
|
/external/v8/src/ |
regexp-macro-assembler-tracer.h | 44 virtual void Bind(Label* label);
|
regexp-macro-assembler-irregexp.h | 55 virtual void Bind(Label* label);
|
regexp-macro-assembler-tracer.cc | 57 void RegExpMacroAssemblerTracer::Bind(Label* label) { 58 PrintF("label[%08x]: (Bind)\n", LabelToInt(label)); 59 assembler_->Bind(label);
|
/external/v8/test/cctest/ |
test-regexp.cc | 768 m.Bind(&fail); 825 m.Bind(&fail); 880 m.Bind(&fail); 884 m.Bind(&backtrack); 920 m.Bind(&nomatch); 926 m.Bind(&missing_match); 967 m.Bind(&nomatch); 973 m.Bind(&missing_match); [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...] |
JetCreator.py | 127 self.eventList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnEventListClick)
128 self.segList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnSegListClick)
129 self.segList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnSegmentUpdate)
130 self.eventList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnEventUpdate)
151 self.Bind(wx.EVT_BUTTON, self.OnSegmentAdd, id=self.btnAddSeg.GetId())
152 self.Bind(wx.EVT_BUTTON, self.OnSegmentUpdate, id=self.btnRevSeg.GetId())
153 self.Bind(wx.EVT_BUTTON, self.OnSegmentDelete, id=self.btnDelSeg.GetId())
154 self.Bind(wx.EVT_BUTTON, self.OnSegmentsMove, id=self.btnMoveSeg.GetId())
156 self.Bind(wx.EVT_BUTTON, self.OnSelectAll, id=self.btnQueueAll.GetId())
157 self.Bind(wx.EVT_BUTTON, self.OnDeselectAll, id=self.btnDequeueAll.GetId()) [all...] |
/external/chromium/chrome/browser/debugger/ |
devtools_http_protocol_handler.h | 84 void Bind(net::URLRequest* request, int connection_id);
|
/external/v8/src/arm/ |
regexp-macro-assembler-arm.h | 51 virtual void Bind(Label* label);
|