/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
FindMatchRectsDetails.java | 13 /** Version of the the rects in this result. */ 14 public final int version; field in class:FindMatchRectsDetails 22 public FindMatchRectsDetails(int version, RectF[] rects, RectF activeRect) { 23 this.version = version;
|
/external/chromium_org/chrome/browser/component_updater/test/ |
component_installers_unittest.cc | 13 #include "base/version.h" 81 Version version; local 82 EXPECT_TRUE(CheckPepperFlashManifest(*root, &version)); 83 EXPECT_TRUE(version.IsValid());
|
/external/chromium_org/chrome/browser/safe_browsing/ |
protocol_manager_helper.h | 26 std::string version; member in struct:SafeBrowsingProtocolConfig 32 // returns version 33 static std::string Version(); 36 // |client_name| and |version|. When not empty, |additional_query| is 41 const std::string& version,
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
devtools_http_client_unittest.cc | 149 std::string version; local 150 Status status = internal::ParseVersionInfo(data, &version); 152 ASSERT_TRUE(version.empty()); 170 std::string version; local 171 Status status = internal::ParseVersionInfo("{\"Browser\": \"1\"}", &version); 173 ASSERT_EQ("1", version);
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/ |
chrome_test.py | 10 version = 1 variable 17 utils.update_version(pwd + '/src', False, version, setup, None)
|
/external/chromium_org/content/renderer/ |
shared_memory_seqlock_reader.cc | 37 base::subtle::Atomic32 version; local 39 version = seqlock->ReadBegin(); 44 } while (seqlock->ReadRetry(version));
|
/external/chromium_org/media/midi/ |
midi_port_info.h | 29 std::string version; member in struct:media::MIDIPortInfo
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/ |
utsname.h | 14 char version[_UTSNAME_LENGTH]; member in struct:utsname
|
/external/chromium_org/net/disk_cache/simple/ |
simple_version_upgrade.h | 39 uint32 version; member in struct:disk_cache::FakeIndexData
|
/external/chromium_org/net/proxy/ |
dhcpcsvc_init_win.cc | 18 DWORD version = 0; local 19 DWORD err = DhcpCApiInitialize(&version);
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-maxp-table.hh | 53 likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000))); 56 /* We only implement version 0.5 as none of the extra fields in version 1.0 are useful. */ 58 FixedVersion version; /* Version of the maxp table (0.5 or 1.0), member in struct:OT::maxp
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
version.c | 1 /* apps/version.c */ 53 * The licence and distribution terms for any publically available version or 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local 151 if (argc == 1) version=1; 155 version=1; 167 date=version=cflags=options=platform=dir=1; 170 BIO_printf(bio_err,"usage:version -[avbofpd]\n"); 176 if (version)
|
/external/chromium_org/third_party/ots/src/ |
head.cc | 18 uint32_t version = 0; local 19 if (!table.ReadU32(&version) || 24 if (version >> 16 != 1) {
|
post.h | 17 uint32_t version; member in struct:ots::OpenTypePOST
|
/external/chromium_org/third_party/python_gflags/ |
setup.py | 35 version='2.0', variable
|
/external/chromium_org/third_party/skia/src/gpu/gl/android/ |
GrGLCreateNativeInterface_android.cpp | 20 static const GrGLInterface* create_es_interface(GrGLVersion version, 22 if (version < GR_GL_VER(2,0)) { 103 if (version >= GR_GL_VER(3,0)) { 172 if (version >= GR_GL_VER(3,0)) { 216 static const GrGLInterface* create_desktop_interface(GrGLVersion version, 220 if (version < GR_GL_VER(4,4)) { 419 GrGLVersion version = GrGLGetVersionFromString(verStr); local 428 return create_es_interface(version, extensions); 430 return create_desktop_interface(version, extensions);
|
/external/chromium_org/tools/gyp/ |
setup.py | 11 version='0.1', variable
|
/external/e2fsprogs/contrib/python-uuid/ |
setup.py | 9 version = '1.0', variable
|
/external/harfbuzz_ng/src/ |
hb-ot-maxp-table.hh | 53 likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000))); 56 /* We only implement version 0.5 as none of the extra fields in version 1.0 are useful. */ 58 FixedVersion version; /* Version of the maxp table (0.5 or 1.0), member in struct:OT::maxp
|
/external/openssl/apps/ |
version.c | 1 /* apps/version.c */ 53 * The licence and distribution terms for any publically available version or 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local 151 if (argc == 1) version=1; 155 version=1; 167 date=version=cflags=options=platform=dir=1; 170 BIO_printf(bio_err,"usage:version -[avbofpd]\n"); 176 if (version)
|
/external/skia/src/gpu/gl/android/ |
GrGLCreateNativeInterface_android.cpp | 20 static const GrGLInterface* create_es_interface(GrGLVersion version, 22 if (version < GR_GL_VER(2,0)) { 103 if (version >= GR_GL_VER(3,0)) { 172 if (version >= GR_GL_VER(3,0)) { 216 static const GrGLInterface* create_desktop_interface(GrGLVersion version, 220 if (version < GR_GL_VER(4,4)) { 419 GrGLVersion version = GrGLGetVersionFromString(verStr); local 428 return create_es_interface(version, extensions); 430 return create_desktop_interface(version, extensions);
|
/external/webrtc/src/modules/audio_processing/ns/ |
noise_suppression.c | 19 const char version[] = "NS 2.2.0"; local 20 const short versionLen = (short)strlen(version) + 1; // +1: null-termination 30 strncpy(versionStr, version, versionLen);
|
noise_suppression_x.c | 19 const char version[] = "NS\t3.1.0"; local 20 const short versionLen = (short)strlen(version) + 1; // +1: null-termination 30 strncpy(versionStr, version, versionLen);
|
/frameworks/base/services/java/com/android/server/updates/ |
TZInfoInstallReceiver.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 27 super("/data/misc/zoneinfo/", "tzdata", "metadata/", "version"); 31 protected void install(byte[] encodedContent, int version) throws IOException { 32 super.install(Base64.decode(encodedContent, Base64.DEFAULT), version); local
|
/libcore/luni/src/main/java/libcore/io/ |
StructUtsname.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 34 /** The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011". */ 35 public final String version; field in class:StructUtsname 40 StructUtsname(String sysname, String nodename, String release, String version, String machine) { 44 this.version = version;
|