/external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/ |
ARDVideoCallViewController.h | 15 - (instancetype)initForRoom:(NSString *)room
|
ARDMainView.h | 18 didInputRoom:(NSString *)room 24 // The main view of AppRTCDemo. It contains an input field for entering a room
|
ARDMainViewController.m | 36 didInputRoom:(NSString *)room 39 if (!room.length) { 40 [self showAlertWithMessage:@"Missing room name."]; 45 NSString *trimmedRoom = [room stringByTrimmingCharactersInSet:whitespaceSet]; 47 // Check that room name is valid. 64 [self showAlertWithMessage:@"Invalid room name."];
|
ARDMainView.m | 39 _roomText.placeholder = @"Room name"; 251 NSString *room = _roomText.roomText; 252 // If this is a loopback call, allow a generated room name. 253 if (!room.length && _loopbackSwitch.isOn) { 254 room = [[NSUUID UUID] UUIDString]; 256 room = [room stringByReplacingOccurrencesOfString:@"-" withString:@""]; 258 didInputRoom:room
|
ARDVideoCallViewController.m | 34 - (instancetype)initForRoom:(NSString *)room 39 [_client connectToRoomWithId:room
|
/external/webrtc/webrtc/libjingle/xmpp/ |
chatroommodule.h | 68 //! Password should be empty for a room that doesn't require a password 69 //! If the room doesn't exist, the server will create an "Instant Room" if the 71 //! There will be different methods for creating/configuring a "Reserved Room" 87 //! Returns the number of members in the room 148 //! If the room is anonymous, this returns JID_EMPTY 161 //! User successfully entered the room 163 //! The nickname confliced with somebody already in the room 165 //! A password is required to enter the room 169 //! The user is not a member of a member-only room [all...] |
chatroommodule_unittest.cc | 55 os<<"failure(room locked)"; 100 void ChatroomEnteredStatus(XmppChatroomModule* room, 102 RTC_UNUSED(room); 109 void ChatroomExitedStatus(XmppChatroomModule* room, 111 RTC_UNUSED(room); 117 void MemberEntered(XmppChatroomModule* room, 119 RTC_UNUSED(room); 123 void MemberExited(XmppChatroomModule* room, 125 RTC_UNUSED(room); 129 void MemberChanged(XmppChatroomModule* room, [all...] |
mucroomlookuptask.cc | 114 // <room-name>0b48ad092c893a53b7bfc87422caf38e93978798e</room-name> 115 // <room-domain>hangout.google.com</room-domain> 131 MucRoomInfo room; local 132 room.jid = Jid(item_elem->Attr(buzz::QN_JID)); 133 if (!room.jid.IsValid()) { 141 room.name = room_name_elem->BodyText(); 147 room.domain = room_domain_elem->BodyText(); 153 room.hangout_id = hangout_id_elem->BodyText() [all...] |
mucroomlookuptask_unittest.cc | 27 const buzz::MucRoomInfo& room) { 28 last_room = room; 87 "<room-name>ponies</room-name>" 88 "<room-domain>domain.com</room-domain>" 101 " <room-name>ponies</room-name>" 102 " <room-domain>domain.com</room-domain> [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/ |
Room.java | 18 public class Room { 21 public Room() { 25 public Room(String name) { 39 if (obj instanceof Room) { 40 Room room = (Room) obj; local 41 return name.equals(room.name); 54 return "Room name=" + name;
|
/art/runtime/arch/mips/ |
jni_entrypoints_mips.S | 27 addiu $sp, $sp, -48 # leave room for $f12, $f13, $f14, $f15, $a0, $a1, $a2, $a3, and $ra
|
/external/parameter-framework/upstream/parameter/ |
FormattedSubsystemObject.cpp | 91 // Check we found one and that there's room for value
|
/prebuilts/go/darwin-x86/src/os/ |
dir_unix.go | 33 names = make([]string, 0, size) // Empty with room to grow.
|
dir_plan9.go | 23 fi := make([]FileInfo, 0, size) // Empty with room to grow.
|
/prebuilts/go/darwin-x86/src/runtime/ |
lfstack_amd64.go | 11 // room in the bottom for the count.
|
error.go | 66 // There's room for arbitrary complexity here, but we keep it
|
/prebuilts/go/linux-x86/src/os/ |
dir_unix.go | 33 names = make([]string, 0, size) // Empty with room to grow.
|
dir_plan9.go | 23 fi := make([]FileInfo, 0, size) // Empty with room to grow.
|
/prebuilts/go/linux-x86/src/runtime/ |
lfstack_amd64.go | 11 // room in the bottom for the count.
|
/libcore/ojluni/src/main/java/java/io/ |
DataInputStream.java | 505 int room = buf.length; local 526 if (--room < 0) { 528 room = buf.length - offset - 1;
|
/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/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/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
ConnectActivity.java | 43 * Handles the initial setup where the user selects which room to join. 147 String room = sharedPref.getString(keyprefRoom, ""); local 148 roomEditText.setText(room); 175 String room = roomEditText.getText().toString(); local 178 editor.putString(keyprefRoom, room); 186 String room = sharedPref.getString(keyprefRoom, ""); local 187 roomEditText.setText(room); 197 Log.e(TAG, "Failed to load room list: " + e.toString()); 233 // Get room name (random for loopback). 344 Log.d(TAG, "Connecting to room " + roomId + " at URL " + roomUrl) [all...] |
/prebuilts/go/darwin-x86/src/syscall/ |
env_windows.go | 76 r := make([]string, 0, 50) // Empty with room to grow.
|
/prebuilts/go/darwin-x86/test/bench/go1/ |
revcomp_test.go | 69 // The loop left room for the newlines and 128 bytes of padding.
|