Home
last modified time | relevance | path

Searched refs:STR_EMPTY (Results 1 – 18 of 18) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/xmpp/
Dconstants.cc37 const Jid JID_EMPTY(STR_EMPTY);
284 const buzz::QName QN_NAME(true, STR_EMPTY, "name");
285 const buzz::QName QN_AFFILIATION(true, STR_EMPTY, "affiliation");
286 const buzz::QName QN_ROLE(true, STR_EMPTY, "role");
306 const QName QN_ENCODING(true, STR_EMPTY, STR_ENCODING);
307 const QName QN_VERSION(true, STR_EMPTY, STR_VERSION);
308 const QName QN_TO(true, STR_EMPTY, "to");
309 const QName QN_FROM(true, STR_EMPTY, "from");
310 const QName QN_TYPE(true, STR_EMPTY, "type");
311 const QName QN_ID(true, STR_EMPTY, "id");
[all …]
Djid.cc45 data_ = is_special ? new Data(special, STR_EMPTY, STR_EMPTY) : NULL; in Jid()
49 if (jid_string == STR_EMPTY) { in Jid()
56 std::string resource_name = (slash == std::string::npos ? STR_EMPTY : in Jid()
145 return STR_EMPTY; in Str()
152 ASSERT(data_->domain_name_ != STR_EMPTY); in Str()
188 return Jid(data_->node_name_, data_->domain_name_, STR_EMPTY); in BareJid()
292 return STR_EMPTY; in prepNode()
297 return STR_EMPTY; in prepNode()
351 return STR_EMPTY; in prepResource()
386 return STR_EMPTY; in prepDomain()
[all …]
Djid.h74 const std::string & node() const { return !data_ ? STR_EMPTY : data_->node_name_; } in node()
76 const std::string & domain() const { return !data_ ? STR_EMPTY : data_->domain_name_; } in domain()
78 const std::string & resource() const { return !data_ ? STR_EMPTY : data_->resource_name_; } in resource()
Dxmpplogintask.cc67 iqId_(STR_EMPTY), in XmppLoginTask()
69 fullJid_(STR_EMPTY), in XmppLoginTask()
70 streamId_(STR_EMPTY), in XmppLoginTask()
263 if (pctx_->requested_resource_ != STR_EMPTY) { in Advance()
Dxmppengineimpl.cc61 requested_resource_(STR_EMPTY), in XmppEngineImpl()
355 SendStanzaError(stanza, XSE_FEATURE_NOT_IMPLEMENTED, STR_EMPTY); in IncomingStanza()
Dxmppengineimpl_iq.cc237 if (text != STR_EMPTY) { in SendStanzaError()
Dxmppclient.cc132 d_->engine_->SetUser(buzz::Jid(settings.user(), settings.host(), STR_EMPTY)); in Connect()
/external/chromium/third_party/libjingle/source/talk/xmllite/
Dxmlnsstack.cc59 const std::pair<std::string, bool> NS_NOT_FOUND(STR_EMPTY, false);
60 const std::pair<std::string, bool> EMPTY_NS_FOUND(STR_EMPTY, true);
83 if (prefix == STR_EMPTY) in NsForPrefix()
84 return &(STR_EMPTY); // default namespace in NsForPrefix()
103 if (isattr ? ns == STR_EMPTY : PrefixMatchesNs(STR_EMPTY, ns)) in PrefixForNs()
104 return std::make_pair(STR_EMPTY, true); in PrefixForNs()
114 return std::make_pair(STR_EMPTY, false); // none found in PrefixForNs()
120 if (prefix == STR_EMPTY) in FormatQName()
184 return std::make_pair(STR_EMPTY, false); in AddNewPrefix()
Dxmlelement.cc43 const QName QN_EMPTY(true, STR_EMPTY, STR_EMPTY);
44 const QName QN_XMLNS(true, STR_EMPTY, STR_XMLNS);
161 return STR_EMPTY; in BodyText()
166 if (text == STR_EMPTY) { in SetBodyText()
198 return STR_EMPTY; in Attr()
332 return STR_EMPTY; in TextNamed()
405 if (text == STR_EMPTY) in AddText()
Dxmlparser.cc216 *prefix ? std::string(prefix) : STR_EMPTY, in StartNamespace()
247 return QName(STR_EMPTY, qname); in ResolveQName()
251 result = xmlnsstack_.NsForPrefix(STR_EMPTY); in ResolveQName()
Dqname.cc123 return STR_EMPTY; in QName_Namespace()
133 if (data_->namespace_ == STR_EMPTY) in Merged()
Dxmlconstants.h39 #define STR_EMPTY XmlConstants::str_empty() macro
Dxmlprinter.cc83 xmlnsStack_.AddXmlns(STR_EMPTY, pattr->Value()); in PrintElement()
119 if (*i == STR_EMPTY) in PrintElement()
/external/chromium/third_party/libjingle/overrides/talk/xmllite/
Dqname.cc34 return STR_EMPTY; in QName_Namespace()
44 if (namespace_ == STR_EMPTY) in Merged()
/external/chromium/third_party/libjingle/source/talk/examples/call/
Dstatus.h134 return STR_EMPTY; in QuietStatus()
138 return STR_EMPTY; in QuietStatus()
/external/chromium/third_party/libjingle/source/talk/session/phone/
Dmediasessionclient.cc448 std::string name = GetXmlAttr(element, QN_NAME, buzz::STR_EMPTY); in ParseGingleAudioCodec()
461 std::string name = GetXmlAttr(element, QN_NAME, buzz::STR_EMPTY); in ParseGingleVideoCodec()
608 buzz::STR_EMPTY); in ParsePayloadTypeParameters()
610 buzz::STR_EMPTY); in ParsePayloadTypeParameters()
656 std::string name = GetXmlAttr(elem, QN_NAME, buzz::STR_EMPTY); in ParseJingleAudioCodec()
673 std::string name = GetXmlAttr(elem, QN_NAME, buzz::STR_EMPTY); in ParseJingleVideoCodec()
/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dsessionmessages.cc188 msg->initiator = GetXmlAttr(jingle, QN_INITIATOR, buzz::STR_EMPTY); in ParseJingleSessionMessage()
856 if (nick != buzz::STR_EMPTY) { in ParseSessionNotify()
863 if (ssrc != buzz::STR_EMPTY) { in ParseSessionNotify()
Dsession.cc805 if (term.debug_reason != buzz::STR_EMPTY) { in OnTerminateMessage()