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

1 2 3 4 5 6 7 8 9

  /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/webkit/WebKit/gtk/webkit/
webkitversion.h.in 34 #define WEBKIT_CHECK_VERSION(major, minor, micro) \
35 (WEBKIT_MAJOR_VERSION > (major) || \
36 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \
37 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \
50 webkit_check_version (guint major, guint minor, guint micro);
  /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/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/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; \
  /prebuilt/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; \
  /prebuilt/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; \
  /prebuilt/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; \
  /prebuilt/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
  /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) {
  /frameworks/base/opengl/libs/
egl_impl.h 36 EGLint major; member in struct:android::egl_connection_t
  /ndk/build/platforms/android-3/arch-arm/usr/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /ndk/build/platforms/android-4/arch-arm/usr/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /ndk/build/platforms/android-5/arch-arm/usr/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /ndk/build/platforms/android-5/arch-x86/usr/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
sysmacros.h 36 static __inline__ int major(dev_t _dev) function
  /system/vold/
DirectVolume.cpp 87 int major = atoi(evt->findParam("MAJOR")); local
93 major, minor);
94 if (createDeviceNode(nodepath, major, minor)) {
127 mDiskMajor = atoi(evt->findParam("MAJOR"));
167 int major = atoi(evt->findParam("MAJOR")); local
185 if (major != mDiskMajor) {
186 SLOGE("Partition '%s' has a different major than its disk!", devpath);
210 int major = atoi(evt->findParam("MAJOR")) local
243 int major = atoi(evt->findParam("MAJOR")); local
249 int major = atoi(evt->findParam("MAJOR")); local
262 int major = atoi(evt->findParam("MAJOR")); local
    [all...]
  /external/bluetooth/glib/
win32-fixup.pl 3 $major = 1;
20 s/\@GLIB_MAJOR_VERSION\@/$major/g;
  /external/kernel-headers/original/linux/
kdev_t.h 7 #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
12 sprintf((buffer), "%u:%u\n", MAJOR(dev), MINOR(dev))
16 sprintf(buffer, "%u:%u", MAJOR(dev), MINOR(dev)); \
23 return MAJOR(dev) < 256 && MINOR(dev) < 256;
28 return (MAJOR(dev) << 8) | MINOR(dev);
43 unsigned major = MAJOR(dev); local
45 return (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
50 unsigned major = (dev & 0xfff00) >> 8; local
52 return MKDEV(major, minor)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xinerama.h 24 int *major,
xme.h 31 extern Bool XiGMiscQueryVersion(Display *dpy, int *major, int *minor);

Completed in 1539 milliseconds

1 2 3 4 5 6 7 8 9