Searched defs:major (Results 1 - 25 of 96) sorted by relevance

1234

/external/chromium/sdch/open-vcdiff/packages/deb/
H A Drules32 #major=2
36 major=`ls src/.libs/lib*.so.* | \ macro
/external/bluetooth/bluedroid/bta/include/
H A Dutl.h47 UINT8 major; member in struct:__anon773
128 ** BTA_UTL_SET_COD_MAJOR_MINOR, - overwrite major, minor class
131 ** BTA_UTL_SET_COD_ALL - overwrite major, minor, set the bits in service class
132 ** BTA_UTL_INIT_COD - overwrite major, minor, and service class
/external/apache-http/src/org/apache/http/
H A DHttpVersion.java64 * @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) { argument
70 super(HTTP, major, minor);
77 * @param major the major version
82 public ProtocolVersion forVersion(int major, int minor) { argument
84 if ((major == this.major)
[all...]
H A DProtocolVersion.java47 * protocol name, major version number, and minor version number.
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) { argument
83 if (major < 0) {
85 ("Protocol major version number must not be negative.");
92 this.major = major;
106 * Returns the major versio
139 forVersion(int major, int minor) argument
[all...]
/external/chromium/net/http/
H A Dhttp_version.h13 // 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) { } argument
54 uint32 value_; // Packed as <major>:<minor>
/external/clang/lib/Basic/
H A DVersionTuple.cpp11 // the form major[.minor[.subminor]].
58 unsigned major = 0, minor = 0, micro = 0; local
60 // Parse the major version, [0-9]+
61 if (parseInt(input, major)) return true;
64 *this = VersionTuple(major);
74 *this = VersionTuple(major, minor);
86 *this = VersionTuple(major, minor, micro);
/external/clang/test/CodeGen/
H A D2007-09-12-PragmaPack.c14 uint8_t major; member in struct:__anon4136
/external/dbus/dbus/
H A Ddbus-misc.c100 * 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,
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);
219 _dbus_assert (MAKE_VERSION (major - 1, minor, micro) < DBUS_VERSION);
220 _dbus_assert (MAKE_VERSION (major, mino
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_version.h48 Uint8 major; member in struct:SDL_version
59 (X)->major = SDL_MAJOR_VERSION; \
/external/skia/src/gpu/mac/
H A DSkNativeGLContext_mac.cpp35 GLint major, minor; local
38 aglGetVersion(&major, &minor);
39 //SkDebugf("---- agl version %d %d\n", major, minor);
/external/blktrace/
H A Dverify_blkparse.c13 int major, minor, cpu, nr, alias; local
36 if (sscanf(p, "%3d,%3d %2d %8d %lf", &major, &minor, &cpu, &seq, &this_time) != 5)
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java178 int major;
180 major = Integer.parseInt(buffer.substringTrimmed(i, period));
183 ("Invalid protocol major version number: " +
203 return createProtocolVersion(major, minor);
212 * @param major the major version number, for example 1 in HTTP/1.0
217 protected ProtocolVersion createProtocolVersion(int major, int minor) { argument
218 return protocol.forVersion(major, minor);
243 // this works only for single-digit major and minor version
/external/bluetooth/bluedroid/bta/sys/
H A Dutl.c181 ** BTA_UTL_SET_COD_MAJOR_MINOR, - overwrite major, minor class
184 ** BTA_UTL_SET_COD_ALL - overwrite major, minor, set the bits in service class
185 ** BTA_UTL_INIT_COD - overwrite major, minor, and service class
194 UINT8 minor, major; local
200 BTM_COD_MAJOR_CLASS(major, dev );
206 major = p_cod->major & BTM_COD_MAJOR_CLASS_MASK;
222 major = p_cod->major & BTM_COD_MAJOR_CLASS_MASK;
229 major
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c168 int major, minor; local
174 fprintf(stderr, "\t: %s major minor\n", argv[0]);
184 major = strtoul(argv[1], &tmp, 0);
186 fprintf(stderr, errmsg, "major number", argv[1]);
194 device = makedev(major, minor);
196 major, minor);
/external/kernel-headers/original/linux/
H A Dkdev_t.h43 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);
/external/kernel-headers/original/linux/mtd/
H A Dblktrans.h37 int major; member in struct:mtd_blktrans_ops
/external/skia/src/gpu/gl/
H A DGrGLInterface.cpp28 int major, minor; local
31 int n = sscanf(versionString, "%d.%d", &major, &minor);
39 &major, &minor);
46 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor);
59 int major, minor; local
61 int n = sscanf(versionString, "%d.%d", &major, &minor);
63 return GR_GL_VER(major, minor);
68 &major, &minor);
70 return GR_GL_VER(major, minor);
73 n = sscanf(versionString, "OpenGL ES %d.%d", &major,
87 int major, minor; local
[all...]
/external/v8/test/cctest/
H A Dtest-version.cc39 void SetVersion(int major, int minor, int build, int patch, argument
41 Version::major_ = major;
52 static void CheckVersion(int major, int minor, int build, argument
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
/external/webkit/Source/WebCore/platform/win/
H A DSystemInfo.cpp34 WindowsVersion windowsVersion(int* major, int* minor) argument
83 if (major)
84 *major = majorVersion;
92 int major, minor; local
93 WindowsVersion version = windowsVersion(&major, &minor);
114 return makeString(familyName, String::number(major), '.', String::number(minor));
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmacutils.cc109 bool GetOSVersion(int* major, int* minor, int* bugfix) { argument
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 local
[all...]
H A Dwin32.cc147 bool GetOsVersion(int* major, int* minor, int* build) { argument
151 if (major) *major = info.dwMajorVersion;
H A Dwin32.h100 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/e2fsprogs/lib/blkid/
H A Ddevno.c2 * devno.c - find a particular device by its device number (major/minor)
193 int major, minor; local
199 fprintf(stderr, "Usage:\t%s device_number\n\t%s major minor\n"
211 major = strtoul(argv[1], &tmp, 0);
213 fprintf(stderr, errmsg, "major number", argv[1]);
221 devno = makedev(major, minor);
/external/emma/core/java12/com/vladium/emma/
H A DEMMAProperties.java84 public static String makeAppVersion (final int major, final int minor, final int build) argument
88 buf.append (major);
/external/openssh/
H A Dssh-gss.h89 OM_uint32 major; /* both */ member in struct:__anon10272

Completed in 630 milliseconds

1234