Searched refs:version (Results 251 - 275 of 4103) sorted by relevance

<<11121314151617181920>>

/external/e2fsprogs/lib/e2p/
H A Dfsetversion.c2 * fsetversion.c - Set a file version on an ext2 file system
10 * General Public License, version 2.
39 int fsetversion (const char * name, unsigned long version) argument
48 ver = (int) version;
57 int ver = (int)version;
/external/robolectric/
H A Dupdate-downloads.rb20 version = match[1] if match
21 version = "SNAPSHOT" unless version
25 download_html += " <td class=\"version\">#{version}</td>\n"
/external/webrtc/src/modules/audio_processing/ns/
H A Dnoise_suppression.c19 const char version[] = "NS 2.2.0"; local
20 const short versionLen = (short)strlen(version) + 1; // +1: null-termination
30 strncpy(versionStr, version, versionLen);
H A Dnoise_suppression_x.c19 const char version[] = "NS\t3.1.0"; local
20 const short versionLen = (short)strlen(version) + 1; // +1: null-termination
30 strncpy(versionStr, version, versionLen);
/external/apache-http/src/org/apache/http/
H A DProtocolVersion.java39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
54 * @version $Revision: 609106 $
69 /** Major version number of the protocol */
72 /** Minor version number of the protocol */
77 * Create a protocol version designator.
80 * @param major the major version numbe
253 greaterEquals(ProtocolVersion version) argument
268 lessEquals(ProtocolVersion version) argument
[all...]
/external/chromium_org/ppapi/api/
H A Dppb_view.idl181 [version=1.1]
195 [version=1.1]
211 [version=1.2]
H A Dppb_media_stream_video_track.idl75 [version=0.1]
87 [version=1.0]
234 [version=1.0]
244 [version=1.0]
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIAccessInitializer.h30 String version; member in struct:blink::MIDIAccessInitializer::PortDescriptor
32 PortDescriptor(const String& id, const String& manufacturer, const String& name, MIDIPort::MIDIPortTypeCode type, const String& version) argument
37 , version(version) { }
51 virtual void didAddInputPort(const String& id, const String& manufacturer, const String& name, const String& version) OVERRIDE;
52 virtual void didAddOutputPort(const String& id, const String& manufacturer, const String& name, const String& version) OVERRIDE;
/external/chromium_org/third_party/ots/src/
H A Dgasp.cc22 if (!table.ReadU16(&gasp->version) ||
27 if (gasp->version > 1) {
28 // Lots of Linux fonts have bad version numbers...
29 OTS_WARNING("bad version: %u", gasp->version);
69 if (gasp->version == 0 && (behavior >> 2) != 0) {
70 OTS_WARNING("changed the version number to 1");
71 gasp->version = 1;
87 if (!out->WriteU16(gasp->version) ||
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_g_a_s_p.py16 self.version, numRanges = struct.unpack(">HH", data[:4])
17 assert 0 <= self.version <= 1, "unknown 'gasp' format: %s" % self.version
27 version = 0 # ignore self.version
34 version = 1
35 data = struct.pack(">HH", version, numRanges) + data
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_a_s_p.py16 self.version, numRanges = struct.unpack(">HH", data[:4])
17 assert 0 <= self.version <= 1, "unknown 'gasp' format: %s" % self.version
27 version = 0 # ignore self.version
34 version = 1
35 data = struct.pack(">HH", version, numRanges) + data
/external/protobuf/
H A Dbuild.gradle58 version "2.3"
67 version "2.3"
76 version "2.3"
/external/apache-http/src/org/apache/http/impl/client/
H A DRequestWrapper.java56 * @version $Revision: 674186 $
71 private ProtocolVersion version; field in class:RequestWrapper
85 this.version = null;
95 this.version = request.getProtocolVersion();
118 if (this.version != null) {
119 return this.version;
125 public void setProtocolVersion(final ProtocolVersion version) { argument
126 this.version = version;
/external/apache-http/src/org/apache/http/params/
H A DHttpProtocolParamBean.java56 public void setVersion (final HttpVersion version) { argument
57 HttpProtocolParams.setVersion(params, version);
/external/bison/tests/
H A Dbison.in9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
38 if $PERL --version >/dev/null; then
/external/chromium_org/android_webview/public/browser/
H A Ddraw_sw.h22 int version; // The kAwPixelInfoVersion this struct was built with. member in struct:AwPixelInfo
51 int version; member in struct:AwDrawSWFunctionTable
/external/chromium_org/base/
H A Dversion_unittest.cc5 #include "base/version.h"
57 Version version(cases[i].input);
58 EXPECT_EQ(cases[i].success, version.IsValid());
60 EXPECT_EQ(cases[i].parts, version.components().size());
112 const Version version(cases[i].lhs);
113 const int result = version.CompareToWildcardString(cases[i].rhs);
120 const char* version; member in struct:__anon2592::version_compare
136 EXPECT_EQ(Version::IsValidWildcardString(cases[i].version),
137 cases[i].expected) << cases[i].version << "?" << cases[i].expected;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprotocol_manager_helper.h26 std::string version; member in struct:SafeBrowsingProtocolConfig
35 // returns version
39 // |client_name| and |version|. When not empty, |additional_query| is
44 const std::string& version,
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcompiled_file_system.py71 def __init__(self, cache_data, version):
74 self.version = version
224 version = self._file_system.Stat(path).version
227 version = None
232 if (cache_entry is not None) and (version == cache_entry.version):
237 self._Set(self._file_object_store, path, _CacheEntry(cache_data, version))
250 version
[all...]
/external/chromium_org/chrome/installer/util/
H A Dfake_product_state.h16 // Takes ownership of |version|.
17 void set_version(Version* version) { version_.reset(version); } argument
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_registration.h80 // Sets the corresposding version attribute and resets the position
81 // (if any) left vacant (ie. by a waiting version being promoted).
83 void SetActiveVersion(ServiceWorkerVersion* version);
84 void SetWaitingVersion(ServiceWorkerVersion* version);
85 void SetInstallingVersion(ServiceWorkerVersion* version);
87 // If version is the installing, waiting, active version of this
90 void UnsetVersion(ServiceWorkerVersion* version);
92 // Triggers the [[Activate]] algorithm when the currently active version
98 // active version ha
[all...]
/external/chromium_org/native_client_sdk/src/tools/
H A Dgetos.py69 version = None
76 version = value.strip()
82 if revision is None or version is None or commit_position is None:
86 version = int(version)
91 return (version, revision, commit_position)
186 def ParseVersion(version):
187 """Parses a version number of the form '<major>.<position>'.
191 if '.' in version:
192 version
[all...]
/external/chromium_org/ppapi/api/dev/
H A Dppp_scrollbar_dev.idl27 [version=0.3]
/external/chromium_org/ppapi/api/private/
H A Dppb_flash_device_id.idl24 [version=1.0]
/external/chromium_org/ppapi/generators/test_cgen/
H A Dstdint.idl18 [version=0.0]

Completed in 7143 milliseconds

<<11121314151617181920>>