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

1 2 3 4

  /external/chromium_org/third_party/webrtc/base/
asyncudpsocket.h 45 virtual int GetOption(Socket::Option opt, int* value);
asyncsocket.h 98 virtual int GetOption(Option opt, int* value) {
99 return socket_->GetOption(opt, value);
asyncudpsocket.cc 80 int AsyncUDPSocket::GetOption(Socket::Option opt, int* value) {
81 return socket_->GetOption(opt, value);
macasyncsocket.h 52 virtual int GetOption(Option opt, int* value);
asyncpacketsocket.h 100 virtual int GetOption(Socket::Option opt, int* value) = 0;
  /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_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
287 if GetOption('output'):
336 tokens = FilesToTokens(filenames, GetOption('verbose'))
338 if GetOption('output'): sys.stdout.write(' <> '.join(values) + '\n')
339 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_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_ast.py 9 from idl_option import GetOption
31 if node.IsA('Label') and node.GetName() == GetOption('label'):
idl_gen_pnacl.py 18 from idl_option import GetOption, Option, ParseOptions
213 self._skip_opt = GetOption('disable_pnacl_opt')
214 self.SetOutputFile(GetOption('pnaclshim'))
273 if GetOption('test'):
  /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",
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...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.h 75 virtual int GetOption(rtc::Socket::Option opt, int* value);
portproxy.cc 112 int PortProxy::GetOption(rtc::Socket::Option opt,
115 return impl_->GetOption(opt, value);
portinterface.h 93 virtual int GetOption(rtc::Socket::Option opt, int* value) = 0;
relayport.h 75 virtual int GetOption(rtc::Socket::Option opt, int* value);
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.h 86 void GetOption(PseudoTcp::Option opt, int* value);

Completed in 395 milliseconds

1 2 3 4