/external/smack/src/org/jivesoftware/smackx/muc/ |
Affiliate.java | 40 private String nick; field in class:Affiliate 47 this.nick = item.getNick(); 55 this.nick = item.getNick(); 96 return nick;
|
Occupant.java | 40 private String nick; field in class:Occupant 47 this.nick = item.getNick(); 59 this.nick = StringUtils.parseResource(presence.getFrom()); 102 return nick; 118 result = 17 * result + (nick != null ? nick.hashCode() : 0);
|
/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
presencepushtask.cc | 210 const XmlElement* nick = stanza->FirstNamed(QN_NICKNAME); local 211 if (nick) { 212 s->set_nick(nick->BodyText());
|
callclient.cc | 132 " rmute [nick] Remote mute another participant.\n" 133 " block [nick] Block another participant.\n" 162 " nick [nick] Sets the nick.\n" 291 const std::string& nick = words[1]; local 292 hangout_pubsub_client_->RemoteMute(nick); 296 const std::string& nick = words[1]; local 297 hangout_pubsub_client_->BlockMedia(nick); 358 } else if (command == "nick") { 896 const std::string& nick = mucs_[jid]->local_jid().resource(); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
presencereceivetask.cc | 151 const XmlElement* nick = stanza->FirstNamed(QN_NICKNAME); local 152 if (nick) { 153 presence_status->set_nick(nick->BodyText());
|
hangoutpubsubclient.h | 58 // Represents a PubSub state change. Usually, the key is the nick, 64 // The nick of the user changing the state. 66 // The nick of the user whose state is changing. 74 // A client tied to a specific MUC jid and local nick. Provides ways 81 const std::string& nick); 84 const std::string& nick() const { return nick_; } function in class:buzz::HangoutPubSubClient 89 // Signal (nick, was_presenting, is_presenting) 91 // Signal (nick, was_muted, is_muted) 93 // Signal (nick, was_muted, is_muted) 95 // Signal (nick, was_paused, is_paused [all...] |
hangoutpubsubclient_unittest.cc | 29 const std::string& nick, bool was_presenting, bool is_presenting) { 30 last_presenter_nick = nick; 36 const std::string& nick, bool was_muted, bool is_muted) { 37 last_audio_muted_nick = nick; 43 const std::string& nick, bool was_muted, bool is_muted) { 44 last_video_muted_nick = nick; 50 const std::string& nick, bool was_paused, bool is_paused) { 51 last_video_paused_nick = nick; 57 const std::string& nick, bool was_recording, bool is_recording) { 58 last_recording_nick = nick; 230 std::string nick; member in class:HangoutPubSubClientTest [all...] |
presencestatus.h | 59 const std::string& nick() const { return nick_; } function in class:buzz::PresenceStatus 77 void set_nick(const std::string& nick) { nick_ = nick; }
|
/external/chromium_org/net/third_party/mozilla_security_manager/ |
nsPKCS12Blob.cpp | 90 char *nick = NULL; local 102 nick = CERT_MakeCANickname(cert); 103 if (!nick) { 108 PORT_Strlen(nick) == old_nick->len && 109 !PORT_Strncmp((char *)old_nick->data, nick, old_nick->len)) { 110 PORT_Free(nick); 115 VLOG(1) << "using nickname " << nick; 118 PORT_Free(nick); 122 ret_nick->data = (unsigned char *)nick; 123 ret_nick->len = PORT_Strlen(nick); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/examples/plus/ |
presencepushtask.cc | 166 const XmlElement *nick = stanza->FirstNamed(kQnNickname); local 167 if (nick) { 168 std::string user_nick = nick->BodyText();
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
MUCAdmin.java | 90 private String nick; field in class:MUCAdmin.Item 136 * Returns the <room@service/nick> by which an occupant is identified within the context 152 return nick; 187 * Sets the <room@service/nick> by which an occupant is identified within the context 200 * @param nick the new nickname of an occupant that is changing his/her nickname. 202 public void setNick(String nick) { 203 this.nick = nick; 216 buf.append(" nick=\"").append(getNick()).append("\"");
|
MUCOwner.java | 116 private String nick; field in class:MUCOwner.Item 160 * Returns the <room@service/nick> by which an occupant is identified within the context 176 return nick; 211 * Sets the <room@service/nick> by which an occupant is identified within the context 224 * @param nick the new nickname of an occupant that is changing his/her nickname. 226 public void setNick(String nick) { 227 this.nick = nick; 252 buf.append(" nick=\"").append(getNick()).append("\"");
|
MUCUser.java | 376 private String nick; field in class:MUCUser.Item 422 * Returns the <room@service/nick> by which an occupant is identified within the context 438 return nick; 473 * Sets the <room@service/nick> by which an occupant is identified within the context 486 * @param nick the new nickname of an occupant that is changing his/her nickname. 488 public void setNick(String nick) { 489 this.nick = nick; 502 buf.append(" nick=\"").append(getNick()).append("\"");
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/ |
irclib.py | 447 self.nick(self.nickname) 478 """Get the (real) nick name. 481 track of nick changes, so it might not be the nick name that 542 if command == "nick": 546 # Record the nickname in case the client changed nick 676 def invite(self, nick, channel): 678 self.send_raw(" ".join(["INVITE", nick, channel]).strip()) 693 def kick(self, channel, nick, comment=""): 695 self.send_raw("KICK %s %s%s" % (channel, nick, (comment and (" :" + comment))) 731 def nick(self, newnick): member in class:ServerConnection [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar | |