HomeSort by relevance Sort by last modified time
    Searched refs:major (Results 1 - 25 of 556) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/
version.h 55 #define _ELFUTILS_PREREQ(major, minor) \
56 (_ELFUTILS_VERSION >= ((major) * 1000 + (minor)))
  /external/apache-http/src/org/apache/http/
HttpVersion.java 64 * @param major the major version number of the HTTP protocol
67 * @throws IllegalArgumentException if either major or minor version number is negative
69 public HttpVersion(int major, int minor) {
70 super(HTTP, major, minor);
77 * @param major the major version
82 public ProtocolVersion forVersion(int major, int minor) {
84 if ((major == this.major) && (minor == this.minor))
    [all...]
ProtocolVersion.java 47 * protocol name, major version number, and minor version number.
64 /** Major version number of the protocol */
65 protected final int major; field in class:ProtocolVersion
75 * @param major the major version number of the protocol
78 public ProtocolVersion(String protocol, int major, int minor) {
83 if (major < 0) {
85 ("Protocol major version number must not be negative.");
92 this.major = major;
    [all...]
  /external/elfutils/config/
version.h.in 55 #define _ELFUTILS_PREREQ(major, minor) \
56 (_ELFUTILS_VERSION >= ((major) * 1000 + (minor)))
  /cts/tools/dasm/src/java_cup/
version.java 9 * Version numbers used here are broken into 3 parts: major, minor, and
10 * update, and are written as v<major>.<minor><update> (e.g. v0.9a).
11 * Major numbers will change at the time of major reworking of some
27 /** The major version number. */
28 public static final int major = 0; field in class:version
  /external/dbus/dbus/
dbus-misc.c 100 * The COMPILE TIME major version of libdbus, that is, the "X" in "X.Y.Z",
125 * significant byte, the major version in the next most significant byte,
150 * The libdbus full version number is "MAJOR.MINOR.MICRO" where the
152 * release of a MAJOR.MINOR series. The MINOR is an odd number for
155 * @param major_version_p pointer to return the major version, or #NULL
187 int major, minor, micro; local
196 * typo (mixing up major and minor, that sort of thing).
198 dbus_get_version (&major, &minor, &micro);
200 _dbus_assert (major == DBUS_MAJOR_VERSION);
216 _dbus_assert (MAKE_VERSION (major, minor, micro) == DBUS_VERSION)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebkitglobal.h 26 // QTWEBKIT_VERSION is (major << 16) + (minor << 8) + patch. Similar to Qt.
29 #define QTWEBKIT_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch))
  /external/webkit/Source/WebKit/gtk/webkit/
webkitversion.h.in 35 #define WEBKIT_CHECK_VERSION(major, minor, micro) \
36 (WEBKIT_MAJOR_VERSION > (major) || \
37 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \
38 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \
51 webkit_check_version (guint major, guint minor, guint micro);
  /external/chromium/third_party/libjingle/source/talk/base/
macutils.cc 109 bool GetOSVersion(int* major, int* minor, int* bugfix) {
110 ASSERT(major && minor && bugfix);
111 if (!GetGestalt(gestaltSystemVersion, major))
113 if (*major < 0x1040) {
114 *bugfix = *major & 0xF;
115 *minor = (*major >> 4) & 0xF;
116 *major = (*major >> 8);
119 return GetGestalt(gestaltSystemVersionMajor, major)
125 int major = 0, minor = 0, bugfix = 0 local
    [all...]
win32.h 100 bool GetOsVersion(int* major, int* minor, int* build);
103 int major; local
104 return (GetOsVersion(&major, NULL, NULL) && major >= kWindowsVista);
108 int major, minor; local
109 return (GetOsVersion(&major, &minor, NULL) &&
110 (major >= kWindowsVista ||
111 (major == kWindows2000 && minor >= 1)));
  /external/v8/test/cctest/
test-version.cc 39 void SetVersion(int major, int minor, int build, int patch,
41 Version::major_ = major;
52 static void CheckVersion(int major, int minor, int build,
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
  /external/chromium/net/http/
http_version.h 13 // Wrapper for an HTTP (major,minor) version pair.
16 // Default constructor (major=0, minor=0).
19 // Build from unsigned major/minor pair.
20 HttpVersion(uint16 major, uint16 minor) : value_(major << 16 | minor) { }
22 // Major version number.
54 uint32 value_; // Packed as <major>:<minor>
  /external/libnfc-nxp/src/
phLibNfcStatus.h 47 #define LIB_NFC_VERSION_SET(v,major,minor,patch,build) ((v) = \
48 ( ((major) << 24) & 0xFF000000 ) | \
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_version.h 36 /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
43 Uint8 major; member in struct:SDL_version
53 (X)->major = SDL_MAJOR_VERSION; \
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_version.h 36 /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
43 Uint8 major; member in struct:SDL_version
53 (X)->major = SDL_MAJOR_VERSION; \
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_version.h 36 /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
43 Uint8 major; member in struct:SDL_version
53 (X)->major = SDL_MAJOR_VERSION; \
  /prebuilts/tools/windows/sdl/host/include/SDL/
SDL_version.h 41 /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
48 Uint8 major; member in struct:SDL_version
58 (X)->major = SDL_MAJOR_VERSION; \
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_version.h 36 /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
43 Uint8 major; member in struct:SDL_version
53 (X)->major = SDL_MAJOR_VERSION; \
  /bionic/libc/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /development/ndk/platforms/android-3/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /external/clang/test/CodeGen/
2007-09-12-PragmaPack.c 14 uint8_t major; member in struct:__anon5223
  /external/openssh/
gss-serv.c 94 return (ctx->major);
97 if ((ctx->major = gss_acquire_cred(&ctx->minor,
102 return (ctx->major);
155 ctx->major = gss_accept_sec_context(&ctx->minor,
160 if (GSS_ERROR(ctx->major))
168 status = ctx->major;
175 (*flags & GSS_C_INTEG_FLAG))) && (ctx->major == GSS_S_COMPLETE)) {
268 if ((ctx->major = gss_display_name(&ctx->minor, ctx->client,
271 return (ctx->major);
274 if ((ctx->major = gss_export_name(&ctx->minor, ctx->client
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxwm.c 56 if ( info->version.major <= SDL_MAJOR_VERSION ) {
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxwm.c 51 if (info -> version.major <= SDL_MAJOR_VERSION) {
  /external/skia/include/core/
SkGraphics.h 33 static void GetVersion(int32_t* major, int32_t* minor, int32_t* patch);

Completed in 238 milliseconds

1 2 3 4 5 6 7 8 91011>>