/external/python/cpython2/Lib/idlelib/ |
D | configHandler.py | 216 def GetOption(self, configType, section, option, default=None, type=None, member in IdleConf 391 default = self.GetOption('main', 'Theme', 'default', 394 theme = self.GetOption('main', 'Theme', 'name2', default='') 396 theme = self.GetOption('main', 'Theme', 'name', default='') 405 return self.GetOption('main', 'Keys', 'name', default='') 424 if self.GetOption('extensions', extn, 'enable', default=True, 432 if self.GetOption('extensions', extn,option, 499 binding = self.GetOption( 518 binding = self.GetOption( 532 binding = self.GetOption('keys', keySetName, eventName, default='').split() [all …]
|
D | CodeContext.py | 28 context_depth = idleConf.GetOption("extensions", "CodeContext", 30 bgcolor = idleConf.GetOption("extensions", "CodeContext", 32 fgcolor = idleConf.GetOption("extensions", "CodeContext", 46 visible = idleConf.GetOption("extensions", "CodeContext",
|
D | ParenMatch.py | 45 STYLE = idleConf.GetOption('extensions','ParenMatch','style', 47 FLASH_DELAY = idleConf.GetOption('extensions','ParenMatch','flash-delay', 50 BELL = idleConf.GetOption('extensions','ParenMatch','bell',
|
D | help.py | 162 uwide = idleConf.GetOption('main', 'EditorWindow', 'width', type='int') 163 uhigh = idleConf.GetOption('main', 'EditorWindow', 'height', type='int')
|
D | IdleHistory.py | 26 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
|
D | IOBinding.py | 436 config_encoding = idleConf.GetOption("main","EditorWindow", 495 command = idleConf.GetOption('main','General', 499 command = idleConf.GetOption('main','General','print-command-win')
|
D | configDialog.py | 535 if idleConf.GetOption('main', 'Theme', 'name') != 'IDLE New': 1024 spaceNum = idleConf.GetOption( 1030 self.themeIsBuiltin.set(idleConf.GetOption( 1063 self.keysAreBuiltin.set(idleConf.GetOption( 1093 self.startupEdit.set(idleConf.GetOption( 1096 self.autoSave.set(idleConf.GetOption( 1099 self.winWidth.set(idleConf.GetOption( 1101 self.winHeight.set(idleConf.GetOption( 1104 self.encoding.set(idleConf.GetOption(
|
/external/webrtc/webrtc/base/ |
D | asyncsocket.cc | 103 int AsyncSocketAdapter::GetOption(Option opt, int* value) { in GetOption() function in rtc::AsyncSocketAdapter 104 return socket_->GetOption(opt, value); in GetOption()
|
D | asyncudpsocket.cc | 86 int AsyncUDPSocket::GetOption(Socket::Option opt, int* value) { in GetOption() function in rtc::AsyncUDPSocket 87 return socket_->GetOption(opt, value); in GetOption()
|
D | asyncudpsocket.h | 48 int GetOption(Socket::Option opt, int* value) override;
|
D | asynctcpsocket.cc | 111 int AsyncTCPSocketBase::GetOption(Socket::Option opt, int* value) { in GetOption() function in rtc::AsyncTCPSocketBase 112 return socket_->GetOption(opt, value); in GetOption()
|
D | macasyncsocket.h | 53 int GetOption(Option opt, int* value) override;
|
D | asyncsocket.h | 68 int GetOption(Option opt, int* value) override;
|
D | asyncpacketsocket.h | 99 virtual int GetOption(Socket::Option opt, int* value) = 0;
|
D | asynctcpsocket.h | 44 int GetOption(Socket::Option opt, int* value) override;
|
D | socket_unittest.cc | 970 ASSERT_NE(-1, socket->GetOption(Socket::OPT_RCVBUF, &recv_size)); in GetSetOptionsInternal() 971 ASSERT_NE(-1, socket->GetOption(Socket::OPT_SNDBUF, &send_size)); in GetSetOptionsInternal() 976 ASSERT_NE(-1, socket->GetOption(Socket::OPT_RCVBUF, &recv_size)); in GetSetOptionsInternal() 977 ASSERT_NE(-1, socket->GetOption(Socket::OPT_SNDBUF, &send_size)); in GetSetOptionsInternal() 984 ASSERT_EQ(-1, socket->GetOption(Socket::OPT_NODELAY, ¤t_nd)); in GetSetOptionsInternal()
|
D | win32socketserver.h | 56 virtual int GetOption(Option opt, int* value);
|
D | socket.h | 186 virtual int GetOption(Option opt, int* value) = 0;
|
/external/webrtc/webrtc/p2p/base/ |
D | dtlstransportchannel.h | 115 bool GetOption(rtc::Socket::Option opt, int* value) override { in GetOption() function 116 return channel_->GetOption(opt, value); in GetOption()
|
D | portinterface.h | 76 virtual int GetOption(rtc::Socket::Option opt, int* value) = 0;
|
D | relayport.h | 61 int GetOption(rtc::Socket::Option opt, int* value) override;
|
D | transportchannel.h | 97 virtual bool GetOption(rtc::Socket::Option opt, int* value) { return false; } in GetOption() function
|
D | tcpport.cc | 232 int TCPPort::GetOption(rtc::Socket::Option opt, int* value) { in GetOption() function in cricket::TCPPort 234 return socket_->GetOption(opt, value); in GetOption()
|
D | stunport.cc | 292 int UDPPort::GetOption(rtc::Socket::Option opt, int* value) { in GetOption() function in cricket::UDPPort 293 return socket_->GetOption(opt, value); in GetOption()
|
D | tcpport.h | 55 int GetOption(rtc::Socket::Option opt, int* value) override;
|