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

1 2

  /external/chromium/base/
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/chromium/chrome/browser/ui/webui/
cookies_tree_model_adapter.cc 44 void CookiesTreeModelAdapter::Bind(const std::string& tree_id,
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 88 Callback Bind() {
  /external/chromium/net/udp/
udp_socket_libevent.cc 230 int UDPSocketLibevent::Bind(const IPEndPoint& address) {
243 rv = bind(socket_, addr, addr_len);
udp_socket_win.cc 201 int UDPSocketWin::Bind(const IPEndPoint& address) {
214 rv = bind(socket_, addr, addr_len);
  /external/chromium/third_party/libjingle/source/talk/base/
asyncsocket.h 68 virtual int Bind(const SocketAddress& addr) {
69 return socket_->Bind(addr);
physicalsocketserver.cc 176 int Bind(const SocketAddress& addr) {
179 int err = ::bind(s_, (sockaddr*)&saddr, sizeof(saddr));
    [all...]
win32socketserver.cc 316 int Win32Socket::Bind(const SocketAddress& addr) {
323 int err = ::bind(socket_, reinterpret_cast<sockaddr*>(&saddr), sizeof(saddr));
  /external/v8/src/
mksnapshot.cc 49 int32_t* Bind(const char* name) {
regexp-macro-assembler-irregexp.cc 61 void RegExpMacroAssemblerIrregexp::Bind(Label* l) {
440 Bind(&backtrack_);
platform-posix.cc 375 bool Bind(const int port);
398 bool POSIXSocket::Bind(const int port) {
408 int status = bind(socket_,
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.cc 164 Bind(request, connection_id);
475 void DevToolsHttpProtocolHandler::Bind(net::URLRequest* request,
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 199 class Bind {
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 13 template < typename T > struct Bind
41 typename TestSel::template Bind < Type >::type TestClass;
visibility.cpp 638 void Bind(const P1& p1) {
644 Bind(Version());
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.cc 113 __ bind(&start_label_); // And then continue from here.
160 void RegExpMacroAssemblerIA32::Bind(Label* label) {
161 __ bind(label);
186 __ bind(&not_at_start);
293 __ bind(&fallthrough);
328 __ bind(&loop);
345 __ bind(&loop_increment);
354 __ bind(&fail);
360 __ bind(&success);
417 __ bind(&fallthrough)
    [all...]
  /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/chromium/testing/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 383 virtual StoreRef Bind(Store store, Loc LV, SVal V) {
384 return StoreRef(bind(getRegionBindings(store), LV, V).asStore(), *this);
387 RegionBindingsRef bind(RegionBindingsConstRef B, Loc LV, SVal V);
404 /// \param CL The compound literal to bind (the binding key).
408 /// \param V The value to bind to the compound literal.
413 /// BindStruct - Bind a compound value to a structure.
417 /// BindVector - Bind a compound value to a vector.
1780 RegionStoreManager::bind(RegionBindingsConstRef B, Loc L, SVal V) { function in class:RegionStoreManager
    [all...]

Completed in 5209 milliseconds

1 2