/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlconstants.cc | 32 const char STR_EMPTY[] = ""; 40 const StaticQName QN_XMLNS = { STR_EMPTY, STR_XMLNS };
|
xmlconstants.h | 35 extern const char STR_EMPTY[];
|
xmlnsstack.cc | 70 return std::make_pair(STR_EMPTY, false); 80 if (prefix == STR_EMPTY) 81 return std::make_pair(STR_EMPTY, true); // default namespace 83 return std::make_pair(STR_EMPTY, false); // none found 98 if (isattr ? ns == STR_EMPTY : PrefixMatchesNs(STR_EMPTY, ns)) 99 return std::make_pair(STR_EMPTY, true); 109 return std::make_pair(STR_EMPTY, false); // none found 114 if (prefix == STR_EMPTY) 175 return std::make_pair(STR_EMPTY, false) [all...] |
xmlprinter.cc | 76 ns_stack_->AddXmlns(STR_EMPTY, attr->Value()); 113 if (*i == STR_EMPTY) {
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
constants.cc | 109 const StaticQName QN_HANGOUT_ID = { STR_EMPTY, "hangout-id" }; 129 { STR_EMPTY, "create-activity" }; 312 const StaticQName QN_NAME = { STR_EMPTY, "name" }; 313 const StaticQName QN_AFFILIATION = { STR_EMPTY, "affiliation" }; 314 const StaticQName QN_ROLE = { STR_EMPTY, "role" }; 327 const StaticQName QN_ENCODING = { STR_EMPTY, STR_ENCODING }; 328 const StaticQName QN_VERSION = { STR_EMPTY, STR_VERSION }; 329 const StaticQName QN_TO = { STR_EMPTY, "to" }; 330 const StaticQName QN_FROM = { STR_EMPTY, "from" }; 331 const StaticQName QN_TYPE = { STR_EMPTY, "type" } [all...] |
pingtask.cc | 26 if (!MatchResponseIq(stanza, Jid(STR_EMPTY), task_id())) { 63 MakeIq(buzz::STR_GET, Jid(STR_EMPTY), task_id()));
|
jingleinfotask.cc | 118 if (host != STR_EMPTY && host != STR_EMPTY) { 130 if (host != STR_EMPTY) {
|
jid.cc | 50 resource_name_ = (slash == std::string::npos ? STR_EMPTY : 98 return STR_EMPTY; 105 ASSERT(domain_name_ != STR_EMPTY); 143 return Jid(node_name_, domain_name_, STR_EMPTY); 193 return STR_EMPTY; 198 return STR_EMPTY; 250 return STR_EMPTY; 282 return STR_EMPTY; 286 return STR_EMPTY;
|
rostermoduleimpl.cc | 53 else if (STR_EMPTY == input) 77 *output = STR_EMPTY; 81 *output = STR_EMPTY; 100 } else if (ask == STR_EMPTY) 253 return STR_EMPTY; 273 return STR_EMPTY; 283 if (status != STR_EMPTY) { 355 if (type != STR_EMPTY && type != "unavailable") 422 if (name == STR_EMPTY) 469 return STR_EMPTY; [all...] |
/external/chromium_org/jingle/notifier/listener/ |
xml_element_util.cc | 25 const buzz::QName elementQName(buzz::STR_EMPTY, name); 26 const buzz::QName boolAttrQName(buzz::STR_EMPTY, "bool"); 34 const buzz::QName elementQName(buzz::STR_EMPTY, name); 35 const buzz::QName intAttrQName(buzz::STR_EMPTY, "int"); 43 const buzz::QName elementQName(buzz::STR_EMPTY, name); 44 const buzz::QName dataAttrQName(buzz::STR_EMPTY, "data");
|
send_ping_task.cc | 65 if (MatchResponseIq(stanza, buzz::Jid(buzz::STR_EMPTY), ping_task_id_)) { 74 buzz::Jid(buzz::STR_EMPTY),
|
push_notifications_listen_task.cc | 61 const buzz::QName kQnChannel(buzz::STR_EMPTY, "channel");
|
/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) {
|
/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)
|
/external/chromium_org/remoting/jingle_glue/ |
jingle_info_request.cc | 33 buzz::STR_GET, buzz::STR_EMPTY, iq_body.Pass(), 76 if (host != buzz::STR_EMPTY && port_str != buzz::STR_EMPTY) { 96 if (host != buzz::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;
|