Searched refs:version (Results 51 - 75 of 4103) sorted by relevance

1234567891011>>

/external/kernel-headers/original/uapi/linux/
H A Dutsname.h10 char version[9]; member in struct:oldold_utsname
20 char version[65]; member in struct:old_utsname
28 char version[__NEW_UTS_LEN + 1]; member in struct:new_utsname
/external/icu/icu4c/source/i18n/
H A Dcollationtailoring.cpp50 version[0] = version[1] = version[2] = version[3] = 0;
83 CollationTailoring::makeBaseVersion(const UVersionInfo ucaVersion, UVersionInfo version) { argument
84 version[0] = UCOL_BUILDER_VERSION;
85 version[1] = (ucaVersion[0] << 3) + ucaVersion[1];
86 version[2] = ucaVersion[2] << 6;
87 version[3] = 0;
92 version[
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DAbstractFullBox.java30 private int version; field in class:AbstractFullBox
42 return version;
45 public void setVersion(int version) { argument
46 this.version = version;
59 * Parses the version/flags header and returns the remaining box size.
65 version = IsoTypeReader.readUInt8(content);
71 IsoTypeWriter.writeUInt8(bb, version);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DVersion.java26 * A Version IQ packet, which is used by XMPP clients to discover version information
29 * An example to discover the version of the server:
31 * // Request the version from the server.
54 private String version; field in class:Version
78 * Returns the specific version of the software. This property will always be
81 * @return the specific version of the software.
84 return version;
88 * Sets the specific version of the software. This message should only be
91 * @param version the specific version o
93 setVersion(String version) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_syswm.h8 version 2.1 of the License, or (at your option) any later version.
73 SDL_version version; member in struct:SDL_SysWMmsg
85 SDL_version version; member in struct:SDL_SysWMinfo
121 SDL_version version; member in struct:SDL_SysWMmsg
127 SDL_version version ; member in struct:SDL_SysWMinfo
137 SDL_version version; member in struct:SDL_SysWMmsg
146 SDL_version version; member in struct:SDL_SysWMinfo
155 SDL_version version; member in struct:SDL_SysWMmsg
162 SDL_version version; member in struct:SDL_SysWMinfo
174 SDL_version version; member in struct:SDL_SysWMmsg
180 SDL_version version; member in struct:SDL_SysWMinfo
187 SDL_version version; member in struct:SDL_SysWMmsg
192 SDL_version version; member in struct:SDL_SysWMinfo
200 SDL_version version; member in struct:SDL_SysWMmsg
206 SDL_version version; member in struct:SDL_SysWMinfo
[all...]
/external/chromium_org/content/public/common/
H A Dwebplugininfo.cc13 #include "base/version.h"
38 version(rhs.version),
50 version = rhs.version;
64 version(fake_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/net/spdy/
H A Dspdy_protocol.cc28 bool SpdyConstants::IsValidFrameType(SpdyMajorVersion version, argument
30 switch (version) {
34 if (frame_type_field < SerializeFrameType(version, SYN_STREAM)) {
39 if (frame_type_field > SerializeFrameType(version, WINDOW_UPDATE)) {
47 if (frame_type_field == SerializeFrameType(version, ALTSVC) ||
48 frame_type_field == SerializeFrameType(version, BLOCKED)) {
53 if (frame_type_field < SerializeFrameType(version, DATA)) {
58 if (frame_type_field > SerializeFrameType(version, CONTINUATION)) {
65 LOG(DFATAL) << "Unhandled SPDY version " << version;
69 ParseFrameType(SpdyMajorVersion version, int frame_type_field) argument
128 SerializeFrameType(SpdyMajorVersion version, SpdyFrameType frame_type) argument
192 DataFrameType(SpdyMajorVersion version) argument
206 IsValidSettingId(SpdyMajorVersion version, int setting_id_field) argument
245 ParseSettingId(SpdyMajorVersion version, int setting_id_field) argument
290 SerializeSettingId(SpdyMajorVersion version, SpdySettingsIds id) argument
338 IsValidRstStreamStatus(SpdyMajorVersion version, int rst_stream_status_field) argument
387 ParseRstStreamStatus( SpdyMajorVersion version, int rst_stream_status_field) argument
447 SerializeRstStreamStatus( SpdyMajorVersion version, SpdyRstStreamStatus rst_stream_status) argument
512 IsValidGoAwayStatus(SpdyMajorVersion version, int goaway_status_field) argument
549 ParseGoAwayStatus(SpdyMajorVersion version, int goaway_status_field) argument
616 SerializeMajorVersion(SpdyMajorVersion version) argument
632 GetVersionString(SpdyMajorVersion version) argument
648 SerializeGoAwayStatus(SpdyMajorVersion version, SpdyGoAwayStatus status) argument
712 GetDataFrameMinimumSize(SpdyMajorVersion version) argument
725 GetControlFrameHeaderSize(SpdyMajorVersion version) argument
738 GetPrefixLength(SpdyFrameType type, SpdyMajorVersion version) argument
747 GetFrameMaximumSize(SpdyMajorVersion version) argument
760 GetSizeOfSizeField(SpdyMajorVersion version) argument
764 GetSettingSize(SpdyMajorVersion version) argument
[all...]
/external/chromium_org/mojo/public/python/mojo/bindings/
H A Dserialization.py29 self.version = _GetVersion(groups)
34 self.version: main_struct,
37 self.version: groups,
41 return self._GetStruct(self.version)
43 def _GetGroups(self, version):
44 # If asking for a version greater than the last known.
45 version = min(version, self.version)
46 if version no
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_handle.cc17 GetWebServiceWorkerState(ServiceWorkerVersion* version) { argument
18 DCHECK(version);
19 switch (version->status()) {
21 if (version->running_status() == ServiceWorkerVersion::RUNNING)
36 NOTREACHED() << version->status();
47 ServiceWorkerVersion* version) {
48 if (!context || !version)
51 context->GetLiveRegistration(version->registration_id());
53 context, sender, thread_id, provider_id, registration, version));
62 ServiceWorkerVersion* version)
42 Create( base::WeakPtr<ServiceWorkerContextCore> context, IPC::Sender* sender, int thread_id, int provider_id, ServiceWorkerVersion* version) argument
56 ServiceWorkerHandle( base::WeakPtr<ServiceWorkerContextCore> context, IPC::Sender* sender, int thread_id, int provider_id, ServiceWorkerRegistration* registration, ServiceWorkerVersion* version) argument
83 OnWorkerStarted(ServiceWorkerVersion* version) argument
86 OnWorkerStopped(ServiceWorkerVersion* version) argument
89 OnErrorReported(ServiceWorkerVersion* version, const base::string16& error_message, int line_number, int column_number, const GURL& source_url) argument
96 OnReportConsoleMessage(ServiceWorkerVersion* version, int source_identifier, int message_level, const base::string16& message, int line_number, const GURL& source_url) argument
104 OnVersionStateChanged(ServiceWorkerVersion* version) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dbranch_utility.py15 one of 'stable', 'beta', 'dev', or 'master'. |branch| and |version| correspond
17 |branch| and |version| can occasionally be the same for separate channels
22 def __init__(self, channel, branch, version):
27 assert isinstance(version, int) or version == 'master', version
30 self.version = version
46 '''Provides methods for working with Chrome channel, branch, and version
55 self._version_object_store = create_object_store('version')
[all...]
H A Dcaching_rietveld_patcher.py12 ''' Append @version for keys to distinguish between different patchsets of
15 def _MakeKey(path, version):
16 return '%s@%s' % (path, version)
18 def _ToObjectStoreValue(raw_value, version):
19 return dict((_MakeKey(key, version), raw_value[key])
27 version,
33 self._version = version
67 self._version_object_store = create_object_store('version')
73 key = 'version'
76 version, tim
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/
H A DVersion.src24 * Administrative class to keep track of the version number of
28 * to get version information. This class will replace the older
31 * information about the version of the XSLT spec we support.</P>
38 * Get the basic version string for the current Xalan release.
42 * Futurework: have this read version info from jar manifest.
44 * @return String denoting our current version
55 * Print the processor version to the command line.
82 * Major version number.
86 * version.
94 return @version
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLProcessorVersion.src24 * Administrative class to keep track of the version number of
34 * Print the processor version to the command line.
54 * Major version number.
58 * version.
64 public static final int VERSION = @version.VERSION@;
74 public static final int RELEASE = @version.RELEASE@;
85 public static final int MAINTENANCE = @version.MINOR@;
109 * <P>Semantics of the version string are identical to the Xerces project.</P>
/external/chromium_org/ppapi/api/
H A Dppb_messaging.idl83 [version=1.0]
121 [version=1.2]
141 [version=1.2]
/external/chromium_org/ppapi/generators/test_cgen_range/
H A Ddev_channel_interface.idl37 [version=1.2]
59 [dev_version=1.1, version=1.2]
65 [dev_version=1.1, version=1.2]
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dsetup.py35 version='2.0', variable
/external/chromium_org/chrome/browser/profiles/
H A Dchrome_version_service.cc8 #include "base/version.h"
24 const std::string& version) {
25 prefs->SetString(prefs::kProfileCreatedByVersion, version);
36 // Obtain the Chrome version info.
39 // If this is a new profile set version to current version, otherwise
42 std::string version = version_info.Version(); local
45 SetVersion(prefs, version);
23 SetVersion(PrefService* prefs, const std::string& version) argument
/external/chromium_org/sdch/open-vcdiff/
H A Dmkinstalldirs21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
41 --version)
76 # from a parallel make. We use --version in the probe to restrict
80 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
89 test -d ./--version && rmdir ./--version
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
94 test ! -d ./--version; then
99 for d in ./-m ./-p ./--version "
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dmkinstalldirs21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
41 --version)
76 # from a parallel make. We use --version in the probe to restrict
80 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
89 test -d ./--version && rmdir ./--version
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
94 test ! -d ./--version; then
99 for d in ./-m ./-p ./--version "
[all...]
/external/chromium_org/third_party/ots/src/
H A Dltsh.h15 uint16_t version; member in struct:ots::OpenTypeLTSH
/external/chromium_org/third_party/python_gflags/
H A Dsetup.py35 version='2.0', variable
/external/chromium_org/third_party/tcmalloc/vendor/
H A Dmkinstalldirs21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
41 --version)
76 # from a parallel make. We use --version in the probe to restrict
80 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
89 test -d ./--version && rmdir ./--version
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
94 test ! -d ./--version; then
99 for d in ./-m ./-p ./--version "
[all...]
/external/chromium_org/third_party/tlslite/
H A Dsetup.py9 version="0.4.6", variable
/external/chromium_org/third_party/yasm/source/patched-yasm/config/
H A Dmkinstalldirs21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
41 --version)
76 # from a parallel make. We use --version in the probe to restrict
80 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
89 test -d ./--version && rmdir ./--version
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
94 test ! -d ./--version; then
99 for d in ./-m ./-p ./--version "
[all...]
/external/chromium_org/tools/gyp/
H A Dsetup.py11 version='0.1', variable

Completed in 2368 milliseconds

1234567891011>>