HomeSort by relevance Sort by last modified time
    Searched defs:Jid (Results 1 - 6 of 6) sorted by null

  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.h 36 //! The Jid class encapsulates and provides parsing help for Jids
37 //! A Jid consists of three parts. The node, the domain and the resource.
41 //! The node and resource are both optional. A valid jid is defined to have
42 //! a domain. A bare jid is defined to not have a resource and a full jid
44 class Jid {
46 explicit Jid();
47 explicit Jid(const std::string & jid_string);
48 explicit Jid(const std::string & node_name,
51 explicit Jid(bool special, const std::string & special_string)
    [all...]
jid.cc 28 #include "talk/xmpp/jid.h"
41 Jid::Jid() : data_(NULL) {
44 Jid::Jid(bool is_special, const std::string & special) {
48 Jid::Jid(const std::string & jid_string) {
92 // If the domain is empty we have a non-valid jid and we should empty
117 Jid::Jid(const std::string & node_name
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
jid.h 37 // The Jid class encapsulates and provides parsing help for Jids. A Jid
42 // The node and resource are both optional. A valid jid is defined to have
43 // a domain. A bare jid is defined to not have a resource and a full jid
45 class Jid {
47 explicit Jid();
48 explicit Jid(const std::string& jid_string);
49 explicit Jid(const std::string& node_name,
52 ~Jid();
    [all...]
jid.cc 28 #include "talk/xmpp/jid.h"
41 Jid::Jid() {
44 Jid::Jid(const std::string& jid_string) {
71 Jid::Jid(const std::string& node_name,
80 void Jid::ValidateOrReset() {
96 std::string Jid::Str() const {
114 Jid::~Jid()
    [all...]
  /external/chromium/net/tools/testserver/
xmppserver.py 156 class Jid(object):
157 """Simple struct for an XMPP jid (essentially an e-mail address with
173 return Jid(self.username, self.domain)
233 # The id and jid attributes are filled in later.
237 ' <jid/>'
332 self._jid = Jid(self._username, self._domain, full_resource)
334 response.getElementsByTagName('jid')[0].appendChild(jid_text)
430 def HandshakeDone(self, jid):
431 self._jid = jid
  /external/chromium_org/sync/tools/testserver/
xmppserver.py 155 class Jid(object):
156 """Simple struct for an XMPP jid (essentially an e-mail address with
172 return Jid(self.username, self.domain)
237 # The id and jid attributes are filled in later.
241 ' <jid/>'
345 self._jid = Jid(self._username, self._domain, full_resource)
347 response.getElementsByTagName('jid')[0].appendChild(jid_text)
442 def HandshakeDone(self, jid):
443 if jid:
444 self._jid = jid
    [all...]

Completed in 205 milliseconds