/external/chromium/third_party/libjingle/source/talk/base/ |
asyncpacketsocket.h | 62 virtual int GetOption(Socket::Option opt, int* value) = 0;
|
asyncudpsocket.h | 55 virtual int GetOption(Socket::Option opt, int* value);
|
asyncsocket.h | 107 virtual int GetOption(Option opt, int* value) { 108 return socket_->GetOption(opt, value);
|
asyncudpsocket.cc | 92 int AsyncUDPSocket::GetOption(Socket::Option opt, int* value) { 93 return socket_->GetOption(opt, value);
|
asynctcpsocket.h | 53 virtual int GetOption(Socket::Option opt, int* value);
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
asyncudpsocket.h | 61 virtual int GetOption(Socket::Option opt, int* value);
|
asyncsocket.h | 115 virtual int GetOption(Option opt, int* value) { 116 return socket_->GetOption(opt, value);
|
asyncudpsocket.cc | 97 int AsyncUDPSocket::GetOption(Socket::Option opt, int* value) { 98 return socket_->GetOption(opt, value);
|
asyncpacketsocket.h | 92 virtual int GetOption(Socket::Option opt, int* value) = 0;
|
macasyncsocket.h | 46 virtual int GetOption(Option opt, int* value);
|
/external/chromium_org/ppapi/generators/ |
idl_diff.py | 11 from idl_option import GetOption, Option, ParseOptions 236 if GetOption('verbose'): 310 gendir = os.path.join(GetOption('gen'), '*.h') 312 srcdir = os.path.join(GetOption('src'), '*.h') 316 name = os.path.join(GetOption('gen'), name) 322 filename = filename[len(GetOption('gen')) + 1:] 323 src = os.path.join(GetOption('src'), filename) 324 diff = os.path.join(GetOption('diff'), filename) 343 if GetOption('ok'): 345 if GetOption('halt') [all...] |
idl_release.py | 16 from idl_option import GetOption, Option, ParseOptions 79 if GetOption('release_debug'): 106 if GetOption('release_debug'): 165 if GetOption('release_debug'): 171 if GetOption('release_debug'): InfoOut.Log(' Checking %s' % cver) 182 if GetOption('release_debug'): InfoOut.Log(' Update %s' % cver) 203 if GetOption('release_debug'): InfoOut.Log('Done %s' % node)
|
idl_generator.py | 9 from idl_option import GetOption, Option, ParseOptions 66 rangestr = GetOption('range') 67 releasestr = GetOption('release') 178 outlist = GetOption('out') 204 if GetOption('diff'):
|
idl_lexer.py | 35 from idl_option import GetOption, Option, ParseOptions 284 if GetOption('output'): 333 tokens = FilesToTokens(filenames, GetOption('verbose')) 335 if GetOption('output'): sys.stdout.write(' <> '.join(values) + '\n') 336 if GetOption('test'):
|
idl_lint.py | 13 from idl_option import GetOption, Option, ParseOptions 108 wnone = GetOption('wnone') 110 if wnone or GetOption(opt): ast.SetProperty(opt, True)
|
idl_namespace.py | 15 from idl_option import GetOption, Option, ParseOptions 70 if GetOption('namespace_debug'): 104 if GetOption('release_debug'): print 'Error: %s' % msg 108 if GetOption('release_debug'): print 'Warn: %s' % msg
|
idl_outfile.py | 14 from idl_option import GetOption, Option, ParseOptions 104 if GetOption('verbose'): 108 if GetOption('diff'): 123 if not GetOption('test'):
|
idl_ast.py | 9 from idl_option import GetOption 28 if node.IsA('Label') and node.GetName() == GetOption('label'):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
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',
|
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",
|
configHandler.py | 226 def GetOption(self, configType, section, option, default=None, type=None, 245 warning = ('\n Warning: configHandler.py - IdleConf.GetOption -\n' 263 warning = ('\n Warning: configHandler.py - IdleConf.GetOption -\n' 392 return self.GetOption('main','Theme','name',default='') 398 return self.GetOption('main','Keys','name',default='') 415 if self.GetOption('extensions', extn, 'enable', default=True, 423 if self.GetOption('extensions', extn,option, 489 binding=self.GetOption('extensions',keysName, 508 binding=self.GetOption('extensions',bindsName, 523 binding=self.GetOption('keys',keySetName,eventName,default='').split( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
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',
|
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",
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
portproxy.h | 75 virtual int GetOption(talk_base::Socket::Option opt, int* value);
|
portproxy.cc | 112 int PortProxy::GetOption(talk_base::Socket::Option opt, 115 return impl_->GetOption(opt, value);
|