Home
last modified time | relevance | path

Searched refs:configFile (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebKit/scripts/
Dgenerate-webkitversion.pl49 my $configFile = "./WebKit/mac/Configurations/Version.xcconfig";
52 GetOptions('config=s' => \$configFile,
55 die "You must specify a --config <file> " unless (length($configFile));
58 …nfig does not exist: use --config <file> to specify its correct location." unless (-e $configFile);
61 unless (open INPUT, "<", $configFile) { print STDERR "File does not exist: $configFile\n";}
/external/sonivox/jet_tools/JetCreator/
DJetUtils.py239 def IniSetValue(configFile, section, option, value): argument
242 config.read(configFile)
246 cfgfile = open(configFile,'w')
250 def IniGetValue(configFile, section, option, retType='str', default=''): argument
254 config.read(configFile)
383 def SegmentOutputFile(segName, configFile): argument
385 configPath = FileJustPath(configFile) + "/"
DJetFile.py657 def SaveJetConfig(self, configFile): argument
660 self.config.filename = FileJustRoot(configFile) + ".JET"
722 FileKillClean(configFile)
723 cfgfile = open(configFile,'w')
727 def InitializeConfig(self, configFile): argument
729 self.config.filename = FileJustRoot(configFile) + ".JET"
736 self.config_file = configFile
737 self.SaveJetConfig(configFile)
/external/qemu/android/avd/
Dhw-config.h44 IniFile* configFile );
/external/webkit/WebKitTools/DumpRenderTree/qt/
DDumpRenderTreeQt.cpp850 QByteArray configFile = currentPath; in initializeFonts() local
852 configFile += "/WebKitTools/DumpRenderTree/qt/fonts.conf"; in initializeFonts()
853 if (!FcConfigParseAndLoad (config, (FcChar8*) configFile.data(), true)) in initializeFonts()
/external/quake/src/com/android/quake/
DDownloaderActivity.java528 Config.File configFile = fileMap.get(canonicalPath); in shouldKeepFile() local
529 if (configFile == null) { in shouldKeepFile()
532 return verifyFile(configFile, false); in shouldKeepFile()