OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:target_version
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Tools/Scripts/webkitpy/python24/
versioning.py
34
def compare_version(sysmodule=None,
target_version
=None):
43
target_version
: A string representing the Python version to compare
50
A triple of (comparison, current_version,
target_version
).
64
target_version
: A string representing the version that the current
70
if
target_version
is None:
71
target_version
= _MINIMUM_SUPPORTED_PYTHON_VERSION
74
precision = len(
target_version
.split("."))
84
if current_version_to_compare >
target_version
:
86
elif current_version_to_compare ==
target_version
:
95
return (comparison, current_version,
target_version
)
[
all
...]
versioning_unittest.py
62
def compare_version(self,
target_version
, current_version=None):
67
return compare_version(mock_sys,
target_version
)
69
def compare(self,
target_version
, current_version=None):
71
return self.compare_version(
target_version
, current_version)[0]
80
target_version
= self.compare_version("2.5")[2]
81
self.assertEquals(
target_version
, "2.5")
115
return check_version(sysmodule=mock_sys,
target_version
=minimum_version)
/external/clang/utils/OptionalTests/Extra/Runtime/
darwin-clang_rt.c
221
unsigned
target_version
= __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;
local
222
unsigned target_maj =
target_version
/ 100;
223
unsigned target_min = (
target_version
/ 10) % 10;
224
unsigned target_micro =
target_version
% 10;
227
unsigned
target_version
= __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__;
local
228
unsigned target_maj =
target_version
/ 10000;
229
unsigned target_min = (
target_version
/ 100) % 100;
230
unsigned target_micro =
target_version
% 100;
/build/tools/releasetools/
ota_from_target_files
476
target_version
= OPTIONS.target_info_dict["recovery_api_version"]
491
target_version
=
target_version
,
Completed in 75 milliseconds