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

123456789

/external/chromium_org/third_party/mesa/src/
H A DAndroid.common.mk37 major := $(word 1, $(subst ., , $(PLATFORM_VERSION))) macro
40 -DANDROID_VERSION=0x0$(major)0$(minor)
/external/mesa3d/
H A DAndroid.common.mk37 major := $(word 1, $(subst ., , $(PLATFORM_VERSION))) macro
40 -DANDROID_VERSION=0x0$(major)0$(minor)
/external/chromium_org/gpu/gles2_conform_support/
H A Dgles2_conform_support.c13 EGLint major, minor; local
18 eglInitialize(eglDisplay, &major, &minor);
/external/chromium_org/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.h48 UINT8 major; member in struct:__anon919
129 ** BTA_UTL_SET_COD_MAJOR_MINOR, - overwrite major, minor class
132 ** BTA_UTL_SET_COD_ALL - overwrite major, minor, set the bits in service class
133 ** BTA_UTL_INIT_COD - overwrite major, minor, and service class
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dgenversion.c39 int major, minor, subminor, patchlevel, matched; local
46 matched = sscanf(PACKAGE_VERSION, "%d.%d.%d.%d", &major, &minor, &subminor,
66 fprintf(out, "%%define __YASM_MAJOR__ %d\n", major);
73 fprintf(out, "%%define __YASM_VERSION_ID__ 0%02x%02x%02x%02xh\n", major,
/external/harfbuzz_ng/test/api/
H A Dtest-version.c35 unsigned int major, minor, micro; local
38 hb_version (&major, &minor, &micro);
40 g_assert_cmpint (major, ==, HB_VERSION_MAJOR);
44 s = g_strdup_printf ("%u.%u.%u", major, minor, micro);
49 g_assert (HB_VERSION_ATLEAST (major, minor, micro));
50 if (major)
51 g_assert (HB_VERSION_ATLEAST (major-1, minor, micro));
53 g_assert (HB_VERSION_ATLEAST (major, minor-1, micro));
55 g_assert (HB_VERSION_ATLEAST (major, minor, micro-1));
56 g_assert (!HB_VERSION_ATLEAST (major
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpVersion.java69 * @param major the major version number of the HTTP protocol
72 * @throws IllegalArgumentException if either major or minor version number is negative
74 public HttpVersion(int major, int minor) { argument
75 super(HTTP, major, minor);
82 * @param major the major version
87 public ProtocolVersion forVersion(int major, int minor) { argument
89 if ((major == this.major)
[all...]
H A DProtocolVersion.java47 * protocol name, major version number, and minor version number.
70 protected final int major; field in class:ProtocolVersion
80 * @param major the major version number of the protocol
83 public ProtocolVersion(String protocol, int major, int minor) { argument
88 if (major < 0) {
90 ("Protocol major version number must not be negative.");
97 this.major = major;
111 * Returns the major versio
144 forVersion(int major, int minor) argument
[all...]
/external/chromium_org/net/http/
H A Dhttp_version.h12 // Wrapper for an HTTP (major,minor) version pair.
15 // Default constructor (major=0, minor=0).
18 // Build from unsigned major/minor pair.
19 HttpVersion(uint16 major, uint16 minor) : value_(major << 16 | minor) { } argument
53 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:__anon18544
/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/smack/src/com/kenai/jbosh/
H A DAttrVersion.java40 private final int major; field in class:AttrVersion
59 "Illegal ver attribute value (not in major.minor form): "
65 major = Integer.parseInt(majorStr);
68 "Could not parse ver attribute value (major ver): "
72 if (major < 0) {
119 * Returns the 'major' portion of the version number.
121 * @return major digits only
124 return major;
149 if (major < other.major) {
[all...]
/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/chromium_org/base/
H A Dsys_info_mac.cc27 int32 major, minor, bugfix; local
28 OperatingSystemVersionNumbers(&major, &minor, &bugfix);
29 return base::StringPrintf("%d.%d.%d", major, minor, bugfix);
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java183 int major;
185 major = Integer.parseInt(buffer.substringTrimmed(i, period));
188 ("Invalid protocol major version number: " +
208 return createProtocolVersion(major, minor);
217 * @param major the major version number, for example 1 in HTTP/1.0
222 protected ProtocolVersion createProtocolVersion(int major, int minor) { argument
223 return protocol.forVersion(major, minor);
248 // 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/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx.c103 int major, minor, patch; local
108 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dversion.c41 int major, minor; local
48 n = sscanf(version, "%u.%u", &major, &minor);
54 ctx->Version = major * 10 + minor;
87 GLuint major, minor; local
183 major = 3;
187 major = 3;
191 major = 3;
195 major = 3;
199 major = 2;
203 major
[all...]
/external/chromium_org/third_party/skia/include/gpu/gl/
H A DSkNativeGLContext.h14 static const struct { int major, minor; } gl_versions[] = { member in struct:__anon15110
/external/chromium_org/third_party/skia/src/core/
H A DSkGraphics.cpp31 void SkGraphics::GetVersion(int32_t* major, int32_t* minor, int32_t* patch) { argument
32 if (major) {
33 *major = SKIA_VERSION_MAJOR;
/external/chromium_org/tools/xdisplaycheck/
H A Dxdisplaycheck.cc90 int major = 2, minor = 0; local
91 if (XIQueryVersion(scoped_display.display(), &major, &minor) == BadRequest) {
/external/chromium_org/ui/events/platform/x11/
H A Dx11_event_source.cc40 int major = 2, minor = USE_XI2_MT; local
42 int major = 2, minor = 0; local
44 if (XIQueryVersion(display, &major, &minor) == BadRequest) {
49 if (major < 2 || (major == 2 && minor < USE_XI2_MT)) {
50 DVLOG(1) << "XI version on server is " << major << "." << minor << ". "
64 int major = XkbMajorVersion; local
66 if (!XkbQueryExtension(display, &opcode, &event, &error, &major, &minor)) {
/external/chromium_org/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);

Completed in 823 milliseconds

123456789