/external/webkit/Tools/Scripts/webkitpy/python24/ |
versioning_unittest.py | 36 def __init__(self, current_version): 39 current_version: A version string with major, minor, and micro 43 version_info = current_version.split(".") 46 self.version = current_version + " Version details." 54 def _mock_sys(self, current_version): 55 return MockSys(current_version) 59 (comparison, current_version, min_version) = compare_version() 62 def compare_version(self, target_version, current_version=None): 64 if current_version is None: 65 current_version = "2.5.3 [all...] |
versioning.py | 50 A triple of (comparison, current_version, target_version). 62 current_version: A string representing the current Python version, for 93 current_version = sysmodule.version.split()[0] 95 return (comparison, current_version, target_version) 120 (comparison, current_version, target_version) = \ 131 % (current_version, target_version))
|
/bionic/libc/tools/zoneinfo/ |
generate | 29 current_version=tzdata`sed s/\n// < $zoneinfo_version_file` 31 current_version=missing 35 if [ "$current_version" == "$latest_version" ]; then
|
/external/clang/tools/libclang/ |
Makefile | 34 LLVMLibsOptions += -Wl,-current_version \
|
/external/llvm/runtime/libprofile/ |
Makefile | 34 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|
/external/llvm/tools/edis/ |
Makefile | 42 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version -Wl,$(EDIS_VERSION) \
|
/external/llvm/tools/lto/ |
Makefile | 43 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|
/external/chromium/chrome/browser/prefs/ |
browser_prefs.cc | 168 int current_version = local 171 if ((current_version & WINDOWS_PREFS) == 0) { 193 current_version | WINDOWS_PREFS);
|
/external/chromium/chrome/browser/webdata/ |
web_database.cc | 146 int current_version = meta_table_.GetVersionNumber(); local 147 switch (current_version) { 157 LOG(WARNING) << "Web database version " << current_version <<
|
/external/chromium/chrome/browser/ui/gtk/ |
about_chrome_dialog.cc | 106 std::string current_version = version_info.Version(); local 108 current_version += " ("; 109 current_version += version_info.LastChange(); 110 current_version += ")"; 114 current_version += " " + channel; 154 GtkWidget* version_label = gtk_label_new(current_version.c_str());
|
/external/e2fsprogs/lib/ |
Makefile.darwin-lib | 26 $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
|
/external/chromium/chrome/browser/diagnostics/ |
recon_diagnostics.cc | 172 std::string current_version = version_info.Version(); local 173 if (current_version.empty()) { 179 current_version += " " + version_modifier; 181 current_version += " GCB"; 183 RecordSuccess(ASCIIToUTF16(current_version));
|
/external/webkit/Tools/Scripts/ |
test-webkitpy | 219 (comparison, current_version, minimum_version) = \ 226 "to support." % (current_version, minimum_version))
|
/external/chromium/chrome/browser/sync/util/ |
user_settings.h | 89 void MigrateOldVersionsAsNeeded(sqlite3* const handle, int current_version);
|
user_settings.cc | 97 int current_version) { 98 switch (current_version) { 105 LOG(WARNING) << "UserSettings database version " << current_version <<
|
/external/icu4c/config/ |
mh-darwin | 28 LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(notdir $(MIDDLE_SO_TARGET))
|
/external/chromium/chrome/browser/net/ |
predictor_api.cc | 414 int current_version = local 416 if ((current_version & browser::DNS_PREFS) == 0) { 422 current_version | browser::DNS_PREFS);
|
/external/llvm/tools/llvm-shlib/ |
Makefile | 45 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|
/external/chromium/chrome/browser/extensions/ |
crx_installer.cc | 423 scoped_ptr<Version> current_version( 425 if (current_version->CompareTo(*(extension_->version())) > 0) {
|
/external/llvm/include/llvm/Support/ |
MachO.h | 373 uint32_t current_version; member in struct:llvm::MachO::dylib
|
/external/chromium/chrome/common/extensions/ |
extension.cc | [all...] |