/external/chromium/third_party/libjingle/source/talk/xmpp/ |
constants.cc | 37 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...] |
jid.cc | 45 data_ = is_special ? new Data(special, STR_EMPTY, STR_EMPTY) : NULL; 49 if (jid_string == STR_EMPTY) { 56 std::string resource_name = (slash == std::string::npos ? STR_EMPTY : 145 return STR_EMPTY; 152 ASSERT(data_->domain_name_ != STR_EMPTY); 188 return Jid(data_->node_name_, data_->domain_name_, STR_EMPTY); 292 return STR_EMPTY; 297 return STR_EMPTY; 351 return STR_EMPTY; [all...] |
jid.h | 74 const std::string & node() const { return !data_ ? STR_EMPTY : data_->node_name_; } 76 const std::string & domain() const { return !data_ ? STR_EMPTY : data_->domain_name_; } 78 const std::string & resource() const { return !data_ ? STR_EMPTY : data_->resource_name_; }
|
xmpplogintask.cc | 67 iqId_(STR_EMPTY), 69 fullJid_(STR_EMPTY), 70 streamId_(STR_EMPTY), 263 if (pctx_->requested_resource_ != STR_EMPTY) {
|
xmppengineimpl.cc | 61 requested_resource_(STR_EMPTY), 355 SendStanzaError(stanza, XSE_FEATURE_NOT_IMPLEMENTED, STR_EMPTY);
|
xmppengineimpl_iq.cc | 237 if (text != STR_EMPTY) {
|
xmppclient.cc | 132 d_->engine_->SetUser(buzz::Jid(settings.user(), settings.host(), STR_EMPTY));
|
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
xmlnsstack.cc | 59 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) 84 return &(STR_EMPTY); // default namespace 103 if (isattr ? ns == STR_EMPTY : PrefixMatchesNs(STR_EMPTY, ns)) 104 return std::make_pair(STR_EMPTY, true); 114 return std::make_pair(STR_EMPTY, false); // none found 120 if (prefix == STR_EMPTY) 184 return std::make_pair(STR_EMPTY, false) [all...] |
xmlconstants.h | 39 #define STR_EMPTY XmlConstants::str_empty() 50 static const std::string & str_empty();
|
xmlelement.cc | 43 const QName QN_EMPTY(true, STR_EMPTY, STR_EMPTY); 44 const QName QN_XMLNS(true, STR_EMPTY, STR_XMLNS); 161 return STR_EMPTY; 166 if (text == STR_EMPTY) { 198 return STR_EMPTY; 332 return STR_EMPTY; 405 if (text == STR_EMPTY)
|
qname.cc | 123 return STR_EMPTY; 133 if (data_->namespace_ == STR_EMPTY)
|
xmlparser.cc | 216 *prefix ? std::string(prefix) : STR_EMPTY, 247 return QName(STR_EMPTY, qname); 251 result = xmlnsstack_.NsForPrefix(STR_EMPTY);
|
xmlprinter.cc | 83 xmlnsStack_.AddXmlns(STR_EMPTY, pattr->Value()); 119 if (*i == STR_EMPTY)
|
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
qname.cc | 34 return STR_EMPTY; 44 if (namespace_ == STR_EMPTY)
|
/cts/tests/tests/util/src/android/util/cts/ |
XmlEncodingTest.java | 46 private static final String STR_EMPTY = ""; 91 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 95 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 123 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 127 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 155 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 159 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 187 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 191 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 255 mVec.add(atts.getLength() + STR_EMPTY); [all...] |
XmlTest.java | 62 private static final String STR_EMPTY = ""; 105 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 109 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 172 mVec.add(atts.getLength() + STR_EMPTY); 219 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 223 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 254 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 258 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)); 286 assertEquals(STR_EMPTY, dc.mVec.elementAt(13)); 290 assertEquals(STR_EMPTY, dc.mVec.elementAt(17)) [all...] |
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
status.h | 134 return STR_EMPTY; 138 return STR_EMPTY;
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
mediasessionclient.cc | 448 std::string name = GetXmlAttr(element, QN_NAME, buzz::STR_EMPTY); 461 std::string name = GetXmlAttr(element, QN_NAME, buzz::STR_EMPTY); 608 buzz::STR_EMPTY); 610 buzz::STR_EMPTY); 656 std::string name = GetXmlAttr(elem, QN_NAME, buzz::STR_EMPTY); 673 std::string name = GetXmlAttr(elem, QN_NAME, buzz::STR_EMPTY); [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
sessionmessages.cc | 188 msg->initiator = GetXmlAttr(jingle, QN_INITIATOR, buzz::STR_EMPTY); 856 if (nick != buzz::STR_EMPTY) { 863 if (ssrc != buzz::STR_EMPTY) { [all...] |
session.cc | 805 if (term.debug_reason != buzz::STR_EMPTY) { [all...] |