Home
last modified time | relevance | path

Searched refs:GetOption (Results 1 – 25 of 53) sorted by relevance

123

/external/python/cpython2/Lib/idlelib/
DconfigHandler.py216 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 …]
DCodeContext.py28 context_depth = idleConf.GetOption("extensions", "CodeContext",
30 bgcolor = idleConf.GetOption("extensions", "CodeContext",
32 fgcolor = idleConf.GetOption("extensions", "CodeContext",
46 visible = idleConf.GetOption("extensions", "CodeContext",
DParenMatch.py45 STYLE = idleConf.GetOption('extensions','ParenMatch','style',
47 FLASH_DELAY = idleConf.GetOption('extensions','ParenMatch','flash-delay',
50 BELL = idleConf.GetOption('extensions','ParenMatch','bell',
Dhelp.py162 uwide = idleConf.GetOption('main', 'EditorWindow', 'width', type='int')
163 uhigh = idleConf.GetOption('main', 'EditorWindow', 'height', type='int')
DIdleHistory.py26 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
DIOBinding.py436 config_encoding = idleConf.GetOption("main","EditorWindow",
495 command = idleConf.GetOption('main','General',
499 command = idleConf.GetOption('main','General','print-command-win')
DconfigDialog.py535 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/
Dasyncsocket.cc103 int AsyncSocketAdapter::GetOption(Option opt, int* value) { in GetOption() function in rtc::AsyncSocketAdapter
104 return socket_->GetOption(opt, value); in GetOption()
Dasyncudpsocket.cc86 int AsyncUDPSocket::GetOption(Socket::Option opt, int* value) { in GetOption() function in rtc::AsyncUDPSocket
87 return socket_->GetOption(opt, value); in GetOption()
Dasyncudpsocket.h48 int GetOption(Socket::Option opt, int* value) override;
Dasynctcpsocket.cc111 int AsyncTCPSocketBase::GetOption(Socket::Option opt, int* value) { in GetOption() function in rtc::AsyncTCPSocketBase
112 return socket_->GetOption(opt, value); in GetOption()
Dmacasyncsocket.h53 int GetOption(Option opt, int* value) override;
Dasyncsocket.h68 int GetOption(Option opt, int* value) override;
Dasyncpacketsocket.h99 virtual int GetOption(Socket::Option opt, int* value) = 0;
Dasynctcpsocket.h44 int GetOption(Socket::Option opt, int* value) override;
Dsocket_unittest.cc970 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, &current_nd)); in GetSetOptionsInternal()
Dwin32socketserver.h56 virtual int GetOption(Option opt, int* value);
Dsocket.h186 virtual int GetOption(Option opt, int* value) = 0;
/external/webrtc/webrtc/p2p/base/
Ddtlstransportchannel.h115 bool GetOption(rtc::Socket::Option opt, int* value) override { in GetOption() function
116 return channel_->GetOption(opt, value); in GetOption()
Dportinterface.h76 virtual int GetOption(rtc::Socket::Option opt, int* value) = 0;
Drelayport.h61 int GetOption(rtc::Socket::Option opt, int* value) override;
Dtransportchannel.h97 virtual bool GetOption(rtc::Socket::Option opt, int* value) { return false; } in GetOption() function
Dtcpport.cc232 int TCPPort::GetOption(rtc::Socket::Option opt, int* value) { in GetOption() function in cricket::TCPPort
234 return socket_->GetOption(opt, value); in GetOption()
Dstunport.cc292 int UDPPort::GetOption(rtc::Socket::Option opt, int* value) { in GetOption() function in cricket::UDPPort
293 return socket_->GetOption(opt, value); in GetOption()
Dtcpport.h55 int GetOption(rtc::Socket::Option opt, int* value) override;

123