Searched defs:room (Results 1 - 24 of 24) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/muc/
H A DInvitationListener.java27 * A listener that is fired anytime an invitation to join a MUC room is received.
34 * Called when the an invitation to join a MUC room is received.<p>
36 * If the room is password-protected, the invitee will receive a password to use to join
37 * the room. If the room is members-only, the the invitee may be added to the member list.
40 * @param room the room that invitation refers to.
43 * @param password the password to use when joining the room.
46 public abstract void invitationReceived(Connection conn, String room, String inviter, String reason, argument
H A DRoomInfo.java30 * Represents the room information that was discovered using Service Discovery. It's possible to
31 * obtain information about a room before joining the room but only for rooms that are public (i.e.
39 * JID of the room. The node of the JID is commonly used as the ID of the room or name.
41 private String room; field in class:RoomInfo
43 * Description of the room.
47 * Last known subject of the room.
51 * Current number of occupants in the room.
55 * A room i
[all...]
H A DMultiUserChat.java70 * room. A room could have many occupants with different affiliation and roles.
87 private String room; field in class:MultiUserChat
148 * Creates a new multi user chat with the specified connection and room name. Note: no
150 * {@link #join(String) join} the chat room. On some server implementations,
151 * the room will not be created until the first person joins it.<p>
154 * for the XMPP server example.com). You must ensure that the room address you're
158 * @param room the name of the room in the form "roomName@service", where
162 public MultiUserChat(Connection connection, String room) { argument
241 getRoomInfo(Connection connection, String room) argument
777 decline(Connection conn, String room, String inviter, String reason) argument
2671 fireInvitationListeners(String room, String inviter, String reason, String password, Message message) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DInvitationRequest.java30 private String room; field in class:InvitationRequest
33 public InvitationRequest(String inviter, String room, String reason) { argument
35 this.room = room;
44 return room;
H A DTransferRequest.java30 private String room; field in class:TransferRequest
33 public TransferRequest(String inviter, String room, String reason) { argument
35 this.room = room;
44 return room;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfifo_char.cc93 size_t room = size_ - avail_; local
94 len = std::min(len, room);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dmucroomlookuptask_unittest.cc44 const buzz::MucRoomInfo& room) {
45 last_room = room;
104 "<room-name>ponies</room-name>"
105 "<room-domain>domain.com</room-domain>"
118 " <room-name>ponies</room-name>"
119 " <room-domain>domain.com</room
43 OnResult(buzz::MucRoomLookupTask* task, const buzz::MucRoomInfo& room) argument
[all...]
H A Dchatroommodule_unittest.cc72 os<<"failure(room locked)";
117 void ChatroomEnteredStatus(XmppChatroomModule* room, argument
119 RTC_UNUSED(room);
126 void ChatroomExitedStatus(XmppChatroomModule* room, argument
128 RTC_UNUSED(room);
134 void MemberEntered(XmppChatroomModule* room, argument
136 RTC_UNUSED(room);
140 void MemberExited(XmppChatroomModule* room, argument
142 RTC_UNUSED(room);
146 void MemberChanged(XmppChatroomModule* room, argument
152 MessageReceived(XmppChatroomModule* room, const XmlElement& message) argument
[all...]
H A Dmucroomlookuptask.cc131 // <room-name>0b48ad092c893a53b7bfc87422caf38e93978798e</room-name>
132 // <room-domain>hangout.google.com</room-domain>
148 MucRoomInfo room; local
149 room.jid = Jid(item_elem->Attr(buzz::QN_JID));
150 if (!room.jid.IsValid()) {
158 room.name = room_name_elem->BodyText();
164 room.domain = room_domain_elem->BodyText();
170 room
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DRoomInvitation.java61 * JID of the room to join if offer is accepted.
63 private String room; field in class:RoomInvitation
92 return room;
166 else if ("room".equals(elementName)) {
167 invitation.room = parser.nextText();
H A DRoomTransfer.java61 * JID of the room to join if offer is accepted.
63 private String room; field in class:RoomTransfer
92 return room;
166 else if ("room".equals(elementName)) {
167 invitation.room = parser.nextText();
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A Dvectorbuffer.h79 if(bytesbetween > 0) //bytesbetween is room between bottom and top
80 { //therefore free room is subracted from free space
82 const TInt room = C - bytesbetween - topsize; local
83 return room;
93 const TInt room = -bytesbetween - topsize; //free is space between pointers local
94 return room;
101 const TInt room = Unreserved() - bytesnew; local
102 return room;
/external/chromium_org/third_party/icu/source/common/
H A Dunorm_it.c134 /* move array contents up to make room */
161 /* move array contents up to make room */
194 /* make capacity/4 room at the end of the arrays */
195 int32_t limit, capacity, room; local
200 room=capacity/4;
201 if(room>(capacity-limit)) {
202 /* move array contents to make room */
203 moveContentsTowardStart(api, uni->chars, uni->states, room);
219 room=unorm_next(iter, uni->chars+limit, capacity-limit, uni->mode, 0, TRUE, NULL, &errorCode);
221 if(room<
265 int32_t start, capacity, room; local
[all...]
/external/tinyxml/
H A Dxmltest.cpp362 const char* str = "\t<?xml version=\"1.0\" standalone=\"no\" ?>\t<room doors='2'>\n"
366 "</room>";
372 TiXmlHandle roomHandle = docHandle.FirstChildElement( "room" );
373 TiXmlHandle commentHandle = docHandle.FirstChildElement( "room" ).FirstChild();
374 TiXmlHandle textHandle = docHandle.FirstChildElement( "room" ).ChildElement( "door", 0 ).FirstChild();
375 TiXmlHandle door0Handle = docHandle.FirstChildElement( "room" ).ChildElement( 0 );
376 TiXmlHandle door1Handle = docHandle.FirstChildElement( "room" ).ChildElement( 1 );
387 TiXmlElement* room = roomHandle.Element(); local
388 assert( room );
389 TiXmlAttribute* doors = room
426 TiXmlElement* room = roomHandle.Element(); local
[all...]
/external/tremolo/Tremolo/
H A Dfloor1.c340 int room=(hiroom<loroom?hiroom:loroom)<<1; local
344 if(val>=room){
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrix.h212 * mode while reserving room for 2 non zeros per inner vector. It is strongly recommended to first
1126 Index room = m_outerIndex[outer+1] - m_outerIndex[outer]; local
1128 if(innerNNZ>=room)
/external/libvorbis/lib/
H A Dfloor1.c1020 int room=(hiroom<loroom?hiroom:loroom)<<1; local
1024 if(val>=room){
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc152 " call [jid] [bw] Initiates a call to the user[/room] with the\n"
154 " vcall [jid] [bw] Initiates a video call to the user[/room] with\n"
158 " join [room_jid] Joins a multi-user-chat with room JID.\n"
159 " ljoin [room_name] Joins a MUC by looking up JID from room name.\n"
160 " invite user [room] Invites a friend to a multi-user-chat.\n"
161 " leave [room] Leaves a multi-user-chat.\n"
848 options->is_muc ? "room" : "online friend",
1127 console_->PrintLine("Please provide a room name or room jid.");
1131 std::string room local
1186 OnRoomLookupResponse(buzz::MucRoomLookupTask* task, const buzz::MucRoomInfo& room) argument
1239 OnMucInviteReceived(const buzz::Jid& inviter, const buzz::Jid& room, const std::vector<buzz::AvailableMediaEntry>& avail) argument
1304 LeaveMuc(const std::string& room) argument
1357 InviteToMuc(const std::string& given_user, const std::string& room) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dedit.c431 int room, plen, add_space; local
469 room = sizeof(cmdbuf) - 1 - cmdbuf_len;
470 if (room < len)
471 len = room;
472 add_space = count == 1 && len < room;
/external/wpa_supplicant_8/src/utils/
H A Dedit.c431 int room, plen, add_space; local
469 room = sizeof(cmdbuf) - 1 - cmdbuf_len;
470 if (room < len)
471 len = room;
472 add_space = count == 1 && len < room;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dedit.c431 int room, plen, add_space; local
469 room = sizeof(cmdbuf) - 1 - cmdbuf_len;
470 if (room < len)
471 len = room;
472 add_space = count == 1 && len < room;
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3con.c4194 int room = ss->sec.ci.sendBuf.space - ss->sec.ci.sendBuf.len; local
4201 if (ss->sec.ci.sendBuf.space < MAX_SEND_BUF_LENGTH && room < bytes) {
4206 room = ss->sec.ci.sendBuf.space - ss->sec.ci.sendBuf.len;
4214 while (bytes > room) {
4215 if (room > 0)
4217 room);
4218 ss->sec.ci.sendBuf.len += room;
4223 bytes -= room;
4224 src += room;
4225 room
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 3037 milliseconds