Searched refs:room (Results 1 - 25 of 40) sorted by relevance

12

/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/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/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dchatroommodule.h85 //! Password should be empty for a room that doesn't require a password
86 //! If the room doesn't exist, the server will create an "Instant Room" if the
104 //! Returns the number of members in the room
165 //! If the room is anonymous, this returns JID_EMPTY
178 //! User successfully entered the room
180 //! The nickname confliced with somebody already in the room
182 //! A password is required to enter the room
186 //! The user is not a member of a member-only room
190 //! The room has the maximum number of users already
192 //! The room ha
[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...]
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...]
/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/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/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
H A DAPPRTCAppClient.h59 - (void)connectToRoom:(NSURL*)room;
/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/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/examples/objc/AppRTCDemo/ios/
H A DAPPRTCViewController.m153 NSString* room = textField.text;
154 if ([room length] == 0) {
161 [NSString stringWithFormat:@"https://apprtc.appspot.com/?r=%@", room];
/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/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...]
H A Dcallclient.h148 void InviteToMuc(const std::string& user, const std::string& room);
151 void LeaveMuc(const std::string& room);
200 void OnMucInviteReceived(const buzz::Jid& inviter, const buzz::Jid& room,
/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/third_party/boringssl/linux-arm/crypto/sha/
H A Dsha256-armv4.S59 str r1,[sp,#17*4] @ make room for r1
74 str r1,[sp,#17*4] @ make room for r1
115 str r1,[sp,#17*4] @ make room for r1
130 str r1,[sp,#17*4] @ make room for r1
171 str r1,[sp,#17*4] @ make room for r1
186 str r1,[sp,#17*4] @ make room for r1
227 str r1,[sp,#17*4] @ make room for r1
242 str r1,[sp,#17*4] @ make room for r1
283 str r1,[sp,#17*4] @ make room for r1
298 str r1,[sp,#17*4] @ make room fo
[all...]
/external/libvorbis/doc/
H A D07-floor1.tex280 14) [room] = [highroom] * 2
284 15) [room] = [lowroom] * 2
293 20) if ( [val] is greater than or equal to [room] ) \{
305 \} else [val] is less than [room] \{
/external/openssl/crypto/sha/asm/
H A Dsha256-armv4.S59 str r1,[sp,#17*4] @ make room for r1
74 str r1,[sp,#17*4] @ make room for r1
115 str r1,[sp,#17*4] @ make room for r1
130 str r1,[sp,#17*4] @ make room for r1
171 str r1,[sp,#17*4] @ make room for r1
186 str r1,[sp,#17*4] @ make room for r1
227 str r1,[sp,#17*4] @ make room for r1
242 str r1,[sp,#17*4] @ make room for r1
283 str r1,[sp,#17*4] @ make room for r1
298 str r1,[sp,#17*4] @ make room fo
[all...]

Completed in 4601 milliseconds

12