Searched defs:ids (Results 176 - 200 of 254) sorted by relevance

1234567891011

/external/icu/icu4c/source/test/intltest/
H A Dtzregts.cpp508 StringEnumeration* ids = TimeZone::createEnumeration(rawoffset); local
509 if (ids == NULL) {
513 count = ids->count(ec);
517 logln(hname + ' ' + (UnicodeString)count + (UnicodeString)" e.g. " + *ids->snext(ec));
522 delete ids;
523 //delete [] ids;
524 //uprv_free(ids);
H A Dtztest.cpp367 const UnicodeString** ids = TimeZone::createAvailableIDs(numIDs); local
368 if (ids == 0 || numIDs < 1) {
374 buf.append(*ids[i]);
379 uprv_free(ids);
383 ids = TimeZone::createAvailableIDs(-8*U_MILLIS_PER_HOUR, numIDs);
384 if (ids == 0 || numIDs < 1) {
390 buf.append(*ids[i]);
395 uprv_free(ids);
398 ids = TimeZone::createAvailableIDs("US", numIDs);
399 if (ids
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Dparse-filter.c1491 int *ids = NULL; local
1498 * Two steps, first get all ids with trivial filters.
1499 * then remove those ids.
1516 ids = realloc(ids, sizeof(*ids) * (count + 1));
1517 if (!ids)
1518 die("Can't allocate ids");
1519 ids[count++] = filter_type->event_id;
1526 pevent_filter_remove_event(filter, ids[
[all...]
/external/mesa3d/src/mesa/main/
H A Dbufferobj.c842 * \param ids Array of \c n buffer object IDs.
845 _mesa_DeleteBuffersARB(GLsizei n, const GLuint *ids) argument
860 struct gl_buffer_object *bufObj = _mesa_lookup_bufferobj(ctx, ids[i]);
865 ASSERT(bufObj->Name == ids[i] || bufObj == &DummyBufferObject);
928 _mesa_HashRemove(ctx->Shared->BufferObjects, ids[i]);
H A Derrors.c506 GLenum* types, GLenum* ids, GLenum* severities,
522 GLsizei written = _mesa_get_msg(ctx, sources, types, ids, severities,
542 if (ids)
543 ids++;
552 * 'size' is the size of 'array'. 'count' is the size of 'ids', an array
554 * listed in 'ids' will be overwritten with the value of 'enabled'.
561 GLsizei count, const GLuint *ids, GLboolean enabled)
574 if (ids[i] >= size) {
578 array[ids[i]] = enabled;
643 * 'count' is the length of the array 'ids'
505 _mesa_GetDebugMessageLogARB(GLuint count, GLsizei logSize, GLenum* sources, GLenum* types, GLenum* ids, GLenum* severities, GLsizei* lengths, GLcharARB* messageLog) argument
560 control_messages(GLboolean *array, GLuint size, GLsizei count, const GLuint *ids, GLboolean enabled) argument
651 control_app_messages(struct gl_context *ctx, GLenum esource, GLenum etype, GLenum eseverity, GLsizei count, const GLuint *ids, GLboolean enabled) argument
676 _mesa_DebugMessageControlARB(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled) argument
[all...]
/external/openssl/apps/
H A Docsp.c99 STACK_OF(OCSP_CERTID) *ids);
101 STACK_OF(OCSP_CERTID) *ids);
104 STACK_OF(OCSP_CERTID) *ids, long nsec,
161 STACK_OF(OCSP_CERTID) *ids = NULL;
178 ids = sk_OCSP_CERTID_new_null();
456 if(!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
469 if(!add_ocsp_serial(&req, *args, cert_id_md, issuer, ids))
905 if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
928 sk_OCSP_CERTID_free(ids);
944 STACK_OF(OCSP_CERTID) *ids)
943 add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md,X509 *issuer, STACK_OF(OCSP_CERTID) *ids) argument
964 add_ocsp_serial(OCSP_REQUEST **req, char *serial,const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) argument
997 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
H A Dttcmap.c325 FT_Byte* ids; local
347 ids = p - 2 + offset;
348 if ( ids < glyph_ids || ids + code_count*2 > table + length )
/external/svox/pico/lib/
H A Dpicoktab.c61 /* fixed ids */
68 picoktab_FixedIds ids; local
76 ids = (picoktab_FixedIds) this->subObj;
78 ids->phonStartId = PICOKTAB_TMPID_PHONSTART;
79 ids->phonTermId = PICOKTAB_TMPID_PHONTERM;
/external/chromium_org/chrome/browser/history/
H A Dhistory_service.cc740 void HistoryService::RemoveDownloads(const std::set<uint32>& ids) { argument
744 &HistoryBackend::RemoveDownloads, ids);
H A Dhistory_backend.cc1172 void HistoryBackend::RemoveDownloads(const std::set<uint32>& ids) { argument
1179 for (std::set<uint32>::const_iterator it = ids.begin();
1180 it != ids.end(); ++it) {
1199 DCHECK_GE(ids.size(), num_downloads_deleted);
1200 if (ids.size() < num_downloads_deleted)
1203 ids.size() - num_downloads_deleted);
/external/chromium_org/chrome/browser/themes/
H A Dbrowser_theme_pack.cc171 // Persistent theme ids for Windows.
1246 std::vector<int> ids; local
1249 ids.push_back(it->first);
1252 source_images_ = new int[ids.size() + 1];
1253 std::copy(ids.begin(), ids.end(), source_images_);
1254 source_images_[ids.size()] = -1;
/external/chromium_org/content/browser/loader/
H A Dresource_dispatcher_host_impl.cc890 std::set<GlobalRoutingID> ids; local
894 ids.insert(iter->first);
898 for (std::set<GlobalRoutingID>::const_iterator iter = ids.begin();
899 iter != ids.end(); ++iter) {
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtztest.cpp376 const UnicodeString** ids = TimeZone::createAvailableIDs(numIDs); local
377 if (ids == 0 || numIDs < 1) {
383 buf.append(*ids[i]);
388 uprv_free(ids);
392 ids = TimeZone::createAvailableIDs(-8*U_MILLIS_PER_HOUR, numIDs);
393 if (ids == 0 || numIDs < 1) {
399 buf.append(*ids[i]);
404 uprv_free(ids);
407 ids = TimeZone::createAvailableIDs("US", numIDs);
408 if (ids
[all...]
H A Dcalregts.cpp254 StringEnumeration* ids = TimeZone::createEnumeration(); local
255 if (ids == NULL) {
274 for (int32_t i=0; i<ids->count(status); ++i) {
275 TimeZone *zone = TimeZone::createTimeZone(*ids->snext(status));
293 // delete [] ids; // TODO: bad APIs
294 delete ids;
322 StringEnumeration* ids = TimeZone::createEnumeration(-8 * 60 * 60 * 1000); local
323 if (ids == NULL) {
328 count = ids->count(status);
330 SimpleTimeZone *pdt = new SimpleTimeZone(-8 * 60 * 60 * 1000, *ids
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasession.cc338 // Loops through all Id in |ids| and changes its id if it is
340 // in a session description to make sure no duplicate ids exists.
343 void FindAndSetIdUsed(std::vector<Id>* ids) { argument
344 for (typename std::vector<Id>::iterator it = ids->begin();
345 it != ids->end(); ++it) {
373 // default ids as little as possible.
410 // Helper class used for finding duplicate RTP Header extension ids among
1244 // XEP-0167, we retain the same payload ids from the offer in the answer.
1358 // Add them to |used_ids| so the local ids are not reused if a new media
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dtree.h537 void *ids; /* Hash table for ID attributes if any */ member in struct:_xmlDoc
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNoOpInterface.cpp439 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLGenIds(GrGLsizei n, GrGLuint* ids) { argument
442 ids[i] = ++gCurrID;
446 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLDeleteIds(GrGLsizei n, const GrGLuint* ids) { argument
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_usrreq.c2520 struct sctp_assoc_ids *ids; local
2523 SCTP_CHECK_AND_CAST(ids, optval, struct sctp_assoc_ids, *optsize);
2529 ids->gaids_assoc_id[at++] = sctp_get_associd(stcb);
2538 ids->gaids_number_of_ids = at;
3482 /* is there room for all of the hmac ids? */
/external/chromium_org/ui/gl/
H A Dgl_bindings_skia_in_process.cc154 GLvoid StubGLDeleteQueries(GLsizei n, const GLuint* ids) { argument
155 glDeleteQueries(n, ids);
264 GLvoid StubGLGenQueries(GLsizei n, GLuint* ids) { argument
265 glGenQueries(n, ids);
/external/libxml2/include/libxml/
H A Dtree.h574 void *ids; /* Hash table for ID attributes if any */ member in struct:_xmlDoc
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_GeneralDecoder.cpp2451 JBig2IntDecoderState ids; local
2452 ids.IADT = IADT;
2453 ids.IAFS = IAFS;
2454 ids.IADS = IADS;
2455 ids.IAIT = IAIT;
2456 ids.IARI = IARI;
2457 ids.IARDW = IARDW;
2458 ids.IARDH = IARDH;
2459 ids.IARDX = IARDX;
2460 ids
[all...]
/external/skia/src/gpu/gl/
H A DGrGLNoOpInterface.cpp439 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLGenIds(GrGLsizei n, GrGLuint* ids) { argument
442 ids[i] = ++gCurrID;
446 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLDeleteIds(GrGLsizei n, const GrGLuint* ids) { argument
/external/chromium_org/extensions/browser/
H A Dextension_prefs.cc191 // A list of installed ids and a signature.
403 // Collect all extensions ids with absolute paths in |absolute_keys|.
855 std::set<std::string> ids; local
860 return ids;
870 ids.insert(it.key());
874 return ids;
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc3106 const DictionaryIds& ids = g_dictionary_ids.Get(); local
3108 ids.v2_dictionary_id : ids.v3_dictionary_id;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h234 virtual void genBuffers(WGC3Dsizei count, WebGLId* ids) argument
237 ids[i] = 1;
239 virtual void genFramebuffers(WGC3Dsizei count, WebGLId* ids) argument
242 ids[i] = 1;
244 virtual void genRenderbuffers(WGC3Dsizei count, WebGLId* ids) argument
247 ids[i] = 1;
249 virtual void genTextures(WGC3Dsizei count, WebGLId* ids) argument
252 ids[i] = m_nextTextureId++;
255 virtual void deleteBuffers(WGC3Dsizei count, WebGLId* ids) { } argument
256 virtual void deleteFramebuffers(WGC3Dsizei count, WebGLId* ids) { } argument
257 deleteRenderbuffers(WGC3Dsizei count, WebGLId* ids) argument
258 deleteTextures(WGC3Dsizei count, WebGLId* ids) argument
[all...]

Completed in 537 milliseconds

1234567891011