HomeSort by relevance Sort by last modified time
    Searched defs:attrib (Results 26 - 50 of 75) sorted by null

12 3

  /dalvik/dx/src/com/android/dx/cf/attrib/
InnerClassList.java 17 package com.android.dx.cf.attrib;
  /external/apache-http/src/org/apache/http/impl/cookie/
CookieSpecBase.java 88 NameValuePair attrib = attribs[j]; local
89 String s = attrib.getName().toLowerCase(Locale.ENGLISH);
91 cookie.setAttribute(s, attrib.getValue());
95 handler.parse(cookie, attrib.getValue());
RFC2965Spec.java 137 NameValuePair attrib = entry.getValue(); local
138 String s = attrib.getName().toLowerCase(Locale.ENGLISH);
140 cookie.setAttribute(s, attrib.getValue());
144 handler.parse(cookie, attrib.getValue());
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 141 Attribute attrib = local
144 at += attrib.byteLength();
145 list.set(i, attrib);
  /external/icu4c/test/intltest/
dadrcoll.cpp 151 UColAttribute attrib; local
158 start = ucol_tok_getNextArgument(start, end, &attrib, &value, &status);
161 col->setAttribute(attrib, value, status);
163 start = ucol_tok_getNextArgument(start, end, &attrib, &value, &status);
  /external/grub/stage2/
fsys_fat.c 296 int attrib = FAT_ATTRIB_DIR; local
321 if (attrib & FAT_ATTRIB_DIR)
335 if (!(attrib & FAT_ATTRIB_DIR))
478 attrib = FAT_DIRENTRY_ATTRIB (dir_buf);
  /frameworks/base/opengl/tests/gl_basic/
gl_basic.cpp 216 EGLint attrib[] = local
240 EGLUtils::selectConfigForNativeWindow(eglDisplay, attrib, window, &myConfig);
  /frameworks/base/opengl/tests/tritex/
tritex.cpp 124 EGLint attrib[] = local
144 EGLUtils::selectConfigForNativeWindow(eglDisplay, attrib, window, &myConfig);
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 88 Token attrib; local
90 attrib = jj_consume_token(ATOKEN);
93 paramNames.add(attrib.image);
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
GLServerVertex.java 343 final GLAttribPointer attrib = attribPointers[i]; local
345 if (attrib.enabled) {
346 size = attrib.size;
347 if (null != attrib.buffer) {
348 final ByteBuffer src = attrib.buffer.data;
349 src.position(attrib.ptr + index * attrib.elemStride);
351 fetchedAttribs[i][dstIdx * 4 + j] = fetchConvert(src, attrib.type,
352 attrib.normalized);
355 fetchedAttribs[i][dstIdx * 4 + j] = fetchConvert(nonVBO, attrib.type
455 GLAttribPointer attrib = attribPointers[msg.getArg0()]; local
    [all...]
  /external/bluetooth/bluez/attrib/
gatt.c 37 GAttrib *attrib; member in struct:discover_primary
45 GAttrib *attrib; member in struct:discover_char
56 g_attrib_unref(dp->attrib);
64 g_attrib_unref(dc->attrib);
133 buf = g_attrib_get_buffer(dp->attrib, &buflen);
140 g_attrib_send(dp->attrib, 0, buf[0], buf, oplen, primary_by_uuid_cb,
202 uint8_t *buf = g_attrib_get_buffer(dp->attrib, &buflen);
206 g_attrib_send(dp->attrib, 0, buf[0], buf, oplen, primary_all_cb,
217 guint gatt_discover_primary(GAttrib *attrib, bt_uuid_t *uuid, gatt_cb_t func,
222 uint8_t *buf = g_attrib_get_buffer(attrib, &buflen)
372 GAttrib *attrib; member in struct:read_long_data
    [all...]
gattrib.c 143 GAttrib *g_attrib_ref(GAttrib *attrib)
145 if (!attrib)
148 g_atomic_int_inc(&attrib->refs);
150 return attrib;
170 static void attrib_destroy(GAttrib *attrib)
175 while ((c = g_queue_pop_head(attrib->queue)))
178 g_queue_free(attrib->queue);
179 attrib->queue = NULL;
181 for (l = attrib->events; l; l = l->next)
184 g_slist_free(attrib->events)
251 struct _GAttrib *attrib = data; local
261 struct _GAttrib *attrib = data; local
301 struct _GAttrib *attrib = data; local
316 struct _GAttrib *attrib = data; local
392 struct _GAttrib *attrib; local
    [all...]
gatttool.c 69 GAttrib *attrib; member in struct:characteristic_data
76 GAttrib *attrib = user_data; local
105 g_attrib_send(attrib, 0, opdu[0], opdu, olen, NULL, NULL, NULL);
110 GAttrib *attrib = user_data; local
112 g_attrib_register(attrib, ATT_OP_HANDLE_NOTIFY, events_handler,
113 attrib, NULL);
114 g_attrib_register(attrib, ATT_OP_HANDLE_IND, events_handler,
115 attrib, NULL);
122 GAttrib *attrib; local
130 attrib = g_attrib_new(io)
181 GAttrib *attrib = user_data; local
217 GAttrib *attrib = user_data; local
293 GAttrib *attrib = user_data; local
330 GAttrib *attrib = user_data; local
382 GAttrib *attrib = user_data; local
456 GAttrib *attrib = user_data; local
    [all...]
interactive.c 41 static GAttrib *attrib = NULL; variable
133 g_attrib_send(attrib, 0, opdu[0], opdu, olen, NULL, NULL, NULL);
144 attrib = g_attrib_new(iochannel);
145 g_attrib_register(attrib, ATT_OP_HANDLE_NOTIFY, events_handler,
146 attrib, NULL);
147 g_attrib_register(attrib, ATT_OP_HANDLE_IND, events_handler,
148 attrib, NULL);
357 g_attrib_unref(attrib);
358 attrib = NULL;
378 gatt_discover_primary(attrib, NULL, primary_all_cb, NULL)
    [all...]
  /external/tinyxml/
tinyxml.cpp 754 TiXmlAttribute* attrib = new TiXmlAttribute( name, _value ); local
755 if ( attrib )
757 attributeSet.Add( attrib );
776 const TiXmlAttribute* attrib; local
777 for ( attrib = attributeSet.First(); attrib; attrib = attrib->Next() )
780 attrib->Print( cfile, depth );
821 const TiXmlAttribute* attrib; local
    [all...]
tinyxmlparser.cpp 1100 TiXmlAttribute* attrib = new TiXmlAttribute(); local
1101 if ( !attrib )
1107 attrib->SetDocument( document );
1109 p = attrib->Parse( p, data, encoding );
1114 delete attrib;
1119 TiXmlAttribute* node = attributeSet.Find( attrib->Name() );
1122 node->SetValue( attrib->Value() );
1123 delete attrib;
1127 attributeSet.Add( attrib );
1539 TiXmlAttribute attrib; local
1545 TiXmlAttribute attrib; local
1551 TiXmlAttribute attrib; local
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Manifest.java 327 Attributes attrib = manifest.entries.get(key); local
328 Iterator<?> entries = attrib.keySet().iterator();
331 writeEntry(out, name, attrib.getValue(name), encoder, buffer);
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
egl.cpp 476 EGLint *attrib = NULL; local
478 attrib = new EGLint[nAttribs];
479 memcpy(attrib, attrib_list, nAttribs * sizeof(EGLint));
484 if (attrib[i] == EGL_CONTEXT_CLIENT_VERSION &&
485 attrib[i + 1] == 2) {
487 attrib[i + 1] = 1; // replace to version 1
491 EGLContext ctx = getDispatch()->eglCreateContext(dpy, config, share, attrib);
492 delete attrib;
  /external/bluetooth/bluez/src/
attrib-server.c 48 #include "attrib-server.h"
58 GAttrib *attrib; member in struct:gatt_channel
148 const struct attribute *attrib = a; local
151 return attrib->handle - handle;
170 channel->encrypted = g_attrib_is_encrypted(channel->attrib);
625 struct attribute *attrib; local
636 attrib = l->data;
638 if (bt_uuid_cmp(&attrib->uuid, &prim_uuid) != 0)
653 return attrib;
784 g_attrib_unref(channel->attrib);
    [all...]
  /external/openssl/crypto/pkcs12/
pkcs12.h 120 STACK_OF(X509_ATTRIBUTE) *attrib; member in struct:__anon9044
162 PKCS12_get_attr_gen(bag->attrib, attr_nid)
  /external/openssl/include/openssl/
pkcs12.h 120 STACK_OF(X509_ATTRIBUTE) *attrib; member in struct:__anon9087
162 PKCS12_get_attr_gen(bag->attrib, attr_nid)
  /external/qemu/distrib/sdl-1.2.12/src/video/macdsp/
SDL_dspvideo.c 467 DSpContextAttributes attrib;
482 SDL_memset (&attrib, 0, sizeof (DSpContextAttributes));
485 attrib.displayWidth = 640;
486 attrib.displayHeight = 480;
487 attrib.displayBestDepth = 8;
488 attrib.backBufferBestDepth = 8;
489 attrib.displayDepthMask = kDSpDepthMask_All;
490 attrib.backBufferDepthMask = kDSpDepthMask_All;
491 attrib.colorNeeds = kDSpColorNeeds_Require;
492 attrib.pageCount = 1
767 DSpContextAttributes attrib; local
    [all...]
  /external/quake/quake/src/QW/client/
gl_vidlinux_x11.c 643 int attrib[] = { local
702 visinfo=glXChooseVisual(dpy,scrnum,attrib);
gl_vidlinuxglx.c 589 int attrib[] = { local
651 visinfo = glXChooseVisual(dpy, scrnum, attrib);
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 257 %type <selector> attrib
1028 | attrib
1054 attrib: label
    [all...]

Completed in 1226 milliseconds

12 3