/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
utsname.h | 21 char version[9]; member in struct:oldold_utsname 31 char version[65]; member in struct:old_utsname 39 char version[65]; member in struct:new_utsname
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
versionpredicate.py | 1 """Module for parsing and testing package version predicate strings. 4 import distutils.version namespace 13 # (comp) (version) 17 """Parse a single version comparison. 25 return (comp, distutils.version.StrictVersion(verStr)) 31 """Parse and test package version predicates. 41 human-readable version of the expression:: 47 version number is included in the set described by the version 71 If any version numbers passed in do not conform to th [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
versionpredicate.py | 1 """Module for parsing and testing package version predicate strings. 4 import distutils.version namespace 13 # (comp) (version) 17 """Parse a single version comparison. 25 return (comp, distutils.version.StrictVersion(verStr)) 31 """Parse and test package version predicates. 41 human-readable version of the expression:: 47 version number is included in the set described by the version 71 If any version numbers passed in do not conform to th [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AdtManifestMergeCallback.java | 4 * Licensed under the Eclipse Public License, Version 1.0 (the "License"); 36 AndroidVersion version = new AndroidVersion(codename); local 37 String hashString = AndroidTargetHash.getPlatformHashString(version);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/ |
OS.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 31 String version = System.getProperty("os.version"); typedefs 32 final String[] parts = version.split("\\.");
|
/system/core/include/nativebridge/ |
native_bridge.h | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 79 // Version number of the interface. 80 uint32_t version; member in struct:android::NativeBridgeCallbacks
|
/bootable/recovery/updater/ |
updater.c | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 52 char* version = argv[1]; local 53 if ((version[0] != '1' && version[0] != '2' && version[0] != '3') || 54 version[1] != '\0') { 55 // We support version 1, 2, or 3. 131 updater_info.version = atoi(version);
|
/dalvik/dx/src/com/android/dx/command/ |
Main.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 19 import com.android.dx.Version; 75 " dx --version\n" + 76 " Print the version of this tool (" + Version.VERSION + 118 } else if (arg.equals("--version")) { 119 version(); method 160 * Prints the version message. 162 private static void version() { method in class:Main [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
CertificationRequestInfo.java | 19 * version INTEGER { v1(0) } (v1,...), 36 ASN1Integer version = new ASN1Integer(0); field in class:CertificationRequestInfo 78 if ((subject == null) || (version == null) || (subjectPKInfo == null)) 96 if ((subject == null) || (version == null) || (subjectPKInfo == null)) 108 version = (ASN1Integer)seq.getObjectAt(0); 123 if ((subject == null) || (version == null) || (subjectPKInfo == null)) 131 return version; 153 v.add(version);
|
EncryptedData.java | 20 * version Version, 60 int version = ((ASN1Integer)seq.getObjectAt(0)).getValue().intValue(); local 62 if (version != 0) 64 throw new IllegalArgumentException("sequence not version 0");
|
/external/chromium_org/chrome/browser/chromeos/ |
version_loader.cc | 28 // Beginning of line we look for that gives full version number. 32 // Same but for short version (x.x.xx.x). 35 // Beginning of line we look for that gives the firmware version. 36 const char kFirmwarePrefix[] = "version"; 44 const std::string* version) { 45 callback.Run(*version); 60 std::string* version = new std::string(); local 64 base::Bind(&Backend::GetVersion, backend_.get(), format, version), 65 base::Bind(&VersionLoaderCallbackHelper, callback, base::Owned(version))); 84 // version | .. [all...] |
/external/chromium_org/chrome/browser/importer/ |
importer_list.cc | 69 // Detects which version of Firefox is installed. 72 int version = 0; local 74 version = GetCurrentFirefoxMajorVersionFromRegistry(); 76 if (version < 2) 77 GetFirefoxVersionAndPathFromProfile(profile_path, &version, &app_path); 79 if (version >= 3) {
|
/external/chromium_org/chrome/browser/ |
io_thread_unittest.cc | 244 std::string version = local 246 command_line_.AppendSwitchASCII("quic-version", version);
|
/external/chromium_org/chrome/browser/local_discovery/ |
device_description.h | 41 int version; member in struct:local_discovery::DeviceDescription
|
/external/chromium_org/chrome/browser/net/ |
probe_message_unittest.cc | 38 EXPECT_EQ(probe_packet.header().version(), ProbeMessage::kVersion); 51 EXPECT_EQ(probe_packet.header().version(), ProbeMessage::kVersion); 60 uint32 version = 2; local 64 in_packet.mutable_header()->set_version(version); 76 EXPECT_EQ(out_packet.header().version(), version);
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/ |
certificate_manager_dialog_ui.cc | 80 webui::UseVersion2 version; local
|
/external/chromium_org/chrome/common/ |
spellcheck_common.cc | 21 const char* version; // The corresponding version. member in struct:chrome::spellcheck_common::LanguageVersion 80 // This function returns the language-region version of language name. 96 // The default dictionary version is 3-0. This version indicates that the bdic 100 // Add non-default version strings here. Use the same version for all the 101 // dictionaries that you add at the same time. Increment the major version 103 // version number if you're updating only dic_delta files. 110 // Generate the bdict file name using default version string or specia [all...] |
/external/chromium_org/components/autofill/core/common/ |
form_data.cc | 51 void LogDeserializationError(int version) { 52 DVLOG(1) << "Could not deserialize version " << version 119 int version; local 120 if (!iter->ReadInt(&version)) { 121 DVLOG(1) << "Bad pickle of FormData, no version present"; 125 switch (version) { 134 LogDeserializationError(version); 145 LogDeserializationError(version); 150 DVLOG(1) << "Unknown FormData pickle version " << version [all...] |
form_field_data.cc | 117 int version; local 118 if (!iter->ReadInt(&version)) { 119 LOG(ERROR) << "Bad pickle of FormFieldData, no version present"; 123 switch (version) { 145 LOG(ERROR) << "Unknown FormFieldData pickle version " << version;
|