HomeSort by relevance Sort by last modified time
    Searched refs:room (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
InvitationRequest.java 30 private String room; field in class:InvitationRequest
33 public InvitationRequest(String inviter, String room, String reason) {
35 this.room = room;
44 return room;
TransferRequest.java 30 private String room; field in class:TransferRequest
33 public TransferRequest(String inviter, String room, String reason) {
35 this.room = room;
44 return room;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
chatroommodule.h 85 //! 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
88 //! There will be different methods for creating/configuring a "Reserved Room"
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
    [all...]
chatroommodule_unittest.cc 72 os<<"failure(room locked)";
117 void ChatroomEnteredStatus(XmppChatroomModule* room,
119 UNUSED(room);
126 void ChatroomExitedStatus(XmppChatroomModule* room,
128 UNUSED(room);
134 void MemberEntered(XmppChatroomModule* room,
136 UNUSED(room);
140 void MemberExited(XmppChatroomModule* room,
142 UNUSED(room);
146 void MemberChanged(XmppChatroomModule* room,
    [all...]
mucroomlookuptask.cc 131 // <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.hangout_id = hangout_id_elem->BodyText()
    [all...]
mucroomlookuptask_unittest.cc 44 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-domain>
    [all...]
  /external/smack/src/org/jivesoftware/smackx/muc/
InvitationListener.java 27 * 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,
RoomInfo.java 30 * 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 is considered members-only if an invitation is required in order to enter the room
    [all...]
MultiUserChat.java 70 * 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) {
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unorm_it.c 133 /* move array contents up to make room */
160 /* move array contents up to make room */
193 /* make capacity/4 room at the end of the arrays */
194 int32_t limit, capacity, room; local
199 room=capacity/4;
200 if(room>(capacity-limit)) {
201 /* move array contents to make room */
202 moveContentsTowardStart(api, uni->chars, uni->states, room);
218 room=unorm_next(iter, uni->chars+limit, capacity-limit, uni->mode, 0, TRUE, NULL, &errorCode);
220 if(room<=capacity)
264 int32_t start, capacity, room; local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
RoomInvitation.java 61 * 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();
RoomTransfer.java 61 * 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/
APPRTCAppClient.h 59 - (void)connectToRoom:(NSURL*)room;
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.h 79 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/
fifo_char.cc 92 size_t room = size_ - avail_; local
93 len = std::min(len, room);
  /art/runtime/arch/mips/
jni_entrypoints_mips.S 28 addiu $sp, $sp, -32 # leave room for $a0, $a1, $a2, $a3, and $ra
  /external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/ios/
APPRTCViewController.m 141 NSString* room = textField.text;
142 if ([room length] == 0) {
149 [NSString stringWithFormat:@"https://apprtc.appspot.com/?r=%@", room];
  /external/tinyxml/
xmltest.cpp 362 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->FirstAttribute()
426 TiXmlElement* room = roomHandle.Element(); local
    [all...]
  /external/chromium_org/v8/test/webkit/
array-holes.js 30 // Check if we can see through the hole into another room.
31 Array.prototype[index] = "room";
32 var isHole = array[index] == "room";
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
callclient.cc 152 " 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"
846 options->is_muc ? "room" : "online friend",
1131 std::string room = room_name; local
    [all...]
callclient.h 148 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/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
sha256-armv4.S 58 str r1,[sp,#17*4] @ leave room for r1
102 str r1,[sp,#17*4] @ leave room for r1
146 str r1,[sp,#17*4] @ leave room for r1
190 str r1,[sp,#17*4] @ leave room for r1
234 str r1,[sp,#17*4] @ leave room for r1
278 str r1,[sp,#17*4] @ leave room for r1
322 str r1,[sp,#17*4] @ leave room for r1
366 str r1,[sp,#17*4] @ leave room for r1
410 str r1,[sp,#17*4] @ leave room for r1
454 str r1,[sp,#17*4] @ leave room for r
    [all...]
  /external/wpa_supplicant_8/src/utils/
edit.c 431 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;
  /frameworks/wilhelm/src/itf/
IEnvironmentalReverb.c 41 static SLresult IEnvironmentalReverb_SetRoomLevel(SLEnvironmentalReverbItf self, SLmillibel room)
45 //if (!(SL_MILLIBEL_MIN <= room && room <= 0)) {
46 // comparison (SL_MILLIBEL_MIN <= room) is always true due to range of SLmillibel
47 if (!(room <= 0)) {
52 thiz->mProperties.roomLevel = room;
60 REVERB_PARAM_ROOM_LEVEL, &room);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-lazy-deopt-reloc.js 33 // information enough to have room for lazy deoptimization.

Completed in 2010 milliseconds

1 2 3 4 5