/external/chromium_org/third_party/libjingle/source/talk/base/ |
linux.h | 42 // ConfigParser parses a FileStream of an ".ini."-type format into a map. 46 // ConfigParser parser; 47 // ConfigParser::MapVector key_val_pairs; 56 class ConfigParser { 61 ConfigParser(); 62 virtual ~ConfigParser(); 121 ConfigParser::MapVector sections_;
|
linux.cc | 55 ConfigParser procfs; 167 ConfigParser::SimpleMap::iterator iter = sections_[section_num].find(key); 181 ConfigParser::SimpleMap::iterator iter = sections_[section_num].find(key); 188 ConfigParser::ConfigParser() {} 190 ConfigParser::~ConfigParser() {} 192 bool ConfigParser::Open(const std::string& filename) { 201 void ConfigParser::Attach(StreamInterface* stream) { 205 bool ConfigParser::Parse(MapVector* key_val_pairs) [all...] |
/external/chromium_org/third_party/webrtc/base/ |
linux.h | 25 // ConfigParser parses a FileStream of an ".ini."-type format into a map. 29 // ConfigParser parser; 30 // ConfigParser::MapVector key_val_pairs; 39 class ConfigParser { 44 ConfigParser(); 45 virtual ~ConfigParser(); 104 ConfigParser::MapVector sections_;
|
linux.cc | 38 ConfigParser procfs; 150 ConfigParser::SimpleMap::iterator iter = sections_[section_num].find(key); 164 ConfigParser::SimpleMap::iterator iter = sections_[section_num].find(key); 171 ConfigParser::ConfigParser() {} 173 ConfigParser::~ConfigParser() {} 175 bool ConfigParser::Open(const std::string& filename) { 184 void ConfigParser::Attach(StreamInterface* stream) { 188 bool ConfigParser::Parse(MapVector* key_val_pairs) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
config.py | 7 from ConfigParser import ConfigParser 57 config = ConfigParser()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
config.py | 7 from ConfigParser import ConfigParser 57 config = ConfigParser()
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/ |
attr.py | 10 import ConfigParser 122 parser = ConfigParser.SafeConfigParser() 150 parser_event = ConfigParser.SafeConfigParser() 164 parser_base = ConfigParser.SafeConfigParser()
|
/bionic/libc/kernel/tools/ |
kernel.py | 295 class ConfigParser: 310 m = ConfigParser.re_CONFIG_.match(line)
|
/external/chromium_org/chrome/tools/build/win/ |
create_installer_archive.py | 15 import ConfigParser 179 config = ConfigParser.SafeConfigParser(variables)
|
/external/sepolicy/tools/ |
insertkeys.py | 5 import ConfigParser 110 class ParseConfig(ConfigParser.ConfigParser):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ConfigParser.py | 18 ConfigParser constructor as a dictionary. 22 ConfigParser -- responsible for parsing a list of 102 "ConfigParser", "SafeConfigParser", "RawConfigParser", 113 """Base class for ConfigParser exceptions.""" 588 class ConfigParser(RawConfigParser): 686 class SafeConfigParser(ConfigParser): 735 """Set an option. Extend ConfigParser.set: check for string values.""" 753 ConfigParser.set(self, section, option, value)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
configHandler.py | 24 from ConfigParser import ConfigParser, NoOptionError, NoSectionError 31 class IdleConfParser(ConfigParser): 33 A ConfigParser specialised for idle configuration file handling 40 ConfigParser.__init__(self,defaults=cfgDefaults)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ConfigParser.py | 18 ConfigParser constructor as a dictionary. 22 ConfigParser -- responsible for parsing a list of 102 "ConfigParser", "SafeConfigParser", "RawConfigParser", 113 """Base class for ConfigParser exceptions.""" 588 class ConfigParser(RawConfigParser): 686 class SafeConfigParser(ConfigParser): 735 """Set an option. Extend ConfigParser.set: check for string values.""" 753 ConfigParser.set(self, section, option, value)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
configHandler.py | 24 from ConfigParser import ConfigParser, NoOptionError, NoSectionError 31 class IdleConfParser(ConfigParser): 33 A ConfigParser specialised for idle configuration file handling 40 ConfigParser.__init__(self,defaults=cfgDefaults)
|
/external/chromium-trace/trace-viewer/examples/stream_server/ |
standalone.py | 76 following the documentation of the Python ConfigParser library. Name of each 112 import ConfigParser [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
standalone.py | 76 following the documentation of the Python ConfigParser library. Name of each 112 import ConfigParser [all...] |
/external/clang/tools/scan-view/ |
ScanView.py | 16 import ConfigParser 126 self.config = ConfigParser.RawConfigParser()
|
/external/sonivox/jet_tools/JetCreator/ |
JetUtils.py | 28 import ConfigParser
241 config = ConfigParser.ConfigParser()
253 config = ConfigParser.ConfigParser()
286 config = ConfigParser.ConfigParser()
303 config = ConfigParser.ConfigParser()
|
/prebuilts/misc/darwin-x86/analyzer/tools/scan-view/ |
ScanView.py | 16 import ConfigParser 126 self.config = ConfigParser.RawConfigParser()
|
/prebuilts/misc/linux-x86/analyzer/tools/scan-view/ |
ScanView.py | 16 import ConfigParser 126 self.config = ConfigParser.RawConfigParser()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
config.py | 55 Read the logging configuration from a ConfigParser-format file. 62 import ConfigParser 64 cp = ConfigParser.ConfigParser(defaults) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cfgparser.py | 1 import ConfigParser 117 self.assertRaises(ConfigParser.NoSectionError, 170 self.parse_error(ConfigParser.ParsingError, 172 self.parse_error(ConfigParser.ParsingError, 174 self.parse_error(ConfigParser.ParsingError, 176 self.parse_error(ConfigParser.ParsingError, 178 self.parse_error(ConfigParser.MissingSectionHeaderError, 188 "new ConfigParser should have no defined sections") 190 "new ConfigParser should have no acknowledged " 192 self.assertRaises(ConfigParser.NoSectionError [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
config.py | 55 Read the logging configuration from a ConfigParser-format file. 62 import ConfigParser 64 cp = ConfigParser.ConfigParser(defaults) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cfgparser.py | 1 import ConfigParser 117 self.assertRaises(ConfigParser.NoSectionError, 170 self.parse_error(ConfigParser.ParsingError, 172 self.parse_error(ConfigParser.ParsingError, 174 self.parse_error(ConfigParser.ParsingError, 176 self.parse_error(ConfigParser.ParsingError, 178 self.parse_error(ConfigParser.MissingSectionHeaderError, 188 "new ConfigParser should have no defined sections") 190 "new ConfigParser should have no acknowledged " 192 self.assertRaises(ConfigParser.NoSectionError [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
standalone.py | 124 following the documentation of the Python ConfigParser library. Name of each 162 import ConfigParser [all...] |