/development/ndk/platforms/android-3/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
|
/development/ndk/platforms/android-L/include/linux/ |
elf-fdpic.h | 31 Elf32_Half version; member in struct:elf32_fdpic_loadmap
|
utsname.h | 27 char version[9]; member in struct:oldold_utsname 37 char version[65]; member in struct:old_utsname 46 char version[__NEW_UTS_LEN + 1]; member in struct:new_utsname
|
/device/google/accessory/arduino/AndroidAccessory/ |
AndroidAccessory.h | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 27 const char *version; member in class:AndroidAccessory 57 const char *version,
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
RFC2965VersionAttributeHandler.java | 11 * to you under the Apache License, Version 2.0 (the 43 * <tt>"Version"</tt> cookie attribute handler for RFC 2965 cookie spec. 57 * Parse cookie version attribute. 66 "Missing value for version attribute"); 68 int version = -1; local 70 version = Integer.parseInt(value); 72 version = -1; 74 if (version < 0) { 75 throw new MalformedCookieException("Invalid cookie version."); 77 cookie.setVersion(version); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
Pfx.java | 25 BigInteger version = ((ASN1Integer)seq.getObjectAt(0)).getValue(); local 26 if (version.intValue() != 3) 28 throw new IllegalArgumentException("wrong version for PFX PDU");
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/ |
setup.py | 5 # Licensed under the Apache License, Version 2.0 (the "License"); 23 version='2.3.5', variable
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/ |
release_helper.rb | 66 sh "git tag -a -m \"Version #{version}\" #{version_tag}" 75 def version method in class:GLMatrix 76 GLMatrix::VERSION 80 "v#{version}"
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/ |
setup.py | 43 if sys.version < '2.3': 58 # See the source of distutils.version, distutils.versionpredicate and 59 # distutils.dist to understand how to name version numbers. 60 version='0.7.6', variable
|
/external/chromium_org/android_webview/public/browser/ |
draw_sw.h | 22 int version; // The kAwPixelInfoVersion this struct was built with. member in struct:AwPixelInfo 51 int version; member in struct:AwDrawSWFunctionTable
|
/external/chromium_org/base/test/expectations/ |
expectation.cc | 94 base::win::Version version = base::win::GetVersion(); local 95 if (version == base::win::VERSION_XP) 97 else if (version == base::win::VERSION_VISTA) 99 else if (version == base::win::VERSION_WIN7) 101 else if (version == base::win::VERSION_WIN8)
|
/external/chromium_org/base/ |
version_unittest.cc | 5 #include "base/version.h" 12 Version v; 17 Version v1("1.2.3.4"); 19 Version v3; 22 Version v2(v1); 57 Version version(cases[i].input); 58 EXPECT_EQ(cases[i].success, version.IsValid()); 60 EXPECT_EQ(cases[i].parts, version.components().size()); 82 Version lhs(cases[i].lhs) 120 const char* version; member in struct:__anon7217::version_compare [all...] |
/external/chromium_org/chrome/browser/net/ |
service_providers_win.h | 12 int version; member in struct:WinsockNamespaceProvider 21 int version; member in struct:WinsockLayeredServiceProvider
|
/external/chromium_org/chrome/browser/plugins/ |
plugin_finder_unittest.cc | 18 scoped_ptr<base::Value> version; local 19 ASSERT_TRUE(plugin_list->Remove("x-version", &version)); 20 EXPECT_EQ(base::Value::TYPE_INTEGER, version->GetType()); 63 EXPECT_TRUE(version_dict->GetString("version", &dummy_str));
|
/external/chromium_org/chrome/browser/safe_browsing/ |
protocol_manager_helper.h | 26 std::string version; member in struct:SafeBrowsingProtocolConfig 35 // returns version 36 static std::string Version(); 39 // |client_name| and |version|. When not empty, |additional_query| is 44 const std::string& version,
|
/external/chromium_org/chromeos/dbus/ |
bluetooth_profile_service_provider.h | 54 // Profile version. 55 uint16 version; member in struct:chromeos::BluetoothProfileServiceProvider::Delegate::Options
|
/external/chromium_org/components/cloud_devices/common/ |
cloud_device_description.cc | 33 std::string version; local 34 root_->GetString(json::kVersion, &version); 35 return version == json::kVersion10;
|
/external/chromium_org/components/domain_reliability/ |
config.h | 110 std::string version; member in class:domain_reliability::DomainReliabilityConfig
|
/external/chromium_org/components/search_engines/ |
template_url_prepopulate_data_unittest.cc | 132 int version = TemplateURLPrepopulateData::GetDataVersion(&prefs_); local 133 EXPECT_EQ(1, version); 218 int version = TemplateURLPrepopulateData::GetDataVersion(&prefs_); local 219 EXPECT_EQ(1, version); 224 version = TemplateURLPrepopulateData::GetDataVersion(&prefs_); 225 EXPECT_EQ(TemplateURLPrepopulateData::kCurrentDataVersion, version);
|
/external/chromium_org/content/browser/renderer_host/pepper/ |
content_browser_pepper_host_factory.cc | 113 ppapi::TCPSocketVersion version; local 114 if (!UnpackMessage<PpapiHostMsg_TCPSocket_Create>(message, &version) || 115 version == ppapi::TCP_SOCKET_VERSION_PRIVATE) { 119 return CreateNewTCPSocket(instance, params.pp_resource(), version); 240 ppapi::TCPSocketVersion version, 246 host_, instance, version, socket.Pass())); 255 ppapi::TCPSocketVersion version) { 260 new PepperTCPSocketMessageFilter(this, host_, instance, version));
|
/external/chromium_org/content/public/common/ |
webplugininfo.cc | 13 #include "base/version.h" 38 version(rhs.version), 50 version = rhs.version; 64 version(fake_version), 73 base::Version* parsed_version) { 74 // Remove spaces and ')' from the version string, 76 std::string version = base::UTF16ToASCII(version_string); local 77 base::RemoveChars(version, ") ", &version) [all...] |
/external/chromium_org/crypto/ |
secure_hash_default.cc | 61 int version; local 62 if (!data_iterator->ReadInt(&version)) 65 if (version > kSecureHashVersion)
|
secure_hash_openssl.cc | 67 int version; local 68 if (!data_iterator->ReadInt(&version)) 71 if (version > kSecureHashVersion)
|
/external/chromium_org/extensions/browser/api/runtime/ |
runtime_api_delegate.h | 9 #include "base/version.h" 32 std::string version; member in struct:extensions::RuntimeAPIDelegate::UpdateCheckResult 36 const std::string& version); 50 // Determines an extension's previously installed version if applicable. 51 virtual base::Version GetPreviousExtensionVersion(
|
/external/chromium_org/extensions/browser/ |
verified_contents.h | 13 #include "base/version.h" 47 const base::Version& version() const { return version_; } function in class:extensions::VerifiedContents 85 base::Version version_;
|